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
|
<?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>owsDataIdentification.xsd 2010-01-30</appinfo>
<documentation>This XML Schema Document encodes the parts of the MD_DataIdentification class of ISO 19115 (OGC Abstract Specification Topic 11) which are expected to be used for most datasets. This Schema also encodes the parts of this class that are expected to be useful for other metadata. Both are expected to be used within the Contents section of OWS service metadata (Capabilities) documents.
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="owsCommon.xsd"/>
<include schemaLocation="ows19115subset.xsd"/>
<!-- ==============================================================
elements and types
============================================================== -->
<complexType name="DescriptionType">
<annotation>
<documentation>Human-readable descriptive information for the object it is included within.
This type shall be extended if needed for specific OWS use to include additional metadata for each type of information. This type shall not be restricted for a specific OWS to change the multiplicity (or optionality) of some elements. </documentation>
</annotation>
<sequence>
<element ref="ows:Title" minOccurs="0"/>
<element ref="ows:Abstract" minOccurs="0"/>
<element ref="ows:Keywords" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>
<!-- ========================================================= -->
<complexType name="IdentificationType">
<annotation>
<documentation>General metadata identifying and describing a set of data. This type shall be extended if needed for each specific OWS to include additional metadata for each type of dataset. If needed, this type should first be restricted for each specific OWS to change the multiplicity (or optionality) of some elements. </documentation>
</annotation>
<complexContent>
<extension base="ows:DescriptionType">
<sequence>
<element ref="ows:Identifier" minOccurs="0">
<annotation>
<documentation>Optional unique identifier or name of this dataset. </documentation>
</annotation>
</element>
<element ref="ows:BoundingBox" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>Unordered list of zero or more bounding boxes whose union describes the extent of this dataset. </documentation>
</annotation>
</element>
<element ref="ows:OutputFormat" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>Unordered list of zero or more references to data formats supported for server outputs. </documentation>
</annotation>
</element>
<element ref="ows:AvailableCRS" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>Unordered list of zero or more available coordinate reference systems. </documentation>
</annotation>
</element>
<element ref="ows:Metadata" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>Optional unordered list of additional metadata about this data(set). A list of optional metadata elements for this data identification could be specified in the Implementation Specification for this service. </documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
<!-- ===========================================================-->
<element name="Identifier" type="ows:CodeType">
<annotation>
<documentation>Unique identifier or name of this dataset. </documentation>
</annotation>
</element>
<!-- ===========================================================-->
<element name="OutputFormat" type="ows:MimeType">
<annotation>
<documentation>Reference to a format in which this data can be encoded and transferred. More specific parameter names should be used by specific OWS specifications wherever applicable. More than one such parameter can be included for different purposes. </documentation>
</annotation>
</element>
<!-- ===========================================================-->
<element name="AvailableCRS" type="anyURI"/>
<element name="SupportedCRS" type="anyURI" substitutionGroup="ows:AvailableCRS">
<annotation>
<documentation>Coordinate reference system in which data from this data(set) or resource is available or supported. More specific parameter names should be used by specific OWS specifications wherever applicable. More than one such parameter can be included for different purposes. </documentation>
</annotation>
</element>
<!-- ==========================================================
The following elements could be added to the IdentificationType when useful for a
specific OWS. In addition the PointOfContact element in ows19115subset.xsd could
be added.
============================================================= -->
<element name="AccessConstraints" type="string">
<annotation>
<documentation>Access constraint applied to assure the protection of privacy or intellectual property, or any other restrictions on retrieving or using data from or otherwise using this server. The reserved value NONE (case insensitive) shall be used to mean no access constraints are imposed. </documentation>
</annotation>
</element>
<!-- ========================================================== -->
<element name="Fees" type="string">
<annotation>
<documentation>Fees and terms for retrieving data from or otherwise using this server, including the monetary units as specified in ISO 4217. The reserved value NONE (case insensitive) shall be used to mean no fees or terms. </documentation>
</annotation>
</element>
<!-- ========================================================== -->
<element name="Language" type="language">
<annotation>
<documentation>Identifier of a language used by the data(set) contents. This language identifier shall be as specified in IETF RFC 1766. When this element is omitted, the language used is not identified. </documentation>
</annotation>
</element>
</schema>
|