🧑🌾 Ancestor (property)
note
https://know.dev/ancestor
(know:ancestor
)
Specification
- Turtle
- JSON-LD
- RDF/XML
@prefix know: <https://know.dev/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
know:ancestor a owl:ObjectProperty,
owl:AsymmetricProperty,
owl:TransitiveProperty,
owl:IrreflexiveProperty;
rdfs:label "Ancestor"@en,
"Esivanhempi"@fi;
rdfs:domain know:Person;
rdfs:range know:Person;
rdfs:subPropertyOf know:relative;
owl:inverseOf know:descendant;
know:glyph "🧑🌾" .
{
"@context": {
"dcterms": "http://purl.org/dc/terms/",
"foaf": "http://xmlns.com/foaf/0.1/",
"know": "https://know.dev/",
"owl": "http://www.w3.org/2002/07/owl#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"schema": "https://schema.org/",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@id": "know:ancestor",
"@type": [
"owl:ObjectProperty",
"owl:AsymmetricProperty",
"owl:TransitiveProperty",
"owl:IrreflexiveProperty"
],
"rdfs:subPropertyOf": {
"@id": "know:relative"
},
"owl:inverseOf": {
"@id": "know:descendant"
},
"rdfs:domain": {
"@id": "know:Person"
},
"rdfs:range": {
"@id": "know:Person"
},
"rdfs:label": [
{
"@language": "en",
"@value": "Ancestor"
},
{
"@language": "fi",
"@value": "Esivanhempi"
}
],
"know:glyph": "🧑🌾"
}
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:know="https://know.dev/" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:ObjectProperty rdf:about="https://know.dev/ancestor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:subPropertyOf rdf:resource="https://know.dev/relative"/>
<owl:inverseOf rdf:resource="https://know.dev/descendant"/>
<rdfs:domain rdf:resource="https://know.dev/Person"/>
<rdfs:range rdf:resource="https://know.dev/Person"/>
<rdfs:label xml:lang="en">Ancestor</rdfs:label>
<rdfs:label xml:lang="fi">Esivanhempi</rdfs:label>
<know:glyph>🧑🌾</know:glyph>
</owl:ObjectProperty>
</rdf:RDF>