최신 웹 개발 튜토리얼
 

XML스키마 주석 요소


<전체 XML 스키마 참조

정의 및 사용

주석 요소는 스키마 주석을 지정하는 최상위 요소입니다. 코멘트 인라인 설명서 역할을합니다.

요소 정보

  • Parent elements: 모든 요소

통사론

<annotation
id=ID
any attributes
>

(appinfo|documentation)*

</annotation>

(* 표시 기호 요소가 주석 요소 내에 0 번 이상 발생할 수 있음을 선언합니다)

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

예 1

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:annotation>
  <xs:appinfo>w3ii Note</xs:appinfo>
  <xs:documentation xml:lang="en">
  This Schema defines a w3ii note!
  </xs:documentation>
</xs:annotation>

.
.
.

</xs:schema>

<전체 XML 스키마 참조