annotation 요소 내에서 응용 프로그램이 사용할 정보를 지정합니다.
<appinfo
source = anyURI>
Content: ({any})*
</appinfo>
특성
- source
응용 프로그램 정보의 소스로 소스는 URI 참조여야 합니다. 선택적 항목입니다.
요소 정보
발생 횟수 |
제한 없음 |
부모 요소 |
|
내용 |
제대로 구성된 모든 XML 내용입니다. |
주의
appinfo 요소 내에서 제공되는 정보는 응용 프로그램에서 처리 명령에 사용합니다.
예제
다음 예제에서는 annotation, appinfo 및 documentation 요소를 사용합니다.
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="State">
<xs:annotation>
<xs:documentation>State Name</xs:documentation>
<xs:appinfo>Application Information</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:schema>
관련 자료
자세한 내용은 www.w3.org/TR/2001/REC-xmlschema-1-20010502/\#element-all에 있는 Structures Recommendation을 참조하십시오.