-
-
Save davidamichelson/9d1aa2ed0f36dcd30fef to your computer and use it in GitHub Desktop.
VoID file
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
@prefix : <http://syriaca.org/terms> . | |
#we need to make the above namespace | |
@prefix void: <http://rdfs.org/ns/void#> . | |
@prefix dcterms: <http://purl.org/dc/terms/> . | |
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | |
:my-dataset a void:Dataset; | |
dcterms:title "The Syriac Gazetteer"; | |
dcterms:publisher "Syriaca.org: The Syriac Reference Portal"; | |
foaf:homepage <https://syriaca.org/>; | |
dcterms:description "The Syriac Gazetteer is a geographical reference work of Syriaca.org for places relevant to Syriac studies."; | |
dcterms:license <http://opendatacommons.org/licenses/by/>; | |
#does this license refer to the whole dataset or just this file? | |
#The dcterms:license property should be used to to point to the license under which a dataset has been published. | |
dcterms:creator #needs to be an RDF Resource | |
dcterms:source "A related resource from which the dataset is derived. needs to be RDF" | |
dcterms:contributor "whoever is making contributions. Needs to be RDF" | |
dcterms:created Date of creation of the dataset. The value should be formatted and data-typed as an xsd:date. | |
# This is VERY important | |
void:dataDump <http://syriaca.org/downloads/pelagios.ttl> ; | |
#we need to make the above link | |
# Categorizing datasets by subject--- dbpedia SKOS or something else? | |
# Do we want to add statistical info such as home many triples or or entities in DATASET |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment