1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
<html dir="ltr"><head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<META HTTP-EQUIV="assetid" CONTENT="HV01084525"><META NAME="lcid" CONTENT="1033"><title>Microsoft.Search.Registration.Request Schema</title><link rel="stylesheet" type="text/css" href="office10.css"><script type="text/javascript" language="Javascript" src="ExpCollapse.js"></script><script type="text/javascript" language="JavaScript" src="inline.js"></script></head><body><h1>Microsoft.Search.Registration.Request Schema</h1><p>This topic contains the annotated text of the Microsoft.Search.Registration.Request.xsd schema file. For additional information about this schema, see <a href="rsxsdRegistrationRequestDocs.htm" id="HV01087683" lcid=" ">Microsoft.Search.Registration.Request Schema Documentation</a>.</p><pre><code><?xml version="1.0" encoding="utf-8" ?>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Schema: Registration.Request.xsd -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="urn:Microsoft.Search.Registration.Request"
xmlns="urn:Microsoft.Search.Registration.Request"
elementFormDefault="qualified"
xmlns:t="urn:Microsoft.Search.Types">
<xsd:annotation>
<xsd:documentation>
This document is provided for informational purposes
only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED,
AS TO THE INFORMATION IN THIS DOCUMENT. Complying with
all applicable copyright laws is the responsibility of
the user. Microsoft may have patents, patent
applications, trademarks, copyrights, or other
intellectual property rights covering subject matter in
this document. Except as expressly provided in any
written license agreement from Microsoft, the furnishing
of this document does not give you any license to these
patents, trademarks, copyrights, or other intellectual
property. (c) 2003 Microsoft Corporation. All rights
reserved.
</xsd:documentation>
<xsd:documentation>
Defines a registration request to a service provider.
</xsd:documentation>
</xsd:annotation>
<xsd:import schemaLocation="Microsoft.Search.Types.xsd"
namespace="urn:Microsoft.Search.Types" />
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Root Element: RegistrationRequest -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - -->
<xsd:element name="RegistrationRequest">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="OriginatorId"
type="t:GUIDType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
Unique identifier for the client.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SupportedFormats"
type="SupportedFormatsType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
Formats that the client
understands for the response.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SystemInformation"
type="SystemInformationType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
Information about the system that is
requesting the registration information.
The service provider can use this to
determine if and how to register with
the system.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:any namespace="##other" minOccurs="0"
maxOccurs="unbounded" processContents="skip">
<xsd:annotation>
<xsd:documentation>
Any element in another namespace. Can be
used for extensibility in the future.
</xsd:documentation>
</xsd:annotation>
</xsd:any>
</xsd:sequence>
<xsd:attribute name="revision"
type="xsd:unsignedInt" use="optional">
<xsd:annotation>
<xsd:documentation>
Unsigned integer indicating the revision
of the schema used in the request.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="build"
type="t:String255" use="optional">
<xsd:annotation>
<xsd:documentation>
The build of the component used to
generate the request.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Type: SupportedFormatsType -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - -->
<xsd:complexType name="SupportedFormatsType">
<xsd:annotation>
<xsd:documentation>
Describes any number of formats that the client
understands for the response.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Format" type="FormatType"
maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>
Supported response elements (QNames).
All recognized namespaces should
be specified here.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:any namespace="##other" minOccurs="0"
maxOccurs="unbounded" processContents="skip">
<xsd:annotation>
<xsd:documentation>
Any element in another namespace. Can be
used for extensibility in the future.
</xsd:documentation>
</xsd:annotation>
</xsd:any>
</xsd:sequence>
</xsd:complexType>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Type: FormatType -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - -->
<xsd:complexType name="FormatType">
<xsd:annotation>
<xsd:documentation>
Defines a supported format. Normally this should be
treated as a fully qualified name
(namespace:localname).
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="revision"
type="xsd:unsignedInt" use="optional">
<xsd:annotation>
<xsd:documentation>
Unsigned integer indicating the
revision of the schema.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="build"
type="t:String255" use="optional">
<xsd:annotation>
<xsd:documentation>
The build of the component used.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Type: SystemInformationType -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - -->
<xsd:complexType name="SystemInformationType">
<xsd:annotation>
<xsd:documentation>
Describes information about the system that is
requesting the information. The service provider
can use this to determine how to respond.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="SkuLanguage"
type="xsd:language" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
The system's main language.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="LanguagePack" type="xsd:language"
minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>
One of the system's language flavors.
There could be multiple ones.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="InterfaceLanguage"
type="xsd:language" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
The current language of the user interface.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Location"
type="t:ISO3166Type" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
Country or region indicating the
current location of the system.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:any namespace="##other" minOccurs="0"
maxOccurs="unbounded" processContents="skip">
<xsd:annotation>
<xsd:documentation>
Any element in another namespace. Can be
used for extensibility in the future.
</xsd:documentation>
</xsd:annotation>
</xsd:any>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</code></pre><center><a href="XMLSchemaCopyright_HV01147162.htm">©2003-2004 Microsoft Corporation. All rights reserved.</a>
Permission to copy, display and distribute this document is available at: <a
href="http://r.office.microsoft.com/r/rlidAWSContentRedir?AssetID=XT010988631033&CTT=11&Origin=HV011232471033"
target="_new">http://msdn.microsoft.com/library/en-us/odcXMLRef/html/odcXMLRefLegalNotice.asp</a></center></body></html>
|