Proposed draft RDF Graph vocabulary - take 2

    rdfg:Graph
       a rdfs:Class ;
       rdfs:comment "An RDF graph." .

    rdfg:Authority
       a rdfs:Class ;
       rdfs:comment "An authority, or origin, of a graph; such as a 
person or company." .

    rdfg:Signature
       a rdfs:Class ;
       rdfs:comment "A signature used to authenticate a graph." .

    rdfg:equivalentGraph
       a rdf:Property ;
       rdfs:comment  "The subject and object graphs are equivalent as 
defined by RDF Concepts." ;
       rdfs:domain rdfg:Graph ;
       rdfs:range rdfg:Graph .

    rdfg:subGraphOf
       a rdf:Property ;
       rdfs:comment "The subject graph is equivalent to a subset of the 
object graph." ;
       rdfs:domain rdfg:Graph ;
       rdfs:range rdfg:Graph ;

    rdfg:authority
       a rdf:Property ;
       rdfs:comment "The object is the authority, or origin, of the 
subject graph." ;
       rdfs:domain rdfg:Graph ;
       rdfs:range rdfg:Authority .

    rdfg:assertedBy
       a rdf:Property ;
       rdfs:subPropertyOf rdfg:authority ;
       rdfs:comment "The object is the asserting authority of the 
subject graph." ;
       rdfs:domain rdfg:Graph ;
       rdfs:range rdfg:Authority .

    rdfg:signature
       a rdf:Property ;
       rdfs:comment "The object is the signature to be used to 
authenticate the subject graph." ;
       rdfs:domain rdfg:Graph ;
       rdfs:range rdfg:Signature .

Received on Tuesday, 16 March 2004 03:33:29 UTC