XML 스키마 복합 유형 – 요소만
XSD Element-only
"요소 전용" 복합 유형 요소는 다른 요소만 포함할 수 있는 요소입니다.
복합 유형에는
XML 요소인 "person" 요소와
<person>
요소만 포함됩니다. <firstname>John</firstname>
<lastname>Smith</lastname>
</person>
요소만 포함됩니다. <firstname>John</firstname>
<lastname>Smith</lastname>
</person>
스키마에서 "person" 요소를 다음과 같이 정의할 수 있습니다.
<xs:element name="person">
<xs:복합 유형>
<xs:순서>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="성" type="xs:string"/>
</xs:순서>
</xs:complexType>
이 방법을 사용하면 여러 요소가 동일한 복합 유형을 참조할 수 있습니다.
<xs:복합 유형>
<xs:순서>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="성" type="xs:string"/>
</xs:순서>
</xs:complexType>
이 방법을 사용하면 여러 요소가 동일한 복합 유형을 참조할 수 있습니다.
<xs:element name="person" type="persontype"/>
<xs:complexType name="사람 유형">
<xs:순서>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="성" type="xs:string"/>
</xs:시퀀스>
</xs:복합 유형>
</xs:시퀀스>
</xs:복합 유형>