google-nomulus/java/google/registry/xml/xsd/metadata.xsd
Justine Tunney 5012893c1d mv com/google/domain/registry google/registry
This change renames directories in preparation for the great package
rename. The repository is now in a broken state because the code
itself hasn't been updated. However this should ensure that git
correctly preserves history for each file.
2016-05-13 18:55:08 -04:00

26 lines
990 B
XML

<?xml version="1.0" encoding="utf-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:metadata="urn:google:params:xml:ns:metadata-1.0"
targetNamespace="urn:google:params:xml:ns:metadata-1.0" elementFormDefault="qualified">
<annotation>
<documentation>
Extensible Provisioning Protocol v1.0
Domain name extension schema for annotating EPP operations with metadata.
This is a proprietary, internal-only, non-public extension only for use
inside the Google registry.
</documentation>
</annotation>
<!-- Child elements found in EPP commands. -->
<element name="metadata" type="metadata:metadata" />
<!-- Child elements for all commands -->
<complexType name="metadata">
<all>
<element name="reason" type="string" minOccurs="0" />
<element name="requestedByRegistrar" type="boolean" minOccurs="1" />
<element name="anchorTenant" type="boolean" minOccurs="0" default="false" />
</all>
</complexType>
</schema>