본문 바로가기

IT/xml

[XML] element 전역 설정

반응형
밑에 내용은 xsd 파일에 선언된 내용입니다.

파랑색 박스는 전역을 뜻 합니다.


녹색 박스는 참조를 뜻합니다.


<?xml version="1.0"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://itnhappy.tistory.com"
xmlns:target="http://itnhappy.tistory.com"
elementFormDefault="qualified">
Title에 대한 정의

<element name="Title" type="string"/>

identification에 대한 정의

<element name="identification">   <complexType>
<sequence>

<element ref="target:Title"/> 이것 또한 위에 전역으로 설정된것 참조

 
<element name="Region" type="string"/>
<element name="Year" type="string"/>
</sequence>
</complexType>
</element>
<element name="infor" >
<complexType>
<sequence>

<element ref="target:identification" maxOccurs="unbounded"/>

  </sequence>
</complexType>
</element> 
</schema>