geonode-pycsw 3.0.0b2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- geonode_pycsw-3.0.0b2.dist-info/METADATA +73 -0
- geonode_pycsw-3.0.0b2.dist-info/RECORD +382 -0
- geonode_pycsw-3.0.0b2.dist-info/WHEEL +5 -0
- geonode_pycsw-3.0.0b2.dist-info/entry_points.txt +2 -0
- geonode_pycsw-3.0.0b2.dist-info/licenses/LICENSE.txt +26 -0
- geonode_pycsw-3.0.0b2.dist-info/top_level.txt +1 -0
- pycsw/__init__.py +33 -0
- pycsw/core/__init__.py +29 -0
- pycsw/core/admin.py +703 -0
- pycsw/core/config.py +621 -0
- pycsw/core/etree.py +43 -0
- pycsw/core/formats/__init__.py +29 -0
- pycsw/core/formats/fmt_json.py +69 -0
- pycsw/core/log.py +71 -0
- pycsw/core/metadata.py +1996 -0
- pycsw/core/pygeofilter_evaluate.py +83 -0
- pycsw/core/repository.py +941 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/_wrapper.xsd +14 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswAll.xsd +33 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswCommon.xsd +71 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswGetCapabilities.xsd +80 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswGetDomain.xsd +146 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswGetRecordById.xsd +58 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswGetRecords.xsd +391 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswHarvest.xsd +95 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswTransaction.xsd +187 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswUnHarvest.xsd +77 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/rec-dcmes.xsd +245 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/rec-dcterms.xsd +101 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/record.xsd +170 -0
- pycsw/core/schemas/ogc/csw/2.0.2/CSW-discovery.xsd +494 -0
- pycsw/core/schemas/ogc/csw/2.0.2/CSW-publication.xsd +242 -0
- pycsw/core/schemas/ogc/csw/2.0.2/rec-dcmes.xsd +199 -0
- pycsw/core/schemas/ogc/csw/2.0.2/rec-dcterms.xsd +94 -0
- pycsw/core/schemas/ogc/csw/2.0.2/record.xsd +138 -0
- pycsw/core/schemas/ogc/filter/1.1.0/expr.xsd +67 -0
- pycsw/core/schemas/ogc/filter/1.1.0/filter.xsd +265 -0
- pycsw/core/schemas/ogc/filter/1.1.0/filterCapabilities.xsd +171 -0
- pycsw/core/schemas/ogc/filter/1.1.0/sort.xsd +46 -0
- pycsw/core/schemas/ogc/filter/2.0/_wrapper.xsd +5 -0
- pycsw/core/schemas/ogc/filter/2.0/expr.xsd +44 -0
- pycsw/core/schemas/ogc/filter/2.0/filter.xsd +396 -0
- pycsw/core/schemas/ogc/filter/2.0/filterAll.xsd +23 -0
- pycsw/core/schemas/ogc/filter/2.0/filterCapabilities.xsd +286 -0
- pycsw/core/schemas/ogc/filter/2.0/query.xsd +70 -0
- pycsw/core/schemas/ogc/filter/2.0/sort.xsd +49 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/basicTypes.xsd +278 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/coordinateOperations.xsd +789 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/coordinateReferenceSystems.xsd +429 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/coordinateSystems.xsd +408 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/coverage.xsd +451 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/dataQuality.xsd +129 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/datums.xsd +484 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/defaultStyle.xsd +454 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/dictionary.xsd +137 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/direction.xsd +72 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/dynamicFeature.xsd +115 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/feature.xsd +199 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/geometryAggregates.xsd +430 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/geometryBasic0d1d.xsd +602 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/geometryBasic2d.xsd +213 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/geometryComplexes.xsd +141 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/geometryPrimitives.xsd +1609 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/gml.xsd +22 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/gmlBase.xsd +294 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/grids.xsd +76 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/measures.xsd +200 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/observation.xsd +96 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/referenceSystems.xsd +211 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/temporal.xsd +332 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/temporalReferenceSystems.xsd +251 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/temporalTopology.xsd +186 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/topology.xsd +459 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/units.xsd +170 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/valueObjects.xsd +361 -0
- pycsw/core/schemas/ogc/gml/3.1.1/smil/smil20-language.xsd +117 -0
- pycsw/core/schemas/ogc/gml/3.1.1/smil/smil20.xsd +234 -0
- pycsw/core/schemas/ogc/gml/3.2.1/basicTypes.xsd +268 -0
- pycsw/core/schemas/ogc/gml/3.2.1/coordinateOperations.xsd +525 -0
- pycsw/core/schemas/ogc/gml/3.2.1/coordinateReferenceSystems.xsd +373 -0
- pycsw/core/schemas/ogc/gml/3.2.1/coordinateSystems.xsd +297 -0
- pycsw/core/schemas/ogc/gml/3.2.1/coverage.xsd +292 -0
- pycsw/core/schemas/ogc/gml/3.2.1/datums.xsd +287 -0
- pycsw/core/schemas/ogc/gml/3.2.1/defaultStyle.xsd +453 -0
- pycsw/core/schemas/ogc/gml/3.2.1/deprecatedTypes.xsd +1133 -0
- pycsw/core/schemas/ogc/gml/3.2.1/dictionary.xsd +90 -0
- pycsw/core/schemas/ogc/gml/3.2.1/direction.xsd +84 -0
- pycsw/core/schemas/ogc/gml/3.2.1/dynamicFeature.xsd +109 -0
- pycsw/core/schemas/ogc/gml/3.2.1/feature.xsd +94 -0
- pycsw/core/schemas/ogc/gml/3.2.1/geometryAggregates.xsd +197 -0
- pycsw/core/schemas/ogc/gml/3.2.1/geometryBasic0d1d.xsd +277 -0
- pycsw/core/schemas/ogc/gml/3.2.1/geometryBasic2d.xsd +124 -0
- pycsw/core/schemas/ogc/gml/3.2.1/geometryComplexes.xsd +95 -0
- pycsw/core/schemas/ogc/gml/3.2.1/geometryPrimitives.xsd +846 -0
- pycsw/core/schemas/ogc/gml/3.2.1/gml.xsd +20 -0
- pycsw/core/schemas/ogc/gml/3.2.1/gmlBase.xsd +185 -0
- pycsw/core/schemas/ogc/gml/3.2.1/grids.xsd +64 -0
- pycsw/core/schemas/ogc/gml/3.2.1/measures.xsd +68 -0
- pycsw/core/schemas/ogc/gml/3.2.1/observation.xsd +95 -0
- pycsw/core/schemas/ogc/gml/3.2.1/referenceSystems.xsd +70 -0
- pycsw/core/schemas/ogc/gml/3.2.1/temporal.xsd +269 -0
- pycsw/core/schemas/ogc/gml/3.2.1/temporalReferenceSystems.xsd +189 -0
- pycsw/core/schemas/ogc/gml/3.2.1/temporalTopology.xsd +119 -0
- pycsw/core/schemas/ogc/gml/3.2.1/topology.xsd +386 -0
- pycsw/core/schemas/ogc/gml/3.2.1/units.xsd +162 -0
- pycsw/core/schemas/ogc/gml/3.2.1/valueObjects.xsd +205 -0
- pycsw/core/schemas/ogc/ogcapi/records/part1/1.0/ogcapi-records-1.yaml +932 -0
- pycsw/core/schemas/ogc/ows/1.0.0/ows19115subset.xsd +222 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsAll.xsd +20 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsCommon.xsd +155 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsDataIdentification.xsd +112 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsExceptionReport.xsd +67 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsGetCapabilities.xsd +108 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsOperationsMetadata.xsd +161 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsServiceIdentification.xsd +55 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsServiceProvider.xsd +46 -0
- pycsw/core/schemas/ogc/ows/1.1.0/ows19115subset.xsd +236 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsAll.xsd +23 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsCommon.xsd +158 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsContents.xsd +87 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsDataIdentification.xsd +128 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsDomainType.xsd +280 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsExceptionReport.xsd +77 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsGetCapabilities.xsd +113 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsGetResourceByID.xsd +52 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsInputOutputData.xsd +60 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsManifest.xsd +125 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsOperationsMetadata.xsd +141 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsServiceIdentification.xsd +61 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsServiceProvider.xsd +48 -0
- pycsw/core/schemas/ogc/ows/2.0/ows19115subset.xsd +364 -0
- pycsw/core/schemas/ogc/ows/2.0/owsAdditionalParameters.xsd +114 -0
- pycsw/core/schemas/ogc/ows/2.0/owsAll.xsd +29 -0
- pycsw/core/schemas/ogc/ows/2.0/owsCommon.xsd +275 -0
- pycsw/core/schemas/ogc/ows/2.0/owsContents.xsd +163 -0
- pycsw/core/schemas/ogc/ows/2.0/owsDataIdentification.xsd +202 -0
- pycsw/core/schemas/ogc/ows/2.0/owsDomainType.xsd +388 -0
- pycsw/core/schemas/ogc/ows/2.0/owsExceptionReport.xsd +126 -0
- pycsw/core/schemas/ogc/ows/2.0/owsGetCapabilities.xsd +220 -0
- pycsw/core/schemas/ogc/ows/2.0/owsGetResourceByID.xsd +83 -0
- pycsw/core/schemas/ogc/ows/2.0/owsInputOutputData.xsd +98 -0
- pycsw/core/schemas/ogc/ows/2.0/owsManifest.xsd +181 -0
- pycsw/core/schemas/ogc/ows/2.0/owsOperationsMetadata.xsd +234 -0
- pycsw/core/schemas/ogc/ows/2.0/owsServiceIdentification.xsd +98 -0
- pycsw/core/schemas/ogc/ows/2.0/owsServiceProvider.xsd +64 -0
- pycsw/core/schemas/w3c/1999/xlink.xsd +271 -0
- pycsw/core/schemas/w3c/2001/xml.xsd +287 -0
- pycsw/core/util.py +552 -0
- pycsw/oaipmh.py +311 -0
- pycsw/ogc/__init__.py +29 -0
- pycsw/ogc/api/__init__.py +28 -0
- pycsw/ogc/api/oapi.py +558 -0
- pycsw/ogc/api/records.py +1414 -0
- pycsw/ogc/api/templates/_base.html +76 -0
- pycsw/ogc/api/templates/collection.html +44 -0
- pycsw/ogc/api/templates/collections.html +45 -0
- pycsw/ogc/api/templates/conformance.html +21 -0
- pycsw/ogc/api/templates/exception.html +8 -0
- pycsw/ogc/api/templates/item.html +228 -0
- pycsw/ogc/api/templates/items.html +337 -0
- pycsw/ogc/api/templates/landing_page.html +27 -0
- pycsw/ogc/api/templates/openapi.html +58 -0
- pycsw/ogc/api/templates/queryables.html +50 -0
- pycsw/ogc/api/templates/stac_items.html +173 -0
- pycsw/ogc/api/templates/static/favicon.ico +0 -0
- pycsw/ogc/api/templates/static/logo-horizontal.png +0 -0
- pycsw/ogc/api/templates/static/logo-vertical-darkbg.png +0 -0
- pycsw/ogc/api/util.py +252 -0
- pycsw/ogc/csw/__init__.py +29 -0
- pycsw/ogc/csw/cql.py +133 -0
- pycsw/ogc/csw/csw2.py +2042 -0
- pycsw/ogc/csw/csw3.py +2193 -0
- pycsw/ogc/fes/__init__.py +29 -0
- pycsw/ogc/fes/fes1.py +433 -0
- pycsw/ogc/fes/fes2.py +451 -0
- pycsw/ogc/gml/__init__.py +29 -0
- pycsw/ogc/gml/gml3.py +240 -0
- pycsw/ogc/gml/gml32.py +243 -0
- pycsw/opensearch.py +857 -0
- pycsw/plugins/__init__.py +29 -0
- pycsw/plugins/outputschemas/__init__.py +31 -0
- pycsw/plugins/outputschemas/atom.py +143 -0
- pycsw/plugins/outputschemas/datacite.py +375 -0
- pycsw/plugins/outputschemas/dif.py +213 -0
- pycsw/plugins/outputschemas/fgdc.py +180 -0
- pycsw/plugins/outputschemas/gm03.py +240 -0
- pycsw/plugins/profiles/__init__.py +29 -0
- pycsw/plugins/profiles/apiso/__init__.py +29 -0
- pycsw/plugins/profiles/apiso/apiso.py +757 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/csw/2.0.2/profiles/apiso/1.0.0/apiso.xsd +13 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gco/basicTypes.xsd +429 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gco/gco.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gco/gcoBase.xsd +61 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/applicationSchema.xsd +42 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/citation.xsd +275 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/constraints.xsd +106 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/content.xsd +188 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/dataQuality.xsd +554 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/distribution.xsd +202 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/extent.xsd +205 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/freeText.xsd +122 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/gmd.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/identification.xsd +348 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/maintenance.xsd +86 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/metadataApplication.xsd +175 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/metadataEntity.xsd +70 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/metadataExtension.xsd +99 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/portrayalCatalogue.xsd +36 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/referenceSystem.xsd +100 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/spatialRepresentation.xsd +237 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/basicTypes.xsd +267 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/coordinateOperations.xsd +639 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/coordinateReferenceSystems.xsd +526 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/coordinateSystems.xsd +401 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/coverage.xsd +462 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/datums.xsd +342 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/dictionary.xsd +129 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/direction.xsd +80 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/dynamicFeature.xsd +142 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/feature.xsd +215 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/geometryAggregates.xsd +216 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/geometryBasic0d1d.xsd +304 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/geometryBasic2d.xsd +123 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/geometryComplexes.xsd +89 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/geometryPrimitives.xsd +892 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/gml.xsd +14 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/gmlBase.xsd +305 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/grids.xsd +58 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/measures.xsd +167 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/observation.xsd +90 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/referenceSystems.xsd +69 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/temporal.xsd +263 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/temporalReferenceSystems.xsd +183 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/temporalTopology.xsd +124 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/topology.xsd +372 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/units.xsd +156 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/valueObjects.xsd +212 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/catalogues.xsd +112 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/codelistItem.xsd +168 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/crsItem.xsd +1030 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/extendedTypes.xsd +75 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/gmx.xsd +2 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/gmxUsage.xsd +127 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/uomItem.xsd +162 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gsr/gsr.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gsr/spatialReferencing.xsd +24 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gss/geometry.xsd +35 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gss/gss.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gts/gts.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gts/temporalObjects.xsd +34 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/srv/serviceMetadata.xsd +197 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/srv/serviceModel.xsd +220 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/srv/srv.xsd +13 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gco/basicTypes.xsd +431 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gco/gco.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gco/gcoBase.xsd +63 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/applicationSchema.xsd +43 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/citation.xsd +276 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/constraints.xsd +107 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/content.xsd +190 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/dataQuality.xsd +556 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/distribution.xsd +203 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/extent.xsd +206 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/freeText.xsd +123 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/gmd.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/identification.xsd +349 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/maintenance.xsd +87 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/metadataApplication.xsd +176 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/metadataEntity.xsd +71 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/metadataExtension.xsd +100 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/portrayalCatalogue.xsd +37 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/referenceSystem.xsd +101 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/spatialRepresentation.xsd +238 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/catalogues.xsd +113 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/codelistItem.xsd +169 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/crsItem.xsd +1031 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/extendedTypes.xsd +76 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/gmx.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/gmxUsage.xsd +128 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/uomItem.xsd +163 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gsr/gsr.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gsr/spatialReferencing.xsd +25 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gss/geometry.xsd +36 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gss/gss.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gts/gts.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gts/temporalObjects.xsd +35 -0
- pycsw/plugins/profiles/ebrim/__init__.py +29 -0
- pycsw/plugins/profiles/ebrim/ebrim.py +174 -0
- pycsw/plugins/profiles/ebrim/schemas/ogc/csw/2.0.2/profiles/ebrim/1.0/csw-ebrim-iri.xsd +146 -0
- pycsw/plugins/profiles/ebrim/schemas/ogc/csw/2.0.2/profiles/ebrim/1.0/csw-ebrim.xsd +104 -0
- pycsw/plugins/profiles/iso19115p3/__init__.py +29 -0
- pycsw/plugins/profiles/iso19115p3/iso19115p3.py +854 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cat/1.0/cat.xsd +13 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cat/1.0/catalogues.xsd +53 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cat/1.0/codelistItem.xsd +54 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cat/1.0/crsItem.xsd +181 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cat/1.0/uomItem.xsd +38 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cit/1.0/cit.xsd +7 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cit/1.0/citation.xsd +514 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cit/2.0/cit.xsd +10 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cit/2.0/citation.xsd +523 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gco/1.0/baseTypes2014.xsd +530 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gco/1.0/gco.xsd +16 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gcx/1.0/extendedTypes.xsd +92 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gcx/1.0/extendedTypes_autoFromShapeChange.xsd +60 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gcx/1.0/gcx.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gex/1.0/extent.xsd +241 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gex/1.0/gex.xsd +9 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gmw/1.0/gmlWrapperTypes2014.xsd +159 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gmw/1.0/gmw.xsd +14 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/lan/1.0/lan.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/lan/1.0/language.xsd +140 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mac/1.0/acquisitionInformationImagery.xsd +622 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mac/1.0/mac.xsd +11 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mac/2.0/acquisitionInformationImagery.xsd +590 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mac/2.0/event.xsd +108 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mac/2.0/mac.xsd +10 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mas/1.0/applicationSchema.xsd +61 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mas/1.0/mas.xsd +9 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mcc/1.0/AbstractCommonClasses.xsd +358 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mcc/1.0/commonClasses.xsd +220 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mcc/1.0/mcc.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mco/1.0/constraints.xsd +188 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mco/1.0/mco.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/md1/1.0/md1.xsd +9 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/md1/1.0/metadataWExtendedType.xsd +4 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/md2/1.0/md2.xsd +15 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/md2/1.0/metadataWithExtensions.xsd +4 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mda/1.0/mda.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mda/1.0/metadataApplication.xsd +200 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdb/1.0/mdb.xsd +14 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdb/1.0/metadataBase.xsd +98 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdb/2.0/mdb.xsd +20 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdb/2.0/metadataBase.xsd +102 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mds/1.0/mds.xsd +22 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mds/1.0/metadataDataServices.xsd +4 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdt/1.0/mdt.xsd +13 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdt/1.0/metadataTransfer.xsd +111 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mex/1.0/metadataExtension.xsd +156 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mex/1.0/mex.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mmi/1.0/maintenance.xsd +76 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mmi/1.0/mmi.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mpc/1.0/mpc.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mpc/1.0/portrayalCatalogue.xsd +31 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/1.0/content.xsd +416 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/1.0/contentInformationImagery.xsd +185 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/1.0/mrc.xsd +11 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/2.0/content.xsd +419 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/2.0/contentInformationImagery.xsd +171 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/2.0/mrc.xsd +11 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrd/1.0/distribution.xsd +267 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrd/1.0/mrd.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mri/1.0/identification.xsd +517 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mri/1.0/mri.xsd +9 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/1.0/lineage.xsd +147 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/1.0/lineageImagery.xsd +236 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/1.0/mrl.xsd +9 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/2.0/lineage.xsd +147 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/2.0/lineageImagery.xsd +312 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/2.0/mrl.xsd +11 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrs/1.0/mrs.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrs/1.0/referenceSystem.xsd +47 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/1.0/msr.xsd +10 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/1.0/spatialRepresentation.xsd +375 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/1.0/spatialRepresentationImagery.xsd +119 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/2.0/msr.xsd +15 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/2.0/spatialRepresentation.xsd +381 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/2.0/spatialRepresentationImagery.xsd +120 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/srv/2.0/serviceInformation.xsd +272 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/srv/2.0/srv.xsd +6 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/srv/2.1/serviceInformation.xsd +278 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/srv/2.1/srv.xsd +6 -0
- pycsw/plugins/profiles/profile.py +141 -0
- pycsw/plugins/repository/__init__.py +29 -0
- pycsw/plugins/repository/odc/__init__.py +29 -0
- pycsw/plugins/repository/odc/odc.py +153 -0
- pycsw/server.py +938 -0
- pycsw/sru.py +217 -0
- pycsw/stac/__init__.py +29 -0
- pycsw/stac/api.py +571 -0
- pycsw/wsgi.py +233 -0
- pycsw/wsgi_flask.py +345 -0
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" targetNamespace="http://www.isotc211.org/2005/srv" elementFormDefault="qualified" version="0.1">
|
|
3
|
+
<!-- ================================= Annotation ================================ -->
|
|
4
|
+
<xs:annotation>
|
|
5
|
+
<xs:documentation>This file was generated from ISO TC/211 UML class diagrams == 10-13-2006 11:14:04 ====== </xs:documentation>
|
|
6
|
+
</xs:annotation>
|
|
7
|
+
<!-- ================================== Imports ================================== -->
|
|
8
|
+
<xs:import namespace="http://www.isotc211.org/2005/gmd" schemaLocation="../gmd/identification.xsd"/>
|
|
9
|
+
<xs:import namespace="http://www.isotc211.org/2005/gco" schemaLocation="../gco/gco.xsd"/>
|
|
10
|
+
<xs:include schemaLocation="../srv/serviceModel.xsd"/>
|
|
11
|
+
<!-- ########################################################################### -->
|
|
12
|
+
<!-- ########################################################################### -->
|
|
13
|
+
<!-- ================================== Classes ================================= -->
|
|
14
|
+
<xs:complexType name="SV_Parameter_Type">
|
|
15
|
+
<xs:complexContent>
|
|
16
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
17
|
+
<xs:sequence>
|
|
18
|
+
<xs:element name="name" type="gco:MemberName_Type"/>
|
|
19
|
+
<xs:element name="direction" type="srv:SV_ParameterDirection_PropertyType" minOccurs="0"/>
|
|
20
|
+
<xs:element name="description" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
21
|
+
<xs:element name="optionality" type="gco:CharacterString_PropertyType"/>
|
|
22
|
+
<xs:element name="repeatability" type="gco:Boolean_PropertyType"/>
|
|
23
|
+
<xs:element name="valueType" type="gco:TypeName_PropertyType"/>
|
|
24
|
+
</xs:sequence>
|
|
25
|
+
</xs:extension>
|
|
26
|
+
</xs:complexContent>
|
|
27
|
+
</xs:complexType>
|
|
28
|
+
<!-- ........................................................................ -->
|
|
29
|
+
<xs:element name="SV_Parameter" type="srv:SV_Parameter_Type"/>
|
|
30
|
+
<!-- ........................................................................ -->
|
|
31
|
+
<xs:complexType name="SV_Parameter_PropertyType">
|
|
32
|
+
<xs:sequence>
|
|
33
|
+
<xs:element ref="srv:SV_Parameter" minOccurs="0"/>
|
|
34
|
+
</xs:sequence>
|
|
35
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
36
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
37
|
+
</xs:complexType>
|
|
38
|
+
<!-- =========================================================================== -->
|
|
39
|
+
<xs:complexType name="SV_OperationMetadata_Type">
|
|
40
|
+
<xs:complexContent>
|
|
41
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
42
|
+
<xs:sequence>
|
|
43
|
+
<xs:element name="operationName" type="gco:CharacterString_PropertyType"/>
|
|
44
|
+
<xs:element name="DCP" type="srv:DCPList_PropertyType" maxOccurs="unbounded"/>
|
|
45
|
+
<xs:element name="operationDescription" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
46
|
+
<xs:element name="invocationName" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
47
|
+
<xs:element name="parameters" type="srv:SV_Parameter_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
48
|
+
<xs:element name="connectPoint" type="gmd:CI_OnlineResource_PropertyType" maxOccurs="unbounded"/>
|
|
49
|
+
<xs:element name="dependsOn" type="srv:SV_OperationMetadata_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
50
|
+
</xs:sequence>
|
|
51
|
+
</xs:extension>
|
|
52
|
+
</xs:complexContent>
|
|
53
|
+
</xs:complexType>
|
|
54
|
+
<!-- ........................................................................ -->
|
|
55
|
+
<xs:element name="SV_OperationMetadata" type="srv:SV_OperationMetadata_Type"/>
|
|
56
|
+
<!-- ........................................................................ -->
|
|
57
|
+
<xs:complexType name="SV_OperationMetadata_PropertyType">
|
|
58
|
+
<xs:sequence>
|
|
59
|
+
<xs:element ref="srv:SV_OperationMetadata" minOccurs="0"/>
|
|
60
|
+
</xs:sequence>
|
|
61
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
62
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
63
|
+
</xs:complexType>
|
|
64
|
+
<!-- =========================================================================== -->
|
|
65
|
+
<xs:complexType name="SV_ServiceIdentification_Type">
|
|
66
|
+
<xs:complexContent>
|
|
67
|
+
<xs:extension base="gmd:AbstractMD_Identification_Type">
|
|
68
|
+
<xs:sequence>
|
|
69
|
+
<xs:element name="serviceType" type="gco:GenericName_PropertyType"/>
|
|
70
|
+
<xs:element name="serviceTypeVersion" type="gco:CharacterString_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
71
|
+
<xs:element name="accessProperties" type="gmd:MD_StandardOrderProcess_PropertyType" minOccurs="0"/>
|
|
72
|
+
<xs:element name="restrictions" type="gmd:MD_Constraints_PropertyType" minOccurs="0"/>
|
|
73
|
+
<xs:element name="keywords" type="gmd:MD_Keywords_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
74
|
+
<xs:element name="extent" type="gmd:EX_Extent_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
75
|
+
<xs:element name="coupledResource" type="srv:SV_CoupledResource_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
76
|
+
<xs:element name="couplingType" type="srv:SV_CouplingType_PropertyType"/>
|
|
77
|
+
<xs:element name="containsOperations" type="srv:SV_OperationMetadata_PropertyType" maxOccurs="unbounded"/>
|
|
78
|
+
<xs:element name="operatesOn" type="gmd:MD_DataIdentification_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
79
|
+
</xs:sequence>
|
|
80
|
+
</xs:extension>
|
|
81
|
+
</xs:complexContent>
|
|
82
|
+
</xs:complexType>
|
|
83
|
+
<!-- ........................................................................ -->
|
|
84
|
+
<xs:element name="SV_ServiceIdentification" type="srv:SV_ServiceIdentification_Type" substitutionGroup="gmd:AbstractMD_Identification"/>
|
|
85
|
+
<!-- ........................................................................ -->
|
|
86
|
+
<xs:complexType name="SV_ServiceIdentification_PropertyType">
|
|
87
|
+
<xs:sequence>
|
|
88
|
+
<xs:element ref="srv:SV_ServiceIdentification" minOccurs="0"/>
|
|
89
|
+
</xs:sequence>
|
|
90
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
91
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
92
|
+
</xs:complexType>
|
|
93
|
+
<!-- =========================================================================== -->
|
|
94
|
+
<xs:complexType name="SV_OperationChain_Type">
|
|
95
|
+
<xs:complexContent>
|
|
96
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
97
|
+
<xs:sequence>
|
|
98
|
+
<xs:element name="name" type="gco:CharacterString_PropertyType"/>
|
|
99
|
+
<xs:element name="description" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
100
|
+
<xs:element name="operation" type="srv:SV_Operation_PropertyType" maxOccurs="unbounded"/>
|
|
101
|
+
</xs:sequence>
|
|
102
|
+
</xs:extension>
|
|
103
|
+
</xs:complexContent>
|
|
104
|
+
</xs:complexType>
|
|
105
|
+
<!-- ........................................................................ -->
|
|
106
|
+
<xs:element name="SV_OperationChain" type="srv:SV_OperationChain_Type"/>
|
|
107
|
+
<!-- ........................................................................ -->
|
|
108
|
+
<xs:complexType name="SV_OperationChain_PropertyType">
|
|
109
|
+
<xs:sequence>
|
|
110
|
+
<xs:element ref="srv:SV_OperationChain" minOccurs="0"/>
|
|
111
|
+
</xs:sequence>
|
|
112
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
113
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
114
|
+
</xs:complexType>
|
|
115
|
+
<!-- =========================================================================== -->
|
|
116
|
+
<xs:complexType name="SV_OperationChainMetadata_Type">
|
|
117
|
+
<xs:complexContent>
|
|
118
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
119
|
+
<xs:sequence>
|
|
120
|
+
<xs:element name="name" type="gco:CharacterString_PropertyType"/>
|
|
121
|
+
<xs:element name="description" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
122
|
+
<xs:element name="operation" type="srv:SV_OperationMetadata_PropertyType" maxOccurs="unbounded"/>
|
|
123
|
+
</xs:sequence>
|
|
124
|
+
</xs:extension>
|
|
125
|
+
</xs:complexContent>
|
|
126
|
+
</xs:complexType>
|
|
127
|
+
<!-- ........................................................................ -->
|
|
128
|
+
<xs:element name="SV_OperationChainMetadata" type="srv:SV_OperationChainMetadata_Type"/>
|
|
129
|
+
<!-- ........................................................................ -->
|
|
130
|
+
<xs:complexType name="SV_OperationChainMetadata_PropertyType">
|
|
131
|
+
<xs:sequence>
|
|
132
|
+
<xs:element ref="srv:SV_OperationChainMetadata" minOccurs="0"/>
|
|
133
|
+
</xs:sequence>
|
|
134
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
135
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
136
|
+
</xs:complexType>
|
|
137
|
+
<!-- =========================================================================== -->
|
|
138
|
+
<xs:complexType name="SV_CoupledResource_Type">
|
|
139
|
+
<xs:complexContent>
|
|
140
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
141
|
+
<xs:sequence>
|
|
142
|
+
<xs:element name="operationName" type="gco:CharacterString_PropertyType"/>
|
|
143
|
+
<xs:element name="identifier" type="gco:CharacterString_PropertyType"/>
|
|
144
|
+
<xs:element ref="gco:ScopedName" minOccurs="0" maxOccurs="1"/>
|
|
145
|
+
</xs:sequence>
|
|
146
|
+
</xs:extension>
|
|
147
|
+
</xs:complexContent>
|
|
148
|
+
</xs:complexType>
|
|
149
|
+
<!-- ........................................................................ -->
|
|
150
|
+
<xs:element name="SV_CoupledResource" type="srv:SV_CoupledResource_Type"/>
|
|
151
|
+
<!-- ........................................................................ -->
|
|
152
|
+
<xs:complexType name="SV_CoupledResource_PropertyType">
|
|
153
|
+
<xs:sequence>
|
|
154
|
+
<xs:element ref="srv:SV_CoupledResource" minOccurs="0"/>
|
|
155
|
+
</xs:sequence>
|
|
156
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
157
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
158
|
+
</xs:complexType>
|
|
159
|
+
<!-- =========================================================================== -->
|
|
160
|
+
<xs:simpleType name="SV_ParameterDirection_Type">
|
|
161
|
+
<xs:restriction base="xs:string">
|
|
162
|
+
<xs:enumeration value="in"/>
|
|
163
|
+
<xs:enumeration value="out"/>
|
|
164
|
+
<xs:enumeration value="in/out"/>
|
|
165
|
+
</xs:restriction>
|
|
166
|
+
</xs:simpleType>
|
|
167
|
+
<!-- ........................................................................ -->
|
|
168
|
+
<xs:element name="SV_ParameterDirection" type="srv:SV_ParameterDirection_Type" substitutionGroup="gco:CharacterString"/>
|
|
169
|
+
<!-- ........................................................................ -->
|
|
170
|
+
<xs:complexType name="SV_ParameterDirection_PropertyType">
|
|
171
|
+
<xs:sequence>
|
|
172
|
+
<xs:element ref="srv:SV_ParameterDirection" minOccurs="0"/>
|
|
173
|
+
</xs:sequence>
|
|
174
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
175
|
+
</xs:complexType>
|
|
176
|
+
<!-- =========================================================================== -->
|
|
177
|
+
<!-- ........................................................................ -->
|
|
178
|
+
<xs:element name="DCPList" type="gco:CodeListValue_Type" substitutionGroup="gco:CharacterString"/>
|
|
179
|
+
<!-- ........................................................................ -->
|
|
180
|
+
<xs:complexType name="DCPList_PropertyType">
|
|
181
|
+
<xs:sequence>
|
|
182
|
+
<xs:element ref="srv:DCPList" minOccurs="0"/>
|
|
183
|
+
</xs:sequence>
|
|
184
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
185
|
+
</xs:complexType>
|
|
186
|
+
<!-- =========================================================================== -->
|
|
187
|
+
<!-- ........................................................................ -->
|
|
188
|
+
<xs:element name="SV_CouplingType" type="gco:CodeListValue_Type" substitutionGroup="gco:CharacterString"/>
|
|
189
|
+
<!-- ........................................................................ -->
|
|
190
|
+
<xs:complexType name="SV_CouplingType_PropertyType">
|
|
191
|
+
<xs:sequence>
|
|
192
|
+
<xs:element ref="srv:SV_CouplingType" minOccurs="0"/>
|
|
193
|
+
</xs:sequence>
|
|
194
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
195
|
+
</xs:complexType>
|
|
196
|
+
<!-- =========================================================================== -->
|
|
197
|
+
</xs:schema>
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- edited with XMLSpy v2005 rel. 3 U (http://www.altova.com) by STEPHANE BIDAULT (I.G.N/SAF/RECEPTIONS) -->
|
|
3
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:srv="http://www.isotc211.org/2005/srv" targetNamespace="http://www.isotc211.org/2005/srv" elementFormDefault="qualified" version="0.1">
|
|
4
|
+
<!-- ================================= Annotation ================================ -->
|
|
5
|
+
<xs:annotation>
|
|
6
|
+
<xs:documentation>This file was generated from ISO TC/211 UML class diagrams == 10-13-2006 11:14:04 ====== </xs:documentation>
|
|
7
|
+
</xs:annotation>
|
|
8
|
+
<!-- ================================== Imports ================================== -->
|
|
9
|
+
<xs:import namespace="http://www.isotc211.org/2005/gmd" schemaLocation="../gmd/gmd.xsd"/>
|
|
10
|
+
<xs:import namespace="http://www.isotc211.org/2005/gco" schemaLocation="../gco/gco.xsd"/>
|
|
11
|
+
<xs:include schemaLocation="../srv/serviceMetadata.xsd"/>
|
|
12
|
+
<!-- ########################################################################### -->
|
|
13
|
+
<!-- ########################################################################### -->
|
|
14
|
+
<!-- ================================== Classes ================================= -->
|
|
15
|
+
<xs:complexType name="SV_ServiceSpecification_Type">
|
|
16
|
+
<xs:complexContent>
|
|
17
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
18
|
+
<xs:sequence>
|
|
19
|
+
<xs:element name="name" type="gco:CharacterString_PropertyType"/>
|
|
20
|
+
<xs:element name="opModel" type="srv:SV_OperationModel_PropertyType"/>
|
|
21
|
+
<xs:element name="typeSpec" type="srv:SV_PlatformNeutralServiceSpecification_PropertyType"/>
|
|
22
|
+
<xs:element name="theSV_Interface" type="srv:SV_Interface_PropertyType" maxOccurs="unbounded"/>
|
|
23
|
+
</xs:sequence>
|
|
24
|
+
</xs:extension>
|
|
25
|
+
</xs:complexContent>
|
|
26
|
+
</xs:complexType>
|
|
27
|
+
<!-- ........................................................................ -->
|
|
28
|
+
<xs:element name="SV_ServiceSpecification" type="srv:SV_ServiceSpecification_Type"/>
|
|
29
|
+
<!-- ........................................................................ -->
|
|
30
|
+
<xs:complexType name="SV_ServiceSpecification_PropertyType">
|
|
31
|
+
<xs:sequence>
|
|
32
|
+
<xs:element ref="srv:SV_ServiceSpecification" minOccurs="0"/>
|
|
33
|
+
</xs:sequence>
|
|
34
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
35
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
36
|
+
</xs:complexType>
|
|
37
|
+
<!-- =========================================================================== -->
|
|
38
|
+
<xs:complexType name="SV_PlatformNeutralServiceSpecification_Type">
|
|
39
|
+
<xs:complexContent>
|
|
40
|
+
<xs:extension base="srv:SV_ServiceSpecification_Type">
|
|
41
|
+
<xs:sequence>
|
|
42
|
+
<xs:element name="serviceType" type="srv:SV_ServiceType_PropertyType"/>
|
|
43
|
+
<xs:element name="implSpec" type="srv:SV_PlatformSpecificServiceSpecification_PropertyType"/>
|
|
44
|
+
</xs:sequence>
|
|
45
|
+
</xs:extension>
|
|
46
|
+
</xs:complexContent>
|
|
47
|
+
</xs:complexType>
|
|
48
|
+
<!-- ........................................................................ -->
|
|
49
|
+
<xs:element name="SV_PlatformNeutralServiceSpecification" type="srv:SV_PlatformNeutralServiceSpecification_Type" substitutionGroup="srv:SV_ServiceSpecification"/>
|
|
50
|
+
<!-- ........................................................................ -->
|
|
51
|
+
<xs:complexType name="SV_PlatformNeutralServiceSpecification_PropertyType">
|
|
52
|
+
<xs:sequence>
|
|
53
|
+
<xs:element ref="srv:SV_PlatformNeutralServiceSpecification" minOccurs="0"/>
|
|
54
|
+
</xs:sequence>
|
|
55
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
56
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
57
|
+
</xs:complexType>
|
|
58
|
+
<!-- =========================================================================== -->
|
|
59
|
+
<xs:complexType name="SV_PlatformSpecificServiceSpecification_Type">
|
|
60
|
+
<xs:complexContent>
|
|
61
|
+
<xs:extension base="srv:SV_PlatformNeutralServiceSpecification_Type">
|
|
62
|
+
<xs:sequence>
|
|
63
|
+
<xs:element name="DCP" type="srv:DCPList_PropertyType"/>
|
|
64
|
+
<xs:element name="implementation" type="srv:SV_Service_PropertyType" maxOccurs="unbounded"/>
|
|
65
|
+
</xs:sequence>
|
|
66
|
+
</xs:extension>
|
|
67
|
+
</xs:complexContent>
|
|
68
|
+
</xs:complexType>
|
|
69
|
+
<!-- ........................................................................ -->
|
|
70
|
+
<xs:element name="SV_PlatformSpecificServiceSpecification" type="srv:SV_PlatformSpecificServiceSpecification_Type" substitutionGroup="srv:SV_PlatformNeutralServiceSpecification"/>
|
|
71
|
+
<!-- ........................................................................ -->
|
|
72
|
+
<xs:complexType name="SV_PlatformSpecificServiceSpecification_PropertyType">
|
|
73
|
+
<xs:sequence>
|
|
74
|
+
<xs:element ref="srv:SV_PlatformSpecificServiceSpecification" minOccurs="0"/>
|
|
75
|
+
</xs:sequence>
|
|
76
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
77
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
78
|
+
</xs:complexType>
|
|
79
|
+
<!-- =========================================================================== -->
|
|
80
|
+
<xs:complexType name="SV_ServiceType_Type">
|
|
81
|
+
<xs:complexContent>
|
|
82
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
83
|
+
<xs:sequence/>
|
|
84
|
+
</xs:extension>
|
|
85
|
+
</xs:complexContent>
|
|
86
|
+
</xs:complexType>
|
|
87
|
+
<!-- ........................................................................ -->
|
|
88
|
+
<xs:element name="SV_ServiceType" type="srv:SV_ServiceType_Type"/>
|
|
89
|
+
<!-- ........................................................................ -->
|
|
90
|
+
<xs:complexType name="SV_ServiceType_PropertyType">
|
|
91
|
+
<xs:sequence>
|
|
92
|
+
<xs:element ref="srv:SV_ServiceType" minOccurs="0"/>
|
|
93
|
+
</xs:sequence>
|
|
94
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
95
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
96
|
+
</xs:complexType>
|
|
97
|
+
<!-- =========================================================================== -->
|
|
98
|
+
<xs:complexType name="SV_Port_Type">
|
|
99
|
+
<xs:complexContent>
|
|
100
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
101
|
+
<xs:sequence>
|
|
102
|
+
<xs:element name="theSV_Interface" type="srv:SV_Interface_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
103
|
+
</xs:sequence>
|
|
104
|
+
</xs:extension>
|
|
105
|
+
</xs:complexContent>
|
|
106
|
+
</xs:complexType>
|
|
107
|
+
<!-- ........................................................................ -->
|
|
108
|
+
<xs:element name="SV_Port" type="srv:SV_Port_Type"/>
|
|
109
|
+
<!-- ........................................................................ -->
|
|
110
|
+
<xs:complexType name="SV_Port_PropertyType">
|
|
111
|
+
<xs:sequence>
|
|
112
|
+
<xs:element ref="srv:SV_Port" minOccurs="0"/>
|
|
113
|
+
</xs:sequence>
|
|
114
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
115
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
116
|
+
</xs:complexType>
|
|
117
|
+
<!-- =========================================================================== -->
|
|
118
|
+
<xs:complexType name="SV_Service_Type">
|
|
119
|
+
<xs:complexContent>
|
|
120
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
121
|
+
<xs:sequence>
|
|
122
|
+
<xs:element name="specification" type="srv:SV_PlatformSpecificServiceSpecification_PropertyType" maxOccurs="unbounded"/>
|
|
123
|
+
<xs:element name="theSV_Port" type="srv:SV_Port_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
124
|
+
</xs:sequence>
|
|
125
|
+
</xs:extension>
|
|
126
|
+
</xs:complexContent>
|
|
127
|
+
</xs:complexType>
|
|
128
|
+
<!-- ........................................................................ -->
|
|
129
|
+
<xs:element name="SV_Service" type="srv:SV_Service_Type"/>
|
|
130
|
+
<!-- ........................................................................ -->
|
|
131
|
+
<xs:complexType name="SV_Service_PropertyType">
|
|
132
|
+
<xs:sequence>
|
|
133
|
+
<xs:element ref="srv:SV_Service" minOccurs="0"/>
|
|
134
|
+
</xs:sequence>
|
|
135
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
136
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
137
|
+
</xs:complexType>
|
|
138
|
+
<!-- =========================================================================== -->
|
|
139
|
+
<xs:complexType name="SV_Interface_Type">
|
|
140
|
+
<xs:complexContent>
|
|
141
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
142
|
+
<xs:sequence>
|
|
143
|
+
<xs:element name="typeName" type="gco:TypeName_PropertyType"/>
|
|
144
|
+
<xs:element name="theSV_Port" type="srv:SV_Port_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
145
|
+
<xs:element name="operation" type="srv:SV_Operation_PropertyType"/>
|
|
146
|
+
</xs:sequence>
|
|
147
|
+
</xs:extension>
|
|
148
|
+
</xs:complexContent>
|
|
149
|
+
</xs:complexType>
|
|
150
|
+
<!-- ........................................................................ -->
|
|
151
|
+
<xs:element name="SV_Interface" type="srv:SV_Interface_Type"/>
|
|
152
|
+
<!-- ........................................................................ -->
|
|
153
|
+
<xs:complexType name="SV_Interface_PropertyType">
|
|
154
|
+
<xs:sequence>
|
|
155
|
+
<xs:element ref="srv:SV_Interface" minOccurs="0"/>
|
|
156
|
+
</xs:sequence>
|
|
157
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
158
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
159
|
+
</xs:complexType>
|
|
160
|
+
<!-- =========================================================================== -->
|
|
161
|
+
<xs:complexType name="SV_PortSpecification_Type">
|
|
162
|
+
<xs:complexContent>
|
|
163
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
164
|
+
<xs:sequence>
|
|
165
|
+
<xs:element name="binding" type="srv:DCPList_PropertyType"/>
|
|
166
|
+
<xs:element name="address" type="gmd:URL_PropertyType"/>
|
|
167
|
+
</xs:sequence>
|
|
168
|
+
</xs:extension>
|
|
169
|
+
</xs:complexContent>
|
|
170
|
+
</xs:complexType>
|
|
171
|
+
<!-- ........................................................................ -->
|
|
172
|
+
<xs:element name="SV_PortSpecification" type="srv:SV_PortSpecification_Type"/>
|
|
173
|
+
<!-- ........................................................................ -->
|
|
174
|
+
<xs:complexType name="SV_PortSpecification_PropertyType">
|
|
175
|
+
<xs:sequence>
|
|
176
|
+
<xs:element ref="srv:SV_PortSpecification" minOccurs="0"/>
|
|
177
|
+
</xs:sequence>
|
|
178
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
179
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
180
|
+
</xs:complexType>
|
|
181
|
+
<!-- =========================================================================== -->
|
|
182
|
+
<xs:complexType name="SV_Operation_Type">
|
|
183
|
+
<xs:complexContent>
|
|
184
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
185
|
+
<xs:sequence>
|
|
186
|
+
<xs:element name="operationName" type="gco:MemberName_PropertyType"/>
|
|
187
|
+
<xs:element name="dependsOn" type="srv:SV_Operation_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
188
|
+
<xs:element name="parameter" type="srv:SV_Parameter_PropertyType"/>
|
|
189
|
+
</xs:sequence>
|
|
190
|
+
</xs:extension>
|
|
191
|
+
</xs:complexContent>
|
|
192
|
+
</xs:complexType>
|
|
193
|
+
<!-- ........................................................................ -->
|
|
194
|
+
<xs:element name="SV_Operation" type="srv:SV_Operation_Type"/>
|
|
195
|
+
<!-- ........................................................................ -->
|
|
196
|
+
<xs:complexType name="SV_Operation_PropertyType">
|
|
197
|
+
<xs:sequence>
|
|
198
|
+
<xs:element ref="srv:SV_Operation" minOccurs="0"/>
|
|
199
|
+
</xs:sequence>
|
|
200
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
201
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
202
|
+
</xs:complexType>
|
|
203
|
+
<!-- =========================================================================== -->
|
|
204
|
+
<xs:simpleType name="SV_OperationModel_Type">
|
|
205
|
+
<xs:restriction base="xs:string">
|
|
206
|
+
<xs:enumeration value="object"/>
|
|
207
|
+
<xs:enumeration value="message"/>
|
|
208
|
+
</xs:restriction>
|
|
209
|
+
</xs:simpleType>
|
|
210
|
+
<!-- ........................................................................ -->
|
|
211
|
+
<xs:element name="SV_OperationModel" type="srv:SV_OperationModel_Type" substitutionGroup="gco:CharacterString"/>
|
|
212
|
+
<!-- ........................................................................ -->
|
|
213
|
+
<xs:complexType name="SV_OperationModel_PropertyType">
|
|
214
|
+
<xs:sequence>
|
|
215
|
+
<xs:element ref="srv:SV_OperationModel" minOccurs="0"/>
|
|
216
|
+
</xs:sequence>
|
|
217
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
218
|
+
</xs:complexType>
|
|
219
|
+
<!-- =========================================================================== -->
|
|
220
|
+
</xs:schema>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- edited with XMLSpy v2005 rel. 3 U (http://www.altova.com) by STEPHANE BIDAULT (I.G.N/SAF/RECEPTIONS) -->
|
|
3
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.isotc211.org/2005/srv" elementFormDefault="qualified" version="0.1">
|
|
4
|
+
<!-- ================================= Annotation ================================ -->
|
|
5
|
+
<xs:annotation>
|
|
6
|
+
<xs:documentation>This file was generated from ISO TC/211 UML class diagrams == 10-13-2006 11:14:05 ====== </xs:documentation>
|
|
7
|
+
</xs:annotation>
|
|
8
|
+
<!-- ================================== Imports ================================== -->
|
|
9
|
+
<xs:include schemaLocation="../srv/serviceMetadata.xsd"/>
|
|
10
|
+
<!-- ########################################################################### -->
|
|
11
|
+
<!-- ########################################################################### -->
|
|
12
|
+
<!-- ================================== Classes ================================= -->
|
|
13
|
+
</xs:schema>
|