-
Notifications
You must be signed in to change notification settings - Fork 16
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 #490 from geological-survey-of-queensland/bulk-cru…
…d-support Adding vocabs for bulk crud tools
- Loading branch information
Showing
2 changed files
with
371 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
PREFIX agldwgstatus: <https://linked.data.gov.au/def/reg-statuses/> | ||
PREFIX crudstatus: <http://linked.data.gov.au/def/crudstatus/> | ||
PREFIX cs: <http://linked.data.gov.au/def/crudstatus> | ||
PREFIX dcterms: <http://purl.org/dc/terms/> | ||
PREFIX owl: <http://www.w3.org/2002/07/owl#> | ||
PREFIX reg: <http://purl.org/linked-data/registry#> | ||
PREFIX sdo: <https://schema.org/> | ||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | ||
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | ||
|
||
crudstatus:started | ||
a skos:Concept ; | ||
dcterms:provenance "Developed by the Geological Survey of Queensland." ; | ||
skos:definition "A bulk crud operation which has commenced."@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel "Started"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudstatus:pending | ||
a skos:Concept ; | ||
dcterms:provenance "Developed by the Geological Survey of Queensland." ; | ||
skos:altLabel "Pending"@en ; | ||
skos:definition "A bulk crud operation which has yet to commence."@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel "Not Started"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudstatus:inprogress | ||
a skos:Concept ; | ||
dcterms:provenance "Developed by the Geological Survey of Queensland." ; | ||
skos:definition "A bulk crud operation which is in progress."@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel "In Progress"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudstatus:completed | ||
a skos:Concept ; | ||
dcterms:provenance "Developed by the Geological Survey of Queensland." ; | ||
skos:definition "A bulk crud operation which has been completed without error."@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel "Completed"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudstatus:completederror | ||
a skos:Concept ; | ||
dcterms:provenance "Developed by the Geological Survey of Queensland." ; | ||
skos:definition "A bulk crud operation which has been completed with error(s)."@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel "Completed with Error"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
<https://linked.data.gov.au/org/gsq> | ||
a sdo:Organization ; | ||
sdo:name "Geological Survey of Queensland" ; | ||
sdo:url "http://www.business.qld.gov.au/industries/mining-energy-water/resources/geoscience-information/gsq"^^xsd:anyURI ; | ||
. | ||
|
||
cs: | ||
a | ||
owl:Ontology , | ||
skos:ConceptScheme ; | ||
dcterms:created "2023-06-20T11:24:51"^^xsd:dateTime ; | ||
dcterms:creator <https://linked.data.gov.au/org/gsq> ; | ||
dcterms:modified "2023-06-20"^^xsd:date ; | ||
dcterms:provenance "Developed by the Geological Survey of Queensland." ; | ||
dcterms:publisher <https://linked.data.gov.au/org/gsq> ; | ||
reg:status agldwgstatus:stable ; | ||
skos:definition "A description of the state of a bulk CRUD operation."@en ; | ||
skos:hasTopConcept | ||
crudstatus:started , | ||
crudstatus:pending , | ||
crudstatus:inprogress , | ||
crudstatus:completed , | ||
crudstatus:completederror ; | ||
skos:prefLabel "Bulk CRUD Status"@en ; | ||
. |
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 |
---|---|---|
@@ -0,0 +1,290 @@ | ||
PREFIX agldwgstatus: <https://linked.data.gov.au/def/reg-statuses/> | ||
PREFIX crudtype: <http://linked.data.gov.au/def/crudtype/> | ||
PREFIX cs: <http://linked.data.gov.au/def/crudtype> | ||
PREFIX dcterms: <http://purl.org/dc/terms/> | ||
PREFIX owl: <http://www.w3.org/2002/07/owl#> | ||
PREFIX reg: <http://purl.org/linked-data/registry#> | ||
PREFIX sdo: <https://schema.org/> | ||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | ||
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | ||
|
||
crudtype:sitescsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of sites.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"sites.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:sites_detailscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of sites_details.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"sites_details.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:site_aliascsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of site_alias.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"site_alias.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:site_relationshipscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of site_relationships.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"site_relationships.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:site_wellborescsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of site_wellbores.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"site_wellbores.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:site_wellbore_relationshipscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of site_wellbore_relationships.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"site_wellbore_relationships.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:surveyscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of surveys.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"surveys.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:survey_detailscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of survey_details.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"survey_details.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:survey_relationshipscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of survey_relationships.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"survey_relationships.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:samplescsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of samples.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"samples.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:sample_detailscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of sample_details.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"sample_details.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:sample_aliascsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of sample_alias.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"sample_alias.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:sample_relationshipscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of sample_relationships.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"sample_relationships.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:sample_locationscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of sample_locations.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"sample_locations.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:sample_locations_detailscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of sample_locations_details.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"sample_locations_details.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:observationscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of observations.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"observations.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:observation_detailscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of observation_details.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"observation_details.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:observation_salescsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of observation_sales.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"observation_sales.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:resultscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of results.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"results.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:reportscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of reports.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"reports.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:report_detailscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of report_details.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"report_details.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:report_aliascsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of report_alias.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"report_alias.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:permitscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of permits.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"permits.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:documentscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of documents.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"documents.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:document_linkscsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of document_links.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"document_links.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
crudtype:spatialcsv | ||
a skos:Concept ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
skos:definition"A csv file with a name of spatial.csv"@en ; | ||
skos:inScheme cs: ; | ||
skos:prefLabel"spatial.csv"@en ; | ||
skos:topConceptOf cs: ; | ||
. | ||
|
||
<https://linked.data.gov.au/org/gsq> | ||
a sdo:Organization ; | ||
sdo:name"Geological Survey of Queensland" ; | ||
sdo:url"http://www.business.qld.gov.au/industries/mining-energy-water/resources/geoscience-information/gsq"^^xsd:anyURI ; | ||
. | ||
|
||
cs: | ||
a | ||
owl:Ontology , | ||
skos:ConceptScheme ; | ||
dcterms:created"2023-06-20T11:24:51"^^xsd:dateTime ; | ||
dcterms:creator <https://linked.data.gov.au/org/gsq> ; | ||
dcterms:modified"2023-06-20"^^xsd:date ; | ||
dcterms:provenance"Developed by the Geological Survey of Queensland." ; | ||
dcterms:publisher <https://linked.data.gov.au/org/gsq> ; | ||
reg:status agldwgstatus:stable ; | ||
skos:definition"The filetypes which are valid for use in the Bulk CRUD tool."@en ; | ||
skos:hasTopConcept | ||
crudtype:sitescsv , | ||
crudtype:sites_detailscsv , | ||
crudtype:site_aliascsv , | ||
crudtype:site_relationshipscsv , | ||
crudtype:site_wellborescsv , | ||
crudtype:site_wellbore_relationshipscsv , | ||
crudtype:surveyscsv , | ||
crudtype:survey_detailscsv , | ||
crudtype:survey_relationshipscsv , | ||
crudtype:samplescsv , | ||
crudtype:sample_detailscsv , | ||
crudtype:sample_aliascsv , | ||
crudtype:sample_relationshipscsv , | ||
crudtype:sample_locationscsv , | ||
crudtype:sample_locations_detailscsv , | ||
crudtype:observationscsv , | ||
crudtype:observation_detailscsv , | ||
crudtype:observation_salescsv , | ||
crudtype:resultscsv , | ||
crudtype:reportscsv , | ||
crudtype:report_detailscsv , | ||
crudtype:report_aliascsv , | ||
crudtype:permitscsv , | ||
crudtype:documentscsv , | ||
crudtype:document_linkscsv , | ||
crudtype:spatialcsv ; | ||
skos:prefLabel"crudtypes"@en ; | ||
. |