-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.ttl
33 lines (32 loc) · 1.33 KB
/
manifest.ttl
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
PREFIX mrr: <https://prez.dev/ManifestResourceRoles/>
PREFIX prez: <https://prez.dev/>
PREFIX prof: <http://www.w3.org/ns/dx/prof/>
PREFIX schema: <https://schema.org/>
[]
a prez:Manifest ;
prof:hasResource
[
prof:hasArtifact "catalogue.ttl" ;
prof:hasRole mrr:CatalogueData ;
schema:description "The definition of, and medata for, the container which here is a dcat:Catalog object" ;
schema:name "Catalogue Definition"
] ,
[
prof:hasArtifact "vocabs/*.ttl" ;
prof:hasRole mrr:ResourceData ;
schema:description "skos:ConceptScheme objects in RDF (Turtle) files in the vocabs/ folder" ;
schema:name "Resource Data"
] ,
[
prof:hasArtifact "https://github.com/RDFLib/prez/blob/main/prez/reference_data/profiles/ogc_records_profile.ttl" ;
prof:hasRole mrr:CatalogueAndResourceModel ;
schema:description "The default Prez profile for Records API" ;
schema:name "Profile Definition"
] ,
[
prof:hasArtifact "_background/labels.ttl" ;
prof:hasRole mrr:CompleteCatalogueAndResourceLabels ;
schema:description "An RDF file containing all the labels for the container content" ;
schema:name "Labels" ;
] ;
.