12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199 |
- <?xml version="1.0"?>
- <schema xmlns="http://www.w3.org/2001/XMLSchema"
- xmlns:ereg="urn:ietf:params:xml:ns:ereg1"
- xmlns:iris="urn:ietf:params:xml:ns:iris1"
- targetNamespace="urn:ietf:params:xml:ns:ereg1"
- elementFormDefault="qualified" >
- <import namespace="urn:ietf:params:xml:ns:iris1" />
- <annotation>
- <documentation>
- ENUM registry schema
- derived from IRIS schema
- </documentation>
- </annotation>
- <!-- ========================================= -->
- <!-- -->
- <!-- Query Types -->
- <!-- -->
- <!-- ========================================= -->
- <!-- -->
- <!-- Find ENUMs by E.164 -->
- <!-- -->
- <complexType
- name="findEnumsByE164Type">
- <complexContent>
- <extension
- base="iris:queryType">
- <sequence>
- <element
- name="e164Prefix"
- type="token" />
- <element
- name="specificity"
- minOccurs="0" >
- <simpleType>
- <restriction
- base="string">
- <enumeration
- value="less"/>
- <enumeration
- value="more"/>
- </restriction>
- </simpleType>
- </element>
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="findEnumsByE164"
- type="ereg:findEnumsByE164Type"
- substitutionGroup="iris:query" />
- <!-- -->
- <!-- Find ENUMs By Contact -->
- <!-- -->
- <complexType
- name="findEnumsByContactType">
- <complexContent>
- <extension
- base="iris:queryType">
- <sequence>
- <choice>
- <group
- ref="ereg:contactSearchGroup" />
- <element
- name="contactHandle"
- type="ereg:exactMatchParameter" />
- </choice>
- <element
- name="role"
- minOccurs="0"
- maxOccurs="1" >
- <simpleType>
- <restriction
- base="string" >
- <enumeration
- value="registrant" />
- <enumeration
- value="billingContact" />
- <enumeration
- value="technicalContact" />
- <enumeration
- value="administrativeContact" />
- <enumeration
- value="legalContact" />
- <enumeration
- value="zoneContact" />
- <enumeration
- value="abuseContact" />
- <enumeration
- value="securityContact" />
- <enumeration
- value="otherContact" />
- </restriction>
- </simpleType>
- </element>
- <element
- name="language"
- type="language"
- minOccurs="0"
- maxOccurs="unbounded"/>
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="findEnumsByContact"
- type="ereg:findEnumsByContactType"
- substitutionGroup="iris:query" />
- <!-- -->
- <!-- Find Contacts -->
- <!-- -->
- <complexType
- name="findContactsType">
- <complexContent>
- <extension
- base="iris:queryType">
- <sequence>
- <group
- ref="ereg:contactSearchGroup" />
- <element
- name="language"
- type="language"
- minOccurs="0"
- maxOccurs="unbounded"/>
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="findContacts"
- type="ereg:findContactsType"
- substitutionGroup="iris:query" />
- <!-- -->
- <!-- Find ENUMs By Host -->
- <!-- -->
- <complexType
- name="findEnumsByHostType">
- <complexContent>
- <extension
- base="iris:queryType">
- <sequence>
- <choice>
- <element
- name="hostName"
- type="ereg:exactMatchParameter" />
- <element
- name="hostHandle"
- type="ereg:exactMatchParameter" />
- <element
- name="ipV4Address"
- type="ereg:exactMatchParameter" />
- <element
- name="ipV6Address"
- type="ereg:exactMatchParameter" />
- </choice>
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="findEnumsByHost"
- type="ereg:findEnumsByHostType"
- substitutionGroup="iris:query" />
- <!-- -->
- <!-- Contact Search Group -->
- <!-- -->
- <group
- name="contactSearchGroup">
- <choice>
- <element
- name="commonName"
- type="ereg:exactOrPartialMatchParameter" />
- <element
- name="organization"
- type="ereg:exactOrPartialMatchParameter" />
- <element
- name="eMail"
- type="ereg:domainResourceParameter" />
- <element
- name="sip"
- type="ereg:domainResourceParameter" />
- <element
- name="city"
- type="ereg:exactMatchParameter" />
- <element
- name="region"
- type="ereg:exactMatchParameter" />
- <element
- name="postalCode"
- type="ereg:exactMatchParameter" />
- </choice>
- </group>
- <complexType
- name="exactOrPartialMatchParameter">
- <choice>
- <group
- ref="ereg:partialMatchGroup" />
- <group
- ref="ereg:exactMatchGroup" />
- </choice>
- </complexType>
- <complexType
- name="exactMatchParameter">
- <group
- ref="ereg:exactMatchGroup" />
- </complexType>
- <complexType
- name="partialMatchParameter">
- <sequence>
- <group
- ref="ereg:partialMatchGroup" />
- </sequence>
- </complexType>
- <complexType
- name="domainResourceParameter" >
- <choice>
- <group
- ref="ereg:exactMatchGroup" />
- <element
- name="inDomain"
- type="token" />
- </choice>
- </complexType>
- <group
- name="partialMatchGroup">
- <choice>
- <sequence>
- <element
- name="beginsWith">
- <simpleType>
- <restriction
- base="token">
- <minLength
- value="1"/>
- </restriction>
- </simpleType>
- </element>
- <element
- minOccurs="0"
- name="endsWith"
- type="ereg:endsWithType" />
- </sequence>
- <element
- name="endsWith"
- type="ereg:endsWithType" />
- </choice>
- </group>
- <simpleType
- name="endsWithType">
- <restriction
- base="token">
- <minLength
- value="1" />
- </restriction>
- </simpleType>
- <group
- name="exactMatchGroup">
- <sequence>
- <element
- name="exactMatch"
- type="normalizedString" />
- </sequence>
- </group>
- <!-- ========================================= -->
- <!-- -->
- <!-- Result Types -->
- <!-- -->
- <!-- ========================================= -->
- <!-- -->
- <!-- ENUM -->
- <!-- -->
- <complexType
- name="enumType">
- <complexContent>
- <extension
- base="iris:resultType">
- <sequence>
- <element
- name="e164Number"
- type="token" />
- <element
- name="enumHandle"
- type="ereg:normalizedStringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="nameServer"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="registrant"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <group ref="ereg:contactGroup" />
- <element
- name="lastContactModificationDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="lastContactModificationBy"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="status"
- minOccurs="0"
- maxOccurs="1">
- <complexType>
- <choice
- minOccurs="1"
- maxOccurs="unbounded">
- <element
- name="reserved"
- type="ereg:enumStatusType" />
- <element
- name="create"
- type="ereg:enumStatusType" />
- <element
- name="active"
- type="ereg:enumStatusType" />
- <element
- name="inactive"
- type="ereg:enumStatusType" />
- <element
- name="dispute"
- type="ereg:enumStatusType" />
- <element
- name="delete"
- type="ereg:enumStatusType" />
- <element
- name="transfer"
- type="ereg:enumStatusType" />
- <element
- name="renew"
- type="ereg:enumStatusType" />
- <element
- name="update"
- type="ereg:enumStatusType" />
- <element
- name="addPeriod"
- type="ereg:enumStatusType" />
- <element
- name="renewPeriod"
- type="ereg:enumStatusType" />
- <element
- name="autoRenewPeriod"
- type="ereg:enumStatusType" />
- <element
- name="transferPeriod"
- type="ereg:enumStatusType" />
- <element
- name="redemptionPeriod"
- type="ereg:enumStatusType" />
- <element
- name="restore"
- type="ereg:enumStatusType" />
- <element
- name="other"
- type="ereg:enumStatusType" />
- </choice>
- </complexType>
- </element>
- <element
- name="registrationReference"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="registry"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="registrar"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="validationEntity"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="signalCSP"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="dataCSP"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="lineCSP"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded"/>
- <element
- name="voiceCSP"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="otherCSP"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="validationEvent"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded"/>
- <element
- name="initialDelegationDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="lastRenewalDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="expirationDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="lastDelegationModificationDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="lastDelegationModificationBy"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="lastVerificationDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- ref="iris:seeAlso"
- minOccurs="0"
- maxOccurs="unbounded" />
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="enum"
- type="ereg:enumType"
- substitutionGroup="iris:result" />
- <!-- -->
- <!-- Host -->
- <!-- -->
- <complexType
- name="hostType">
- <complexContent>
- <extension
- base="iris:resultType">
- <sequence>
- <element
- name="hostHandle"
- type="ereg:normalizedStringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="hostName"
- type="normalizedString" />
- <element
- name="ipV4Address"
- type="token"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="ipV6Address"
- type="token"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="hostContact"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="createdDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="lastModificationDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="lastVerificationDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- ref="iris:seeAlso"
- minOccurs="0"
- maxOccurs="unbounded" />
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="host"
- type="ereg:hostType"
- substitutionGroup="iris:result" />
- <!-- -->
- <!-- Contact -->
- <!-- -->
- <complexType
- name="contactType">
- <complexContent>
- <extension
- base="iris:resultType">
- <sequence>
- <element
- name="contactHandle"
- type="ereg:normalizedStringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="commonName"
- type="ereg:normalizedStringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1"/>
- <element
- name="language"
- type="language"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="type"
- minOccurs="0"
- maxOccurs="1">
- <complexType>
- <choice>
- <element
- name="person"
- type="ereg:contactTypeType" />
- <element
- name="organization"
- type="ereg:contactTypeType" />
- <element
- name="role"
- type="ereg:contactTypeType" />
- <element
- name="other"
- type="ereg:contactTypeType" />
- </choice>
- </complexType>
- </element>
- <element
- name="organization"
- type="ereg:normalizedStringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="legalId"
- type="ereg:tokenPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="eMail"
- type="ereg:stringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="sip"
- type="ereg:stringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="postalAddress"
- minOccurs="0"
- maxOccurs="unbounded" >
- <complexType>
- <sequence>
- <element
- name="address"
- type="ereg:stringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="city"
- type="ereg:stringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="region"
- type="ereg:stringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="postalCode"
- type="ereg:normalizedStringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="country"
- type="ereg:tokenPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- </sequence>
- </complexType>
- </element>
- <element
- name="phone"
- type="ereg:normalizedStringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="fax"
- type="ereg:normalizedStringPrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="createdDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="lastModificationDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="lastVerificationDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="translatedContact"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- ref="iris:seeAlso"
- minOccurs="0"
- maxOccurs="unbounded" />
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="contact"
- type="ereg:contactType"
- substitutionGroup="iris:result" />
- <!-- -->
- <!-- Registration Authority -->
- <!-- -->
- <complexType
- name="registrationAuthorityType">
- <complexContent>
- <extension
- base="iris:resultType">
- <sequence>
- <element
- name="serviceInstance"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="organizationName"
- type="string"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="legalId"
- type="token"
- minOccurs="0"
- maxOccurs="1"/>
- <choice
- minOccurs="0"
- maxOccurs="3">
- <element
- name="registry">
- <complexType/>
- </element>
- <element
- name="registrar">
- <complexType/>
- </element>
- <element
- name="other">
- <complexType/>
- </element>
- </choice>
- <group ref="ereg:contactGroup" />
- <element
- ref="iris:seeAlso"
- minOccurs="0"
- maxOccurs="unbounded" />
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="registrationAuthority"
- type="ereg:registrationAuthorityType"
- substitutionGroup="iris:result" />
- <!-- -->
- <!-- Validation Entity -->
- <!-- -->
- <complexType
- name="validationEntityType">
- <complexContent>
- <extension
- base="iris:resultType">
- <sequence>
- <element
- name="serviceInstance"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="organizationName"
- type="string"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="legalId"
- type="token"
- minOccurs="0"
- maxOccurs="1"/>
- <group ref="ereg:contactGroup" />
- <element
- ref="iris:seeAlso"
- minOccurs="0"
- maxOccurs="unbounded" />
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="validationEntity"
- type="ereg:validationEntityType"
- substitutionGroup="iris:result" />
- <!-- -->
- <!-- Communication Service Provider -->
- <!-- -->
- <complexType
- name="communicationServiceProviderType">
- <complexContent>
- <extension
- base="iris:resultType">
- <sequence>
- <element
- name="serviceInstance"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="organizationName"
- type="string"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="legalId"
- type="token"
- minOccurs="0"
- maxOccurs="1"/>
- <element
- name="cspId"
- type="token"
- minOccurs="0"
- maxOccurs="1"/>
- <choice
- minOccurs="0"
- maxOccurs="5">
- <element
- minOccurs="0"
- maxOccurs="1"
- name="line">
- <complexType/>
- </element>
- <element
- minOccurs="0"
- maxOccurs="1"
- name="data">
- <complexType/>
- </element>
- <element
- minOccurs="0"
- maxOccurs="1"
- name="voice">
- <complexType/>
- </element>
- <element
- minOccurs="0"
- maxOccurs="1"
- name="signal">
- <complexType/>
- </element>
- <element
- minOccurs="0"
- maxOccurs="1"
- name="other">
- <complexType/>
- </element>
- </choice>
- <group ref="ereg:contactGroup" />
- <element
- ref="iris:seeAlso"
- minOccurs="0"
- maxOccurs="unbounded" />
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="communicationServiceProvider"
- type="ereg:communicationServiceProviderType"
- substitutionGroup="iris:result" />
- <!-- -->
- <!-- Validation Event -->
- <!-- -->
- <complexType
- name="validationEventType">
- <complexContent>
- <extension
- base="iris:resultType">
- <sequence>
- <element
- name="serial"
- type="token"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="methodId"
- type="token"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="validationEntity"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="registrar"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="executionDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="expirationDateTime"
- type="ereg:dateTimePrivacyType"
- nillable="true"
- minOccurs="0"
- maxOccurs="1" />
- <element
- ref="iris:seeAlso"
- minOccurs="0"
- maxOccurs="unbounded" />
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="validationEvent"
- type="ereg:validationEventType"
- substitutionGroup="iris:result" />
- <!-- -->
- <!-- Contact Group -->
- <!-- -->
- <group name="contactGroup">
- <sequence>
- <element
- name="billingContact"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="technicalContact"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="administrativeContact"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="legalContact"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="zoneContact"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="abuseContact"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="securityContact"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- <element
- name="otherContact"
- type="iris:entityType"
- minOccurs="0"
- maxOccurs="unbounded" />
- </sequence>
- </group>
- <!-- -->
- <!-- Privacy Label Types -->
- <!-- -->
- <attributeGroup
- name="privacyLabelAttributeGroup">
- <attribute
- name="private"
- type="boolean" />
- <attribute
- name="denied"
- type="boolean" />
- <attribute
- name="doNotRedistribute"
- type="boolean" />
- <attribute
- name="specialAccess"
- type="boolean" />
- </attributeGroup>
- <complexType
- name="dateTimePrivacyType">
- <simpleContent>
- <extension
- base="dateTime">
- <attributeGroup
- ref="ereg:privacyLabelAttributeGroup" />
- </extension>
- </simpleContent>
- </complexType>
- <complexType
- name="stringPrivacyType">
- <simpleContent>
- <extension
- base="string">
- <attributeGroup
- ref="ereg:privacyLabelAttributeGroup" />
- </extension>
- </simpleContent>
- </complexType>
- <complexType
- name="normalizedStringPrivacyType">
- <simpleContent>
- <extension
- base="normalizedString">
- <attributeGroup
- ref="ereg:privacyLabelAttributeGroup" />
- </extension>
- </simpleContent>
- </complexType>
- <complexType
- name="tokenPrivacyType">
- <simpleContent>
- <extension
- base="token">
- <attributeGroup
- ref="ereg:privacyLabelAttributeGroup" />
- </extension>
- </simpleContent>
- </complexType>
- <complexType
- name="enumStatusType">
- <sequence>
- <element
- name="appliedDate"
- type="dateTime"
- minOccurs="0"
- maxOccurs="1" />
- <element
- name="description"
- minOccurs="0"
- maxOccurs="unbounded">
- <complexType>
- <simpleContent>
- <extension
- base="string">
- <attribute
- name="language"
- type="language"
- use="required" />
- </extension>
- </simpleContent>
- </complexType>
- </element>
- <element
- name="subStatus"
- minOccurs="0"
- maxOccurs="1">
- <complexType>
- <simpleContent>
- <extension
- base="token">
- <attribute
- type="token"
- use="required"
- name="authority"/>
- </extension>
- </simpleContent>
- </complexType>
- </element>
- </sequence>
- <attributeGroup
- ref="ereg:privacyLabelAttributeGroup" />
- <attribute
- name="actor">
- <simpleType>
- <restriction
- base="string">
- <enumeration
- value="registry"/>
- <enumeration
- value="registrar"/>
- </restriction>
- </simpleType>
- </attribute>
- <attribute
- name="disposition">
- <simpleType>
- <restriction
- base="string">
- <enumeration
- value="prohibited"/>
- <enumeration
- value="pending"/>
- </restriction>
- </simpleType>
- </attribute>
- <attribute
- name="scope"
- type="token" />
- </complexType>
- <complexType
- name="contactTypeType">
- <sequence>
- <element
- name="description"
- minOccurs="0"
- maxOccurs="unbounded">
- <complexType>
- <simpleContent>
- <extension
- base="string">
- <attribute
- name="language"
- type="language"
- use="required" />
- </extension>
- </simpleContent>
- </complexType>
- </element>
- </sequence>
- <attributeGroup
- ref="ereg:privacyLabelAttributeGroup" />
- </complexType>
- <!-- ========================================= -->
- <!-- -->
- <!-- Error Codes -->
- <!-- -->
- <!-- ========================================= -->
- <!-- -->
- <!-- Search Too Wide -->
- <!-- -->
- <element
- name="searchTooWide"
- type="iris:codeType"
- substitutionGroup="iris:genericCode" />
- <!-- -->
- <!-- Language Not Supported -->
- <!-- -->
- <complexType
- name="languageNotSupportedType">
- <complexContent>
- <extension
- base="iris:codeType">
- <sequence>
- <element
- name="unsupportedLanguage"
- type="language"
- minOccurs="1"
- maxOccurs="unbounded" />
- </sequence>
- </extension>
- </complexContent>
- </complexType>
- <element
- name="languageNotSupported"
- type="ereg:languageNotSupportedType"
- substitutionGroup="iris:genericCode" />
- </schema>
|