최신 웹 개발 튜토리얼
 

XML스키마 simpleContent를 요소


<전체 XML 스키마 참조

정의 및 사용

simpleContent를 요소는 텍스트 전용 복합 형 또는 콘텐츠와 같은 간단한 유형에 확장 또는 제한을 포함하고 요소가없는.

요소 정보

  • Parent elements: complexType에

통사론

<simpleContent
id=ID
any attributes
>

(annotation?,(restriction|extension))

</simpleContent>

(α-기호 요소가 simpleContent를 요소 내에 0 또는 1 시간이 발생할 수 있음을 선언합니다)

속성 기술
id 선택 과목. 요소의 고유 ID를 지정
any attributes 선택 과목. 비 스키마 네임 스페이스와 다른 속성을 지정합니다

예 1

다음은 XML 요소의 예입니다 (<shoesize>) 텍스트 만 포함

<shoesize country="france">35</shoesize>

다음의 예는 complexType을 선언한다 "shoesize" 정수 데이터 형식으로와 국가 속성으로 정의 된 내용과를 :

<xs:element name="shoesize">
  <xs:complexType>
    <xs:simpleContent>
      <xs:extension base="xs:integer">
        <xs:attribute name="country" type="xs:string" />
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
</xs:element>

<전체 XML 스키마 참조