๐จ Uncle (property)
note
https://know.dev/uncle
(know:uncle
)
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:uncle a owl:ObjectProperty,
owl:AsymmetricProperty;
rdfs:label "Setรค"@fi,
"Uncle"@en;
rdfs:domain know:Person;
rdfs:range know:Person;
rdfs:subPropertyOf know:pibling;
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:uncle",
"@type": [
"owl:ObjectProperty",
"owl:AsymmetricProperty"
],
"rdfs:subPropertyOf": {
"@id": "know:pibling"
},
"rdfs:domain": {
"@id": "know:Person"
},
"rdfs:range": {
"@id": "know:Person"
},
"rdfs:label": [
{
"@language": "fi",
"@value": "Setรค"
},
{
"@language": "en",
"@value": "Uncle"
}
],
"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/uncle">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdfs:subPropertyOf rdf:resource="https://know.dev/pibling"/>
<rdfs:domain rdf:resource="https://know.dev/Person"/>
<rdfs:range rdf:resource="https://know.dev/Person"/>
<rdfs:label xml:lang="fi">Setรค</rdfs:label>
<rdfs:label xml:lang="en">Uncle</rdfs:label>
<know:glyph>๐จ</know:glyph>
</owl:ObjectProperty>
</rdf:RDF>