반응형
밑에 내용은 xsd 파일에 선언된 내용입니다.
<?xml version="1.0"?>
파랑색 박스는 전역을 뜻 합니다.
녹색 박스는 참조를 뜻합니다.
<?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="Region" type="string"/>
<element name="identification">
<complexType>
<sequence>
<element ref="target:Title"/> 이것 또한 위에 전역으로 설정된것 참조
<element name="Year" type="string"/>
</sequence>
</complexType>
</element>
<element name="infor" >
<complexType>
<sequence>
<element ref="target:identification" maxOccurs="unbounded"/>
</complexType>
</element>
</schema>
'IT > xml' 카테고리의 다른 글
[XML] XPath함수인 format-number, count(), sum() 사용법 (0) | 2011.05.12 |
---|---|
[XML] CSS에서 background 적용 방법 (0) | 2011.04.26 |
[XML] Namespace을 왜 쓰는가? (0) | 2011.04.01 |
[XML] schema의 default 와 targetNamespace 는 무슨차이? (0) | 2011.03.29 |
[XML] XML의 특성 및 개발 관련 도구 (0) | 2011.03.18 |