, 예컨대 :차이점/유사점 요소 구속되지 않은 요소의 차이는 무엇
<?xml version="1.0" encoding="utf-8"?>
<xs:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/" xmlns:tns="http://tempuri.org/import" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="a"></xs:element>
</xs:schema>
입력 xs:anyType
와 요소, 예컨대 :
<?xml version="1.0" encoding="utf-8"?>
<xs:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/" xmlns:tns="http://tempuri.org/import" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="b" type="xs:anyType"></xs:element>
</xs:schema>
?
두 가지 모두 콘텐츠를 허용하며 제약 조건을 적용하지 않습니다. 어떤 차이가 있습니까? 관련 사양을 살펴 봤지만 그 차이점에 대한 혼란은 분명하지 않습니다.