-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalogue.ttl
23 lines (22 loc) · 931 Bytes
/
catalogue.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
PREFIX astatus: <https://linked.data.gov.au/def/reg-statuses/>
PREFIX catns: <https://example.com/demo-vocabs/>
PREFIX dcat: <http://www.w3.org/ns/dcat#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX reg: <http://purl.org/linked-data/registry#>
PREFIX schema: <https://schema.org/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
<https://example.com/demo-vocabs>
a dcat:Catalog ;
dcterms:hasPart
catns:image-test ,
catns:language-test ;
schema:codeRepository "https://github.com/kurrawong/demo-vocabs" ;
schema:creator <https://kurrawong.ai> ;
schema:dateCreated "2023"^^xsd:gYear ;
schema:dateModified "2024-10-16"^^xsd:date ;
schema:description "A testing catalogue for the Prez Manifest Loader tool" ;
schema:name "Demo Vocabularies" ;
schema:publisher <https://kurrawong.ai> ;
reg:status astatus:experimental ;
.