[dxwg] Example of catalogued service

andrea-perego has just created a new issue for https://github.com/w3c/dxwg:

== Example of catalogued service ==
> As per [ACTION-117](https://www.w3.org/2017/dxwg/track/actions/117).

I include herebelow a full example of a metadata record for a service, as it is done in GeoDCAT-AP.

The example include:
1. The catalogue containing the service record
2. The record for the service
3. The corresponding catalogue record
4. The source ISO 19119 record, from which the catalogue record at point (3) has been derived

**NB:** `dcat:contactPoint` is used in the example following the revision in the current DCAT draft, which has relaxed the domain restriction of this property.

````turtle
# The catalog  containing the service record
a:Catalog a dcat:Catalog ;
  dcat:record :EEA-CSW-Endpoint-Record ;
  dcterms:hasPart :EEA-CSW-Endpoint .

# The GeoDCAT-AP catalog record about the EEA CSW public endpoint (a service)
  
:EEA-CSW-Endpoint-Record a dcat:CatalogRecord ;
  foaf:primaryTopic :EEA-CSW-Endpoint .
  dcterms:language <http://publications.europa.eu/resource/authority/language/ENG> ;
  dcterms:modified "2012-05-21"^^xsd:date ;
  dcat:contactPoint :EEA ;
  dcterms:identifier "4be5cb08-e082-426a-9c57-8a53d7cd3f65"^^xsd:string ;
  dcterms:conformsTo <http://data.europa.eu/930>
  dcterms:source :EEA-CSW-Endpoint-SourceRecord ;
  
# The ISO 19119 record from which the GeoDCAT-AP catalog record has been derived

:EEA-CSW-Endpoint-SourceRecord dcterms:conformsTo <http://www.isotc211.org/2005/gmd> .

# The EEA CSW public endpoint

:EEA-CSW-Endpoint a dctype:Service, dcat:Catalog ;
# The resource + service type, using the relevant ISO 19115/19 code lists
  dcterms:type <http://inspire.ec.europa.eu/metadata-codelist/ResourceType/service>, 
    <http://inspire.ec.europa.eu/metadata-codelist/SpatialDataServiceType/discovery> ;
  dcterms:title "European Environment Agency's public catalogue of spatial datasets."@en ;
  dcterms:description "The EEA public catalogue of spatial datasets references the spatial datasets used by the European Environment Agency as well as the spatial datasets produced by or for the EEA. In the latter case, when datasets are publicly available, a link to the location from where they can be downloaded is included in the dataset's metadata. The catalogue has been initially populated with the most important spatial datasets already available on the data&maps section of the EEA website and is currently updated with any newly published spatial dataset."@en ;
# This corresponds to the ISO 19119 code list of classification of spatial data services
  dc:subject "infoCatalogueService"@en ;
  dcterms:identifier "eea-sdi-public-catalogue"^^xsd:string ;
  dcterms:spatial [ 
    a dct:Location ;
    locn:geometry 
      "POLYGON((-180 90,180 90,180 -90,-180 -90,-180 90))"^^gsp:wktLiteral, 
      "<gml:Envelope srsName=\"http://www.opengis.net/def/crs/OGC/1.3/CRS84\"><gml:lowerCorner>-180 -90</gml:lowerCorner><gml:upperCorner>180 90</gml:upperCorner></gml:Envelope>"^^gsp:gmlLiteral 
  ] ;
  dcterms:issued "2012-01-01"^^xsd:date ;
# The service conforms to the CSW specification  
  dcterms:conformsTo <http://www.opengis.net/def/serviceType/ogc/csw> ;
# @dr-shorthair, this URL corresponds in ISO 19119 to srv:connectPoint :  
  foaf:page <http://sdi.eea.europa.eu/catalogue/srv/eng/csw> ;
  dcterms:license <https://creativecommons.org/licenses/by/2.5/dk/> ;
  dcterms:accessRights <http://publications.europa.eu/resource/authority/access-right/PUBLIC> ;
  dcat:contactPoint :EEA .

# The point of contact for both the catalog record and the service  
  
:EEA a vcard:Organization ;
  vcard:organization-name "European Environment Agency"@en ;
  vcard:hasEmail <mailto:info@eea.europa.eu> ;
  vcard:hasURL <http://www.eea.europa.eu> .
````


Please view or discuss this issue at https://github.com/w3c/dxwg/issues/237 using your GitHub account

Received on Thursday, 17 May 2018 15:01:55 UTC