Skip to content

Instantly share code, notes, and snippets.

@johnnolan
Last active November 2, 2022 14:04
Show Gist options
  • Save johnnolan/897c01298d301ff3541c7cbc5738c595 to your computer and use it in GitHub Desktop.
Save johnnolan/897c01298d301ff3541c7cbc5738c595 to your computer and use it in GitHub Desktop.
ttl lpa
[
{
"@id": "http://w3id.org/lpa/",
"@type": ["http://www.w3.org/2002/07/owl#Ontology"],
"http://purl.org/dc/terms/title": [
{ "@value": "LPA ontology", "@language": "en" }
],
"http://purl.org/dc/terms/description": [
{
"@value": "The Lasting Power of Attorney ontology aims at describing the Lasting Power of Attorney document.",
"@language": "en"
}
],
"http://purl.org/vocab/vann/preferredNamespacePrefix": [
{ "@value": "lpa" }
],
"http://purl.org/vocab/vann/preferredNamespaceURI": [
{ "@id": "http://w3id.org/lpa/" }
]
},
{
"@id": "http://w3id.org/lpa/Donor",
"http://xmlns.com/foaf/0.1/Person": [
{ "@id": "http://www.w3.org/2000/01/rdf-schema#Class" }
]
},
{
"@id": "http://w3id.org/lpa/Lpa",
"@type": ["http://www.w3.org/2000/01/rdf-schema#Class"]
},
{ "@id": "http://www.w3.org/2000/01/rdf-schema#Class" },
{ "@id": "http://www.w3.org/2002/07/owl#Ontology" }
]
@prefix lpa: <http://w3id.org/lpa/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
lpa: rdf:type owl:Ontology ;
# Description.
dcterms:title "LPA ontology"@en ;
dcterms:description "The Lasting Power of Attorney ontology aims at describing the Lasting Power of Attorney document."@en ;
vann:preferredNamespacePrefix "lpa" ;
vann:preferredNamespaceURI <http://w3id.org/lpa/> .
lpa:Lpa rdf:type rdfs:Class .
lpa:Donor foaf:Person rdfs:Class .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment