<전체 XML 스키마 참조
정의 및 사용
anyAttribute 요소는 스키마에 의해 지정되지 않은 특성을 갖는 XML 문서를 확장 할 수있는 저작을 가능하게한다.
요소 정보
- Parent elements: complexType을, 제한 (both simpleContent and complexContent) , 확장 (both simpleContent and complexContent) , attributeGroup
통사론
<anyAttribute
id=ID
namespace=namespace
processContents=lax|skip|strict
any attributes
>
(annotation?)
</anyAttribute>
(α-기호 요소가 anyAttribute 요소 내에 0 또는 1 시간이 발생할 수 있음을 선언합니다)
속성 | 기술 |
---|---|
id | 선택 과목. 요소의 고유 ID를 지정 |
namespace | 선택 과목. 를 포함하는 네임 스페이스를 지정 사용할 수있는 속성. 다음 중 하나로 설정할 수 있습니다 :
|
processContents | 선택 과목. XML 프로세서는이 모든 요소에 의해 지정된 요소에 대한 유효성 검사를 처리하는 방법을 지정합니다. 다음 중 하나로 설정할 수 있습니다 :
|
any attributes | 선택 과목. 비 스키마 네임 스페이스와 다른 속성을 지정합니다 |
예 1
다음 예제이라는 요소에 대한 선언을 보여줍니다 "person" . 사용하여 <anyAttribute> 요소를 저자는에 속성의 수를 추가 할 수 있습니다 "person" 요소 :
<xs:element name="person">
<xs:complexType>
<xs:sequence>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="lastname" type="xs:string"/>
</xs:sequence>
<xs:anyAttribute/>
</xs:complexType>
</xs:element>
<전체 XML 스키마 참조