File: owsGetCapabilities.xsd

package info (click to toggle)
tinyows 1.1.1-4
  • links: PTS, VCS
  • area: non-free
  • in suites: stretch
  • size: 4,392 kB
  • ctags: 1,260
  • sloc: ansic: 9,888; xml: 925; lex: 816; sql: 273; makefile: 90; sh: 89
file content (108 lines) | stat: -rw-r--r-- 6,906 bytes parent folder | download | duplicates (13)
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
<?xml version="1.0" encoding="UTF-8"?>
<schema targetNamespace="http://www.opengis.net/ows" 
xmlns:ows="http://www.opengis.net/ows" 
xmlns="http://www.w3.org/2001/XMLSchema" 
elementFormDefault="qualified" version="1.0.0 2010-01-30" xml:lang="en">
	<annotation>
		<appinfo>owsGetCapabilities.xsd 2010-01-30</appinfo>
		<documentation>This XML Schema Document defines the GetCapabilities operation request and response XML elements and types, which are common to all OWSs. This XML Schema shall be edited by each OWS, for example, to specify a specific value for the "service" attribute.
		
		OWS is an OGC Standard.
		Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved.
		To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
		</documentation>
	</annotation>
	<!-- ==============================================================
		includes and imports
	============================================================== -->
	<include schemaLocation="owsServiceIdentification.xsd"/>
	<include schemaLocation="owsServiceProvider.xsd"/>
	<include schemaLocation="owsOperationsMetadata.xsd"/>
	<!-- ==============================================================
		elements and types
	============================================================== -->
	<complexType name="CapabilitiesBaseType">
		<annotation>
			<documentation>XML encoded GetCapabilities operation response. This document provides clients with service metadata about a specific service instance, usually including metadata about the tightly-coupled data served. If the server does not implement the updateSequence parameter, the server shall always return the complete Capabilities document, without the updateSequence parameter. When the server implements the updateSequence parameter and the GetCapabilities operation request included the updateSequence parameter with the current value, the server shall return this element with only the "version" and "updateSequence" attributes. Otherwise, all optional elements shall be included or not depending on the actual value of the Contents parameter in the GetCapabilities operation request. This base type shall be extended by each specific OWS to include the additional contents needed. </documentation>
		</annotation>
		<sequence>
			<element ref="ows:ServiceIdentification" minOccurs="0"/>
			<element ref="ows:ServiceProvider" minOccurs="0"/>
			<element ref="ows:OperationsMetadata" minOccurs="0"/>
		</sequence>
		<attribute name="version" type="ows:VersionType" use="required"/>
		<attribute name="updateSequence" type="ows:UpdateSequenceType" use="optional"/>
	</complexType>
	<!-- =========================================================== -->
	<element name="GetCapabilities" type="ows:GetCapabilitiesType"/>
	<!-- =========================================================== -->
	<complexType name="GetCapabilitiesType">
		<annotation>
			<documentation>XML encoded GetCapabilities operation request. This operation allows clients to retrieve service metadata about a specific service instance. In this XML encoding, no "request" parameter is included, since the element name specifies the specific operation. This base type shall be extended by each specific OWS to include the additional required "service" attribute, with the correct value for that OWS. </documentation>
		</annotation>
		<sequence>
			<element name="AcceptVersions" type="ows:AcceptVersionsType" minOccurs="0">
				<annotation>
					<documentation>When omitted, server shall return latest supported version. </documentation>
				</annotation>
			</element>
			<element name="Sections" type="ows:SectionsType" minOccurs="0">
				<annotation>
					<documentation>When omitted or not supported by server, server shall return complete service metadata (Capabilities) document. </documentation>
				</annotation>
			</element>
			<element name="AcceptFormats" type="ows:AcceptFormatsType" minOccurs="0">
				<annotation>
					<documentation>When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". </documentation>
				</annotation>
			</element>
		</sequence>
		<attribute name="updateSequence" type="ows:UpdateSequenceType" use="optional">
			<annotation>
				<documentation>When omitted or not supported by server, server shall return latest complete service metadata document. </documentation>
			</annotation>
		</attribute>
	</complexType>
	<!-- =========================================================== -->
	<!-- =========================================================== -->
	<simpleType name="ServiceType">
		<annotation>
			<documentation>Service type identifier, where the string value is the OWS type abbreviation, such as "WMS" or "WFS". </documentation>
		</annotation>
		<restriction base="string"/>
	</simpleType>
	<!-- ========================================================= -->
	<complexType name="AcceptVersionsType">
		<annotation>
			<documentation>Prioritized sequence of one or more specification versions accepted by client, with preferred versions listed first. See Version negotiation subclause for more information. </documentation>
		</annotation>
		<sequence>
			<element name="Version" type="ows:VersionType" maxOccurs="unbounded"/>
		</sequence>
	</complexType>
	<!-- =========================================================== -->
	<complexType name="SectionsType">
		<annotation>
			<documentation>Unordered list of zero or more names of requested sections in complete service metadata document. Each Section value shall contain an allowed section name as specified by each OWS specification. See Sections parameter subclause for more information.  </documentation>
		</annotation>
		<sequence>
			<element name="Section" type="string" minOccurs="0" maxOccurs="unbounded"/>
		</sequence>
	</complexType>
	<!-- =========================================================== -->
	<simpleType name="UpdateSequenceType">
		<annotation>
			<documentation>Service metadata document version, having values that are "increased" whenever any change is made in service metadata document. Values are selected by each server, and are always opaque to clients. See updateSequence parameter use subclause for more information. </documentation>
		</annotation>
		<restriction base="string"/>
	</simpleType>
	<!-- =========================================================== -->
	<complexType name="AcceptFormatsType">
		<annotation>
			<documentation>Prioritized sequence of zero or more GetCapabilities operation response formats desired by client, with preferred formats listed first. Each response format shall be identified by its MIME type. See AcceptFormats parameter use subclause for more information. </documentation>
		</annotation>
		<sequence>
			<element name="OutputFormat" type="ows:MimeType" minOccurs="0" maxOccurs="unbounded"/>
		</sequence>
	</complexType>
</schema>