-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from RDFLib/edmond/catalog-listing
Catalog object resource listing table metadata
- Loading branch information
Showing
5 changed files
with
110 additions
and
60 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,43 @@ | ||
@prefix dcat: <http://www.w3.org/ns/dcat#> . | ||
@prefix ns1: <https://prez.dev/> . | ||
@prefix ns2: <http://www.w3.org/ns/prov#> . | ||
@prefix ns3: <http://purl.org/dc/terms/> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
PREFIX dcat: <http://www.w3.org/ns/dcat#> | ||
PREFIX dcterms: <http://purl.org/dc/terms/> | ||
PREFIX ns1: <https://prez.dev/> | ||
PREFIX prov: <http://www.w3.org/ns/prov#> | ||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | ||
|
||
ns3:identifier rdfs:label "Identifier"@en . | ||
dcterms:identifier | ||
rdfs:label "Identifier"@en ; | ||
. | ||
|
||
<https://w3id.org/idn/dataset/agents> a dcat:Catalog ; | ||
ns3:created "2022-08-15"^^xsd:date ; | ||
ns3:description """The Indigenous Data Network's catalogue of Agents. This catalogue contains instances of Agents - People and Organisations - related to the holding of indigenous data. This includes non-indigenous Agents | ||
<https://w3id.org/idn/dataset/agents> | ||
a dcat:Catalog ; | ||
dcterms:created "2022-08-15"^^xsd:date ; | ||
dcterms:description """The Indigenous Data Network's catalogue of Agents. This catalogue contains instances of Agents - People and Organisations - related to the holding of indigenous data. This includes non-indigenous Agents | ||
This catalogue extends on standard Agent information to include properties useful to understand the indigeneity of Agents: whether they are or not, or how much they are, indigenous"""@en ; | ||
ns3:hasPart <https://www.atsida.edu.au/archive/datasets/au.edu.anu.ada.ddi.20002-sa> ; | ||
ns3:identifier "idnac"^^xsd:token ; | ||
ns3:modified "2022-08-15"^^xsd:date ; | ||
ns3:title "IDN Agents Catalogue" ; | ||
ns2:qualifiedAttribution [ dcat:hadRole <http://def.isotc211.org/iso19115/-1/2018/CitationAndResponsiblePartyInformation/code/CI_RoleCode/author>, | ||
<http://def.isotc211.org/iso19115/-1/2018/CitationAndResponsiblePartyInformation/code/CI_RoleCode/custodian>, | ||
dcterms:hasPart <https://www.atsida.edu.au/archive/datasets/au.edu.anu.ada.ddi.20002-sa> ; | ||
dcterms:identifier "idnac"^^xsd:token ; | ||
dcterms:modified "2022-08-15"^^xsd:date ; | ||
dcterms:title "IDN Agents Catalogue" ; | ||
prov:qualifiedAttribution [ | ||
dcat:hadRole | ||
<http://def.isotc211.org/iso19115/-1/2018/CitationAndResponsiblePartyInformation/code/CI_RoleCode/author> , | ||
<http://def.isotc211.org/iso19115/-1/2018/CitationAndResponsiblePartyInformation/code/CI_RoleCode/custodian> , | ||
<http://def.isotc211.org/iso19115/-1/2018/CitationAndResponsiblePartyInformation/code/CI_RoleCode/owner> ; | ||
ns2:agent <https://linked.data.gov.au/org/idn> ] . | ||
prov:agent <https://linked.data.gov.au/org/idn> | ||
] ; | ||
. | ||
|
||
<https://linked.data.gov.au/org/idn> rdfs:label "Indigenous Data Network" . | ||
<https://linked.data.gov.au/org/idn> | ||
rdfs:label "Indigenous Data Network" ; | ||
. | ||
|
||
<https://www.atsida.edu.au/archive/datasets/au.edu.anu.ada.ddi.20002-sa> ns3:description """This study contains time series of data of the Annual Aboriginal Census for Australia, Australian Capital Territory, New South Wales, Northern Territory, Queensland, South Australia, Tasmania, Victoria and Western Australia from 1921 to 1944. | ||
<https://www.atsida.edu.au/archive/datasets/au.edu.anu.ada.ddi.20002-sa> | ||
dcterms:description """This study contains time series of data of the Annual Aboriginal Census for Australia, Australian Capital Territory, New South Wales, Northern Territory, Queensland, South Australia, Tasmania, Victoria and Western Australia from 1921 to 1944. | ||
Special care notice: | ||
Aboriginal and Torres Strait Islander people, researchers and other users should be aware that material in this dataset may contain material that is considered offensive. The data has been retained in its original format because it represents an evidential record of language, beliefs or other cultural situations at a point in time.""" ; | ||
ns3:title "Annual Aboriginal Census,1921-1944 - South Australia" ; | ||
ns1:link "/c/catalogs/dtst:agents/dtsts:au.edu.anu.ada.ddi.20002-sa" . | ||
dcterms:issued "2011-07-22"^^xsd:date ; | ||
dcterms:title "Annual Aboriginal Census,1921-1944 - South Australia" ; | ||
ns1:link "/c/catalogs/dtst:agents/dtsts:au.edu.anu.ada.ddi.20002-sa" ; | ||
. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,47 @@ | ||
@prefix ns1: <https://example.com/> . | ||
@prefix ns2: <http://www.w3.org/ns/prov#> . | ||
@prefix ns3: <http://purl.org/dc/terms/> . | ||
@prefix ns4: <http://www.w3.org/ns/dcat#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
PREFIX dcat: <http://www.w3.org/ns/dcat#> | ||
PREFIX dcterms: <http://purl.org/dc/terms/> | ||
PREFIX ns1: <https://example.com/> | ||
PREFIX prov: <http://www.w3.org/ns/prov#> | ||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | ||
|
||
ns3:identifier rdfs:label "Identifier"@en . | ||
dcterms:identifier | ||
rdfs:label "Identifier"@en ; | ||
. | ||
|
||
<https://www.atsida.edu.au/archive/datasets/au.edu.anu.ada.ddi.20002-sa> a ns4:Resource ; | ||
ns3:accessRights <https://linked.data.gov.au/def/data-access-rights/metadata-only> ; | ||
ns3:description """This study contains time series of data of the Annual Aboriginal Census for Australia, Australian Capital Territory, New South Wales, Northern Territory, Queensland, South Australia, Tasmania, Victoria and Western Australia from 1921 to 1944. | ||
<https://www.atsida.edu.au/archive/datasets/au.edu.anu.ada.ddi.20002-sa> | ||
a dcat:Resource ; | ||
dcterms:accessRights <https://linked.data.gov.au/def/data-access-rights/metadata-only> ; | ||
dcterms:description """This study contains time series of data of the Annual Aboriginal Census for Australia, Australian Capital Territory, New South Wales, Northern Territory, Queensland, South Australia, Tasmania, Victoria and Western Australia from 1921 to 1944. | ||
Special care notice: | ||
Aboriginal and Torres Strait Islander people, researchers and other users should be aware that material in this dataset may contain material that is considered offensive. The data has been retained in its original format because it represents an evidential record of language, beliefs or other cultural situations at a point in time.""" ; | ||
ns3:identifier "AAC-SA"^^xsd:token ; | ||
ns3:issued "2011-07-22"^^xsd:date ; | ||
ns3:license "All Rights Reserved" ; | ||
ns3:rights "Copyright © 2011, The Australian National University. All rights reserved." ; | ||
ns3:spatial <https://linked.data.gov.au/dataset/asgsed3/STE/4>, | ||
dcterms:identifier "AAC-SA"^^xsd:token ; | ||
dcterms:issued "2011-07-22"^^xsd:date ; | ||
dcterms:license "All Rights Reserved" ; | ||
dcterms:rights "Copyright © 2011, The Australian National University. All rights reserved." ; | ||
dcterms:spatial | ||
<https://linked.data.gov.au/dataset/asgsed3/STE/4> , | ||
<https://linked.data.gov.au/dataset/asgsed3/STE/7> ; | ||
ns3:temporal "1921-1944" ; | ||
ns3:title "Annual Aboriginal Census,1921-1944 - South Australia" ; | ||
ns4:accessURL "https://www.atsida.edu.au/archive/datasets/au.edu.anu.ada.ddi.20002-sa"^^xsd:anyURI ; | ||
ns4:theme <https://w3id.org/idn/def/idn-th/subject>, | ||
dcterms:temporal "1921-1944" ; | ||
dcterms:title "Annual Aboriginal Census,1921-1944 - South Australia" ; | ||
dcat:accessURL "https://www.atsida.edu.au/archive/datasets/au.edu.anu.ada.ddi.20002-sa"^^xsd:anyURI ; | ||
dcat:theme | ||
<https://w3id.org/idn/def/idn-th/subject> , | ||
<https://w3id.org/idn/def/indigeneity/about-indigenous-people> ; | ||
ns2:qualifiedAttribution [ ns4:hadRole <http://def.isotc211.org/iso19115/-1/2018/CitationAndResponsiblePartyInformation/code/CI_RoleCode/originator> ; | ||
ns2:agent "Gordon Briscoe, Len Smith" ], | ||
[ ns4:hadRole <http://def.isotc211.org/iso19115/-1/2018/CitationAndResponsiblePartyInformation/code/CI_RoleCode/rightsHolder> ; | ||
ns2:agent <https://linked.data.gov.au/org/anu> ], | ||
[ ns4:hadRole <http://def.isotc211.org/iso19115/-1/2018/CitationAndResponsiblePartyInformation/code/CI_RoleCode/custodian> ; | ||
ns2:agent "ATSIDA.1" ] ; | ||
prov:qualifiedAttribution | ||
[ | ||
dcat:hadRole <http://def.isotc211.org/iso19115/-1/2018/CitationAndResponsiblePartyInformation/code/CI_RoleCode/originator> ; | ||
prov:agent "Gordon Briscoe, Len Smith" | ||
] , | ||
[ | ||
dcat:hadRole <http://def.isotc211.org/iso19115/-1/2018/CitationAndResponsiblePartyInformation/code/CI_RoleCode/rightsHolder> ; | ||
prov:agent <https://linked.data.gov.au/org/anu> | ||
] , | ||
[ | ||
dcat:hadRole <http://def.isotc211.org/iso19115/-1/2018/CitationAndResponsiblePartyInformation/code/CI_RoleCode/custodian> ; | ||
prov:agent "ATSIDA.1" | ||
] ; | ||
ns1:home "https://www.atsida.edu.au/" ; | ||
ns1:notes "The Annual Aboriginal Census is considered as a significant official source of Aboriginal population statistics. It was conducted annually in June from 1921 to 1944, exempting the war years between 1941 and 1944 in each State and Territory. The 1944 census was incomplete with New South Wales not taking part at all. Enumeration of Aboriginal populations was poor and difficulties in classification occurred. The Census was a collaboration of the Commonwealth Bureau of Census and Statistics who initiated the study, State and Territory Statisticians, the Protector of Aborigines, and local police officers who conducted the enumeration. The Annual Aboriginal Census is also referred to as the Annual Census of Aborigines and Police Census." . | ||
ns1:notes "The Annual Aboriginal Census is considered as a significant official source of Aboriginal population statistics. It was conducted annually in June from 1921 to 1944, exempting the war years between 1941 and 1944 in each State and Territory. The 1944 census was incomplete with New South Wales not taking part at all. Enumeration of Aboriginal populations was poor and difficulties in classification occurred. The Census was a collaboration of the Commonwealth Bureau of Census and Statistics who initiated the study, State and Territory Statisticians, the Protector of Aborigines, and local police officers who conducted the enumeration. The Annual Aboriginal Census is also referred to as the Annual Census of Aborigines and Police Census." ; | ||
. |