Last active
March 4, 2017 14:44
-
-
Save mrcnc/a9af5c1ca3dfb4db78f231dd1429178d to your computer and use it in GitHub Desktop.
Example CSW-T request body
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<csw:Transaction | |
version="2.0.2" | |
service="CSW" | |
xmlns:csw="http://www.opengis.net/cat/csw/2.0.2"> | |
<csw:Insert typeName="csw:Record"> | |
<csw:Record | |
xmlns:ows="http://www.opengis.net/ows" | |
xmlns:csw="http://www.opengis.net/cat/csw/2.0.2" | |
xmlns:dc="http://purl.org/dc/elements/1.1/" | |
xmlns:dct="http://purl.org/dc/terms/" | |
xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
<dc:identifier>12345</dc:identifier> | |
<dc:title>Null Island</dc:title> | |
<ows:BoundingBox crs="urn:x-ogc:def:crs:EPSG:6.11:4326"> | |
<ows:LowerCorner>0 0</ows:LowerCorner> | |
<ows:UpperCorner>0 0</ows:UpperCorner> | |
</ows:BoundingBox> | |
</csw:Record> | |
</csw:Insert> | |
</csw:Transaction> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment