lib/rdf/vocab/sioc.rb in rdf-vocab-2.1.0 vs lib/rdf/vocab/sioc.rb in rdf-vocab-2.1.1

- old
+ new

@@ -7,10 +7,19 @@ # # Vocabulary for <http://rdfs.org/sioc/ns#> # class SIOC < RDF::StrictVocabulary # end class SIOC < RDF::StrictVocabulary("http://rdfs.org/sioc/ns#") + # Ontology definition + ontology :"http://rdfs.org/sioc/ns#", + :"dc:description" => %(SIOC \(Semantically-Interlinked Online Communities\) is an ontology for describing the information in online communities. +This information can be used to export information from online communities and to link them together. The scope of the application areas that SIOC can be used for includes \(and is not limited to\) weblogs, message boards, mailing lists and chat channels.).freeze, + :"dc:title" => %(SIOC Core Ontology Namespace).freeze, + :"owl:versionInfo" => %(Revision: 1.35).freeze, + :"rdfs:seeAlso" => %(http://rdfs.org/sioc/spec).freeze, + type: ["owl:Ontology".freeze, "owl:Thing".freeze] + # Class definitions term :Community, comment: %(Community is a high-level concept that defines an online community and what it consists of.).freeze, label: "Community".freeze, :"owl:disjointWith" => [%(sioc:Item).freeze, %(sioc:Role).freeze, %(sioc:UserAccount).freeze], @@ -657,17 +666,7 @@ label: "usergroup of".freeze, :"owl:inverseOf" => %(sioc:has_usergroup).freeze, range: "sioc:Space".freeze, :"rdfs:isDefinedBy" => %(sioc:).freeze, type: "owl:ObjectProperty".freeze - - # Extra definitions - term :"", - :"dc:description" => %(SIOC \(Semantically-Interlinked Online Communities\) is an ontology for describing the information in online communities. -This information can be used to export information from online communities and to link them together. The scope of the application areas that SIOC can be used for includes \(and is not limited to\) weblogs, message boards, mailing lists and chat channels.).freeze, - :"dc:title" => %(SIOC Core Ontology Namespace).freeze, - label: "".freeze, - :"owl:versionInfo" => %(Revision: 1.35).freeze, - :"rdfs:seeAlso" => %(http://rdfs.org/sioc/spec).freeze, - type: ["owl:Ontology".freeze, "owl:Thing".freeze] end end