## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## 
# This vocabulary deals with Social Web relations like Wall,
# Messages, apps as well as a personal data spaces.
## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## 

# This ontology.
@prefix socweb:    <http://my-profile.eu/ns/socweb#> .

# Others.
@prefix cc:       <http://creativecommons.org/ns#> .
@prefix dc:       <http://purl.org/dc/terms/> .
@prefix foaf:     <http://xmlns.com/foaf/0.1/> .
@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#> .

socweb: 
    a owl:Ontology ;
    rdfs:label "Social Web Relations"@en ;
    foaf:maker <https://my-profile.eu/people/deiu/card#me> ;
    dc:issued "2012-12-18"^^xsd:date ;
    cc:license <http://creativecommons.org/licenses/by-sa/2.0/uk/deed.en_GB> ;
    cc:attributionName "Andrei Sambra" ;
    cc:attributionURL socweb: .

socweb:dataspace
    a owl:ObjectProperty ;
    rdfs:label "dataspace"@en ;
    rdfs:comment "Indicates the endpoint for an RDF dataspace."@en ;
    rdfs:domain foaf:Agent ;
    rdfs:range foaf:Document ;
    rdfs:subPropertyOf foaf:page .

socweb:webapp
    a owl:ObjectProperty;
    rdfs:label "application"@en;
    rdfs:comment "Indicates the endpoint for an RDF web application."@en ;
    rdfs:domain foaf:Agent ;
    rdfs:range foaf:Document ;
    rdfs:subPropertyOf foaf:page .

socweb:messages
    a owl:ObjectProperty ;
    rdfs:label "messages"@en ;
    rdfs:comment "Indicates then endpoint for sending/reading messages."@en ;
    rdfs:domain foaf:Agent ;
    rdfs:range foaf:Document ;
    rdfs:subPropertyOf foaf:page .

socweb:wall
    a owl:ObjectProperty ;
    rdfs:label "wall"@en ;
    rdfs:comment "Indicates the endpoint for a Wall."@en ;
    rdfs:domain foaf:Agent ;
    rdfs:range foaf:Document ;
    rdfs:subPropertyOf foaf:page .
