annotate src/serd-0.18.2/tests/rdf-schema.ttl @ 23:619f715526df sv_v2.1

Update Vamp plugin SDK to 2.5
author Chris Cannam
date Thu, 09 May 2013 10:52:46 +0100
parents c7265573341e
children
rev   line source
Chris@0 1 # RDF Namespace document converted into Turtle
Chris@0 2
Chris@0 3 @prefix : <http://www.w3.org/2000/01/rdf-schema#> .
Chris@0 4 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
Chris@0 5
Chris@0 6 rdf:type a rdf:Property;
Chris@0 7 :comment "Indicates membership of a class";
Chris@0 8 :label "type"@en,
Chris@0 9 "type"@fr;
Chris@0 10 :range :Class .
Chris@0 11
Chris@0 12 :Class a :Class;
Chris@0 13 :comment "The concept of Class";
Chris@0 14 :label "Class"@en,
Chris@0 15 "Classe"@fr;
Chris@0 16 :subClassOf :Resource .
Chris@0 17
Chris@0 18 :ConstraintProperty a :Class;
Chris@0 19 :comment "Properties used to express RDF Schema constraints.";
Chris@0 20 :label "ConstraintProperty"@en,
Chris@0 21 "Propri\u00E9t\u00E9Contrainte"@fr;
Chris@0 22 :subClassOf :ConstraintResource,
Chris@0 23 rdf:Property .
Chris@0 24
Chris@0 25 :ConstraintResource a :Class,
Chris@0 26 :Class;
Chris@0 27 :comment "Resources used to express RDF Schema constraints.";
Chris@0 28 :label "ConstraintResource"@en,
Chris@0 29 "RessourceContrainte"@fr;
Chris@0 30 :subClassOf :Resource .
Chris@0 31
Chris@0 32 :Container a :Class;
Chris@0 33 :comment "This represents the set Containers.";
Chris@0 34 :label "Container"@en,
Chris@0 35 "Enveloppe"@fr;
Chris@0 36 :subClassOf :Resource .
Chris@0 37
Chris@0 38 :ContainerMembershipProperty a :Class;
Chris@0 39 :label "ContainerMembershipProperty"@en;
Chris@0 40 :subClassOf rdf:Property .
Chris@0 41
Chris@0 42 :Literal a :Class,
Chris@0 43 :Class;
Chris@0 44 :comment "This represents the set of atomic values, eg. textual strings.";
Chris@0 45 :label "Literal"@en,
Chris@0 46 "Litt\u00E9ral"@fr .
Chris@0 47
Chris@0 48 :Resource a :Class;
Chris@0 49 :comment "The most general class";
Chris@0 50 :label "Resource"@en,
Chris@0 51 "Ressource"@fr .
Chris@0 52
Chris@0 53 :comment a rdf:Property;
Chris@0 54 :comment "Use this for descriptions";
Chris@0 55 :domain :Resource;
Chris@0 56 :label "comment"@en,
Chris@0 57 "commentaire"@fr;
Chris@0 58 :range :Literal .
Chris@0 59
Chris@0 60 :domain a :ConstraintProperty;
Chris@0 61 :comment "This is how we associate a class with properties that its instances can have";
Chris@0 62 :label "domain"@en,
Chris@0 63 "domaine"@fr .
Chris@0 64
Chris@0 65 :isDefinedBy a rdf:Property;
Chris@0 66 :comment "Indicates a resource containing and defining the subject resource.";
Chris@0 67 :domain :Resource;
Chris@0 68 :label "esD\u00E9finiPar"@fr,
Chris@0 69 "isDefinedBy"@en;
Chris@0 70 :range :Resource;
Chris@0 71 :subPropertyOf :seeAlso .
Chris@0 72
Chris@0 73 :label a rdf:Property;
Chris@0 74 :comment "Provides a human-readable version of a resource name.";
Chris@0 75 :domain :Resource;
Chris@0 76 :label "label"@en,
Chris@0 77 "label"@fr;
Chris@0 78 :range :Literal .
Chris@0 79
Chris@0 80 :range a :ConstraintProperty;
Chris@0 81 :comment "Properties that can be used in a schema to provide constraints";
Chris@0 82 :domain rdf:Property;
Chris@0 83 :label "range"@en,
Chris@0 84 "\u00E9tendue"@fr;
Chris@0 85 :range :Class .
Chris@0 86
Chris@0 87 :seeAlso a rdf:Property;
Chris@0 88 :comment "Indicates a resource that provides information about the subject resource.";
Chris@0 89 :domain :Resource;
Chris@0 90 :label "seeAlso"@en,
Chris@0 91 "voirAussi"@fr;
Chris@0 92 :range :Resource .
Chris@0 93
Chris@0 94 :subClassOf a rdf:Property;
Chris@0 95 :comment "Indicates membership of a class";
Chris@0 96 :domain :Class;
Chris@0 97 :label "sousClasseDe"@fr,
Chris@0 98 "subClassOf"@en;
Chris@0 99 :range :Class .
Chris@0 100
Chris@0 101 :subPropertyOf a rdf:Property;
Chris@0 102 :comment "Indicates specialization of properties";
Chris@0 103 :domain rdf:Property;
Chris@0 104 :label "sousPropri\u00E9t\u00E9De"@fr,
Chris@0 105 "subPropertyOf"@en;
Chris@0 106 :range rdf:Property .
Chris@0 107
Chris@0 108 rdf:Alt a :Class;
Chris@0 109 :label "Alt"@en,
Chris@0 110 "Choix"@fr;
Chris@0 111 :subClassOf :Container .
Chris@0 112
Chris@0 113 rdf:Bag a :Class;
Chris@0 114 :label "Bag"@en,
Chris@0 115 "Ensemble"@fr;
Chris@0 116 :subClassOf :Container .
Chris@0 117
Chris@0 118 rdf:Property a :Class;
Chris@0 119 :comment "The concept of a property.";
Chris@0 120 :label "Property"@en,
Chris@0 121 "Propri\u00E9t\u00E9"@fr;
Chris@0 122 :subClassOf :Resource .
Chris@0 123
Chris@0 124 rdf:Seq a :Class;
Chris@0 125 :label "Sequence"@en,
Chris@0 126 "S\u00E9quence"@fr;
Chris@0 127 :subClassOf :Container .
Chris@0 128
Chris@0 129 rdf:Statement a :Class;
Chris@0 130 :comment "This represents the set of reified statements.";
Chris@0 131 :label "D\u00E9claration"@fr,
Chris@0 132 "Statement"@en;
Chris@0 133 :subClassOf :Resource .
Chris@0 134
Chris@0 135 rdf:object a rdf:Property;
Chris@0 136 :domain rdf:Statement;
Chris@0 137 :label "object"@en,
Chris@0 138 "objet"@fr .
Chris@0 139
Chris@0 140 rdf:predicate a rdf:Property;
Chris@0 141 :domain rdf:Statement;
Chris@0 142 :label "predicate"@en,
Chris@0 143 "pr\u00E9dicat"@fr;
Chris@0 144 :range rdf:Property .
Chris@0 145
Chris@0 146 rdf:subject a rdf:Property;
Chris@0 147 :domain rdf:Statement;
Chris@0 148 :label "subject"@en,
Chris@0 149 "sujet"@fr;
Chris@0 150 :range :Resource .
Chris@0 151
Chris@0 152 rdf:value a rdf:Property;
Chris@0 153 :label "object"@en,
Chris@0 154 "value"@fr .
Chris@0 155
Chris@0 156 : :seeAlso <http://www.w3.org/2000/01/rdf-schema-more> .