@prefix sioc: <http://rdfs.org/sioc/ns#> .
@prefix wot: <http://xmlns.com/wot/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@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 vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

dcterms:date a owl:DatatypeProperty .

dcterms:title a owl:DatatypeProperty .

dcterms:description a owl:DatatypeProperty .

dcterms:subject a owl:ObjectProperty .

dcterms:references a owl:ObjectProperty .

foaf:OnlineAccount a owl:Class .

foaf:Agent a owl:Class .

foaf:Document a owl:Class .

foaf:depiction a owl:ObjectProperty .

foaf:account a owl:ObjectProperty .

<http://rdfs.org/sioc/ns#> a owl:Ontology , owl:Thing ;
	dcterms:title "SIOC Core Ontology Namespace"@en ;
	owl:versionInfo "Revision: 1.35" ;
	dcterms: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."""@en ;
	rdfs:seeAlso <http://rdfs.org/sioc/spec> .

<http://rdfs.org/sioc/spec> rdfs:label "SIOC Core Ontology Specification" .

sioc:Community a owl:Class ;
	rdfs:label "Community"@en ;
	rdfs:comment "Community is a high-level concept that defines an online community and what it consists of."@en ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:disjointWith sioc:Item , sioc:Role , sioc:UserAccount .

sioc:Container a owl:Class ;
	rdfs:label "Container"@en ;
	rdfs:comment "An area in which content Items are contained."@en ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:disjointWith sioc:Item , sioc:Role , sioc:UserAccount , sioc:Usergroup .

sioc:Forum a owl:Class ;
	rdfs:label "Forum"@en ;
	rdfs:comment "A discussion area on which Posts or entries are made."@en ;
	rdfs:subClassOf sioc:Container ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:Item a owl:Class ;
	rdfs:label "Item"@en ;
	rdfs:comment "An Item is something which can be in a Container."@en ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:disjointWith sioc:Container , sioc:Role , sioc:Space , sioc:UserAccount , sioc:Usergroup .

sioc:Post a owl:Class ;
	rdfs:label "Post"@en ;
	rdfs:comment "An article or message that can be posted to a Forum."@en ;
	rdfs:subClassOf sioc:Item , foaf:Document ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:Role a owl:Class ;
	rdfs:label "Role"@en ;
	rdfs:comment "A Role is a function of a UserAccount within a scope of a particular Forum, Site, etc."@en ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:disjointWith sioc:Container , sioc:Item , sioc:Space , sioc:UserAccount , sioc:Usergroup .

sioc:Space a owl:Class ;
	rdfs:label "Space"@en ;
	rdfs:comment "A Space is a place where data resides, e.g. on a website, desktop, fileshare, etc."@en ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:disjointWith sioc:Item , sioc:Role , sioc:UserAccount , sioc:Usergroup .

sioc:Site a owl:Class ;
	rdfs:label "Site"@en ;
	rdfs:comment "A Site can be the location of an online community or set of communities, with UserAccounts and Usergroups creating Items in a set of Containers. It can be thought of as a web-accessible data Space."@en ;
	rdfs:subClassOf sioc:Space ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:Thread a owl:Class ;
	rdfs:label "Thread"@en ;
	rdfs:comment "A container for a series of threaded discussion Posts or Items."@en ;
	rdfs:subClassOf sioc:Container ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:UserAccount a owl:Class ;
	rdfs:label "User Account"@en ;
	rdfs:comment "A user account in an online community site."@en ;
	rdfs:subClassOf foaf:OnlineAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:disjointWith sioc:Container , sioc:Item , sioc:Role , sioc:Space , sioc:Usergroup .

sioc:Usergroup a owl:Class ;
	rdfs:label "Usergroup"@en ;
	rdfs:comment "A set of UserAccounts whose owners have a common purpose or interest. Can be used for access control purposes."@en ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:disjointWith sioc:Container , sioc:Item , sioc:Role , sioc:Space , sioc:UserAccount .

sioc:about a owl:ObjectProperty ;
	rdfs:label "about"@en ;
	rdfs:comment "Specifies that this Item is about a particular resource, e.g. a Post describing a book, hotel, etc."@en ;
	rdfs:domain sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:account_of a owl:ObjectProperty ;
	rdfs:label "account of"@en ;
	rdfs:comment "Refers to the foaf:Agent or foaf:Person who owns this sioc:UserAccount."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:range foaf:Agent ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:inverseOf foaf:account .

sioc:addressed_to a owl:ObjectProperty ;
	rdfs:label "addressed to"@en ;
	rdfs:comment "Refers to who (e.g. a UserAccount, e-mail address, etc.) a particular Item is addressed to."@en ;
	rdfs:domain sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:administrator_of a owl:ObjectProperty ;
	rdfs:label "administrator of"@en ;
	owl:inverseOf sioc:has_administrator ;
	rdfs:comment "A Site that the UserAccount is an administrator of."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:range sioc:Site ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:attachment a owl:ObjectProperty ;
	rdfs:label "attachment"@en ;
	rdfs:comment "The URI of a file attached to an Item."@en ;
	rdfs:domain sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:avatar a owl:ObjectProperty ;
	rdfs:label "avatar"@en ;
	rdfs:comment "An image or depiction used to represent this UserAccount."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	rdfs:subPropertyOf foaf:depiction .

sioc:container_of a owl:ObjectProperty ;
	rdfs:label "container of"@en ;
	owl:inverseOf sioc:has_container ;
	rdfs:comment "An Item that this Container contains."@en ;
	rdfs:domain sioc:Container ;
	rdfs:range sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:content a owl:DatatypeProperty ;
	rdfs:label "content"@en ;
	rdfs:comment "The content of the Item in plain text format."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:creator_of a owl:ObjectProperty ;
	rdfs:label "creator of"@en ;
	owl:inverseOf sioc:has_creator ;
	rdfs:comment "A resource that the UserAccount is a creator of."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:earlier_version a owl:TransitiveProperty ;
	rdfs:comment "Links to a previous (older) revision of this Item or Post."@en ;
	rdfs:domain sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	rdfs:label "earlier version"@en ;
	rdfs:range sioc:Item ;
	owl:inverseOf sioc:later_version .

sioc:email a owl:ObjectProperty ;
	rdfs:label "email"@en ;
	rdfs:comment "An electronic mail address of the UserAccount."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:email_sha1 a owl:DatatypeProperty ;
	rdfs:label "email sha1"@en ;
	rdfs:comment "An electronic mail address of the UserAccount, encoded using SHA1."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:embeds_knowledge a owl:ObjectProperty ;
	rdfs:label "embeds knowledge"@en ;
	rdfs:comment "This links Items to embedded statements, facts and structured content."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range <http://www.w3.org/2004/03/trix/rdfg-1/Graph> ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:feed a owl:ObjectProperty ;
	rdfs:label "feed"@en ;
	rdfs:comment "A feed (e.g. RSS, Atom, etc.) pertaining to this resource (e.g. for a Forum, Site, UserAccount, etc.)."@en ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:follows a owl:ObjectProperty ;
	rdfs:label "follows"@en ;
	rdfs:comment "Indicates that one UserAccount follows another UserAccount (e.g. for microblog posts or other content item updates)."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:range sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:function_of a owl:ObjectProperty ;
	rdfs:label "function of"@en ;
	owl:inverseOf sioc:has_function ;
	rdfs:comment "A UserAccount that has this Role."@en ;
	rdfs:domain sioc:Role ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_administrator a owl:ObjectProperty ;
	rdfs:label "has administrator"@en ;
	owl:inverseOf sioc:administrator_of ;
	rdfs:comment "A UserAccount that is an administrator of this Site."@en ;
	rdfs:domain sioc:Site ;
	rdfs:range sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_container a owl:ObjectProperty ;
	rdfs:label "has container"@en ;
	owl:inverseOf sioc:container_of ;
	rdfs:comment "The Container to which this Item belongs."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range sioc:Container ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_creator a owl:ObjectProperty ;
	rdfs:label "has creator"@en ;
	owl:inverseOf sioc:creator_of ;
	rdfs:comment "This is the UserAccount that made this resource."@en ;
	rdfs:range sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_discussion a owl:ObjectProperty ;
	rdfs:comment "The discussion that is related to this Item."@en ;
	rdfs:domain sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	rdfs:label "has discussion"@en .

sioc:has_function a owl:ObjectProperty ;
	rdfs:label "has function"@en ;
	owl:inverseOf sioc:function_of ;
	rdfs:comment "A Role that this UserAccount has."@en ;
	rdfs:range sioc:Role ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_host a owl:ObjectProperty ;
	rdfs:label "has host"@en ;
	owl:inverseOf sioc:host_of ;
	rdfs:comment "The Site that hosts this Forum."@en ;
	rdfs:domain sioc:Forum ;
	rdfs:range sioc:Site ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_member a owl:ObjectProperty ;
	rdfs:label "has member"@en ;
	owl:inverseOf sioc:member_of ;
	rdfs:comment "A UserAccount that is a member of this Usergroup."@en ;
	rdfs:domain sioc:Usergroup ;
	rdfs:range sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_moderator a owl:ObjectProperty ;
	rdfs:label "has moderator"@en ;
	rdfs:comment "A UserAccount that is a moderator of this Forum."@en ;
	rdfs:domain sioc:Forum ;
	rdfs:range sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_modifier a owl:ObjectProperty ;
	rdfs:label "has modifier"@en ;
	owl:inverseOf sioc:modifier_of ;
	rdfs:comment "A UserAccount that modified this Item."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_owner a owl:ObjectProperty ;
	rdfs:label "has owner"@en ;
	owl:inverseOf sioc:owner_of ;
	rdfs:comment "A UserAccount that this resource is owned by."@en ;
	rdfs:range sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_parent a owl:ObjectProperty ;
	rdfs:label "has parent"@en ;
	owl:inverseOf sioc:parent_of ;
	rdfs:comment "A Container or Forum that this Container or Forum is a child of."@en ;
	rdfs:domain sioc:Container ;
	rdfs:range sioc:Container ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_reply a owl:ObjectProperty ;
	rdfs:label "has reply"@en ;
	owl:inverseOf sioc:reply_of ;
	rdfs:subPropertyOf sioc:related_to ;
	rdfs:comment "Points to an Item or Post that is a reply or response to this Item or Post."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_scope a owl:ObjectProperty ;
	rdfs:label "has scope"@en ;
	owl:inverseOf sioc:scope_of ;
	rdfs:comment "A resource that this Role applies to."@en ;
	rdfs:domain sioc:Role ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_space a owl:ObjectProperty ;
	rdfs:label "has space"@en ;
	owl:inverseOf sioc:space_of ;
	rdfs:comment "A data Space which this resource is a part of."@en ;
	rdfs:range sioc:Space ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:has_subscriber a owl:ObjectProperty ;
	rdfs:label "has subscriber"@en ;
	owl:inverseOf sioc:subscriber_of ;
	rdfs:comment "A UserAccount that is subscribed to this Container."@en ;
	rdfs:domain sioc:Container ;
	rdfs:range sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	rdfs:seeAlso sioc:feed .

sioc:has_usergroup a owl:ObjectProperty ;
	rdfs:label "has usergroup"@en ;
	owl:inverseOf sioc:usergroup_of ;
	rdfs:comment "Points to a Usergroup that has certain access to this Space."@en ;
	rdfs:domain sioc:Space ;
	rdfs:range sioc:Usergroup ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:host_of a owl:ObjectProperty ;
	rdfs:label "host of"@en ;
	owl:inverseOf sioc:has_host ;
	rdfs:comment "A Forum that is hosted on this Site."@en ;
	rdfs:domain sioc:Site ;
	rdfs:range sioc:Forum ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:id a owl:DatatypeProperty ;
	rdfs:label "id"@en ;
	rdfs:comment "An identifier of a SIOC concept instance. For example, a user ID. Must be unique for instances of each type of SIOC concept within the same site."@en ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:ip_address a owl:DatatypeProperty ;
	rdfs:label "ip address"@en ;
	rdfs:comment "The IP address used when creating this Item. This can be associated with a creator. Some wiki articles list the IP addresses for the creator or modifiers when the usernames are absent."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:last_activity_date a owl:DatatypeProperty ;
	rdfs:label "last activity date"@en ;
	rdfs:comment "The date and time of the last activity associated with a SIOC concept instance, and expressed in ISO 8601 format. This could be due to a reply Post or Comment, a modification to an Item, etc."@en ;
	rdfs:range rdfs:Literal ;
	rdfs:subPropertyOf dcterms:date ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:last_item_date a owl:DatatypeProperty ;
	rdfs:label "last item date"@en ;
	rdfs:comment "The date and time of the last Post (or Item) in a Forum (or a Container), in ISO 8601 format."@en ;
	rdfs:domain sioc:Container ;
	rdfs:range rdfs:Literal ;
	rdfs:subPropertyOf dcterms:date ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:last_reply_date a owl:DatatypeProperty ;
	rdfs:label "last reply date"@en ;
	rdfs:comment "The date and time of the last reply Post or Comment, which could be associated with a starter Item or Post or with a Thread, and expressed in ISO 8601 format."@en ;
	rdfs:range rdfs:Literal ;
	rdfs:subPropertyOf dcterms:date ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:later_version a owl:TransitiveProperty ;
	rdfs:comment "Links to a later (newer) revision of this Item or Post."@en ;
	rdfs:domain sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	rdfs:label "later version"@en ;
	rdfs:range sioc:Item ;
	owl:inverseOf sioc:earlier_version .

sioc:latest_version a owl:ObjectProperty ;
	rdfs:comment "Links to the latest revision of this Item or Post."@en ;
	rdfs:domain sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	rdfs:label "latest version"@en ;
	rdfs:range sioc:Item .

sioc:link a owl:ObjectProperty ;
	rdfs:label "link"@en ;
	rdfs:comment "A URI of a document which contains this SIOC object."@en ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:links_to a owl:ObjectProperty ;
	rdfs:label "links to"@en ;
	rdfs:comment "Links extracted from hyperlinks within a SIOC concept, e.g. Post or Site."@en ;
	rdfs:subPropertyOf dcterms:references ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:member_of a owl:ObjectProperty ;
	rdfs:label "member of"@en ;
	owl:inverseOf sioc:has_member ;
	rdfs:comment "A Usergroup that this UserAccount is a member of."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:range sioc:Usergroup ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:moderator_of a owl:ObjectProperty ;
	rdfs:label "moderator of"@en ;
	owl:inverseOf sioc:has_moderator ;
	rdfs:comment "A Forum that a UserAccount is a moderator of."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:range sioc:Forum ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:modifier_of a owl:ObjectProperty ;
	rdfs:label "modifier of"@en ;
	owl:inverseOf sioc:has_modifier ;
	rdfs:comment "An Item that this UserAccount has modified."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:range sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:name a owl:DatatypeProperty ;
	rdfs:label "name"@en ;
	rdfs:comment "The name of a SIOC concept instance, e.g. a username for a UserAccount, group name for a Usergroup, etc."@en ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:next_by_date a owl:ObjectProperty ;
	rdfs:label "next by date"@en ;
	owl:inverseOf sioc:previous_by_date ;
	rdfs:comment "Next Item or Post in a given Container sorted by date."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:next_version a owl:ObjectProperty ;
	rdfs:label "next version"@en ;
	owl:inverseOf sioc:previous_version ;
	rdfs:comment "Links to the next revision of this Item or Post."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	rdfs:subPropertyOf sioc:later_version .

sioc:note a owl:DatatypeProperty ;
	rdfs:label "note"@en ;
	rdfs:comment "A note associated with this resource, for example, if it has been edited by a UserAccount."@en ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:num_authors a owl:DatatypeProperty ;
	rdfs:label "num authors"@en ;
	rdfs:comment "The number of unique authors (UserAccounts and unregistered posters) who have contributed to this Item, Thread, Post, etc."@en ;
	rdfs:range <http://www.w3.org/2001/XMLSchema#nonNegativeInteger> ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:num_items a owl:DatatypeProperty ;
	rdfs:label "num items"@en ;
	rdfs:comment "The number of Posts (or Items) in a Forum (or a Container)."@en ;
	rdfs:domain sioc:Container ;
	rdfs:range <http://www.w3.org/2001/XMLSchema#nonNegativeInteger> ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:num_replies a owl:DatatypeProperty ;
	rdfs:label "num replies"@en ;
	rdfs:comment "The number of replies that this Item, Thread, Post, etc. has. Useful for when the reply structure is absent."@en ;
	rdfs:range <http://www.w3.org/2001/XMLSchema#nonNegativeInteger> ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:num_threads a owl:DatatypeProperty ;
	rdfs:label "num threads"@en ;
	rdfs:comment "The number of Threads (AKA discussion topics) in a Forum."@en ;
	rdfs:domain sioc:Forum ;
	rdfs:range <http://www.w3.org/2001/XMLSchema#nonNegativeInteger> ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:num_views a owl:DatatypeProperty ;
	rdfs:label "num views"@en ;
	rdfs:comment "The number of times this Item, Thread, UserAccount profile, etc. has been viewed."@en ;
	rdfs:range <http://www.w3.org/2001/XMLSchema#nonNegativeInteger> ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:owner_of a owl:ObjectProperty ;
	rdfs:label "owner of"@en ;
	owl:inverseOf sioc:has_owner ;
	rdfs:comment "A resource owned by a particular UserAccount, for example, a weblog or image gallery."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:parent_of a owl:ObjectProperty ;
	rdfs:label "parent of"@en ;
	owl:inverseOf sioc:has_parent ;
	rdfs:comment "A child Container or Forum that this Container or Forum is a parent of."@en ;
	rdfs:domain sioc:Container ;
	rdfs:range sioc:Container ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:previous_by_date a owl:ObjectProperty ;
	rdfs:label "previous by date"@en ;
	owl:inverseOf sioc:next_by_date ;
	rdfs:comment "Previous Item or Post in a given Container sorted by date."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:previous_version a owl:ObjectProperty ;
	rdfs:label "previous version"@en ;
	owl:inverseOf sioc:next_version ;
	rdfs:comment "Links to the previous revision of this Item or Post."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	rdfs:subPropertyOf sioc:earlier_version .

sioc:related_to a owl:ObjectProperty ;
	rdfs:label "related to"@en ;
	rdfs:comment "Related Posts for this Post, perhaps determined implicitly from topics or references."@en ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:reply_of a owl:ObjectProperty ;
	rdfs:label "reply of"@en ;
	owl:inverseOf sioc:has_reply ;
	rdfs:subPropertyOf sioc:related_to ;
	rdfs:comment "Links to an Item or Post which this Item or Post is a reply to."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:scope_of a owl:ObjectProperty ;
	rdfs:label "scope of"@en ;
	owl:inverseOf sioc:has_scope ;
	rdfs:comment "A Role that has a scope of this resource."@en ;
	rdfs:range sioc:Role ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:sibling a owl:SymmetricProperty ;
	rdfs:label "sibling"@en ;
	rdfs:comment "An Item may have a sibling or a twin that exists in a different Container, but the siblings may differ in some small way (for example, language, category, etc.). The sibling of this Item should be self-describing (that is, it should contain all available information)."@en ;
	rdfs:domain sioc:Item ;
	rdfs:range sioc:Item ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:space_of a owl:ObjectProperty ;
	rdfs:label "space of"@en ;
	owl:inverseOf sioc:has_space ;
	rdfs:comment "A resource which belongs to this data Space."@en ;
	rdfs:domain sioc:Space ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:subscriber_of a owl:ObjectProperty ;
	rdfs:label "subscriber of"@en ;
	owl:inverseOf sioc:has_subscriber ;
	rdfs:comment "A Container that a UserAccount is subscribed to."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:range sioc:Container ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	rdfs:seeAlso sioc:feed .

sioc:topic a owl:ObjectProperty ;
	rdfs:label "topic"@en ;
	rdfs:comment "A topic of interest, linking to the appropriate URI, e.g. in the Open Directory Project or of a SKOS category."@en ;
	rdfs:subPropertyOf dcterms:subject ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:usergroup_of a owl:ObjectProperty ;
	rdfs:label "usergroup of"@en ;
	owl:inverseOf sioc:has_usergroup ;
	rdfs:comment "A Space that the Usergroup has access to."@en ;
	rdfs:domain sioc:Usergroup ;
	rdfs:range sioc:Space ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> .

sioc:User a owl:DeprecatedClass ;
	rdfs:label "User"@en ;
	rdfs:comment "UserAccount is now preferred. This is a deprecated class for a User in an online community site."@en ;
	owl:equivalentClass sioc:UserAccount ;
	rdfs:subClassOf foaf:OnlineAccount ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:disjointWith sioc:Container , sioc:Item , sioc:Role , sioc:Space , sioc:Usergroup ;
	owl:versionInfo "This class is deprecated. Use sioc:UserAccount from the SIOC ontology instead." .

sioc:title a owl:DeprecatedProperty ;
	rdfs:label "title"@en ;
	a owl:DatatypeProperty ;
	rdfs:comment "This is the title (subject line) of the Post. Note that for a Post within a threaded discussion that has no parents, it would detail the topic thread."@en ;
	rdfs:domain sioc:Post ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:versionInfo "This property is deprecated. Use dcterms:title from the Dublin Core ontology instead." .

sioc:content_encoded a owl:DeprecatedProperty ;
	rdfs:label "content encoded"@en ;
	a owl:DatatypeProperty ;
	rdfs:comment "The encoded content of the Post, contained in CDATA areas."@en ;
	rdfs:domain sioc:Post ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:versionInfo "This property is deprecated. Use content:encoded from the RSS 1.0 content module instead." .

sioc:created_at a owl:DeprecatedProperty ;
	rdfs:label "created at"@en ;
	a owl:DatatypeProperty ;
	rdfs:comment "When this was created, in ISO 8601 format."@en ;
	rdfs:domain sioc:Post ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:versionInfo "This property is deprecated. Use dcterms:created from the Dublin Core ontology instead." .

sioc:description a owl:DeprecatedProperty ;
	rdfs:label "description"@en ;
	a owl:DatatypeProperty ;
	rdfs:comment "The content of the Post."@en ;
	rdfs:domain sioc:Post ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:versionInfo "This property is deprecated. Use sioc:content or other methods (AtomOwl, content:encoded from RSS 1.0, etc.) instead." .

sioc:first_name a owl:DeprecatedProperty ;
	rdfs:label "first name"@en ;
	a owl:DatatypeProperty ;
	rdfs:comment "First (real) name of this User. Synonyms include given name or christian name."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:versionInfo "This property is deprecated. Use foaf:name or foaf:firstName from the FOAF vocabulary instead." .

sioc:group_of a owl:DeprecatedProperty ;
	rdfs:label "group of"@en ;
	a owl:ObjectProperty ;
	owl:inverseOf sioc:has_group ;
	owl:versionInfo "This property has been renamed. Use sioc:usergroup_of instead." .

sioc:has_group a owl:DeprecatedProperty ;
	rdfs:label "has group"@en ;
	a owl:ObjectProperty ;
	owl:inverseOf sioc:group_of ;
	owl:versionInfo "This property has been renamed. Use sioc:has_usergroup instead." .

sioc:has_part a owl:DeprecatedProperty ;
	rdfs:label "has part"@en ;
	a owl:ObjectProperty ;
	owl:inverseOf sioc:part_of ;
	rdfs:comment "An resource that is a part of this subject."@en ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:versionInfo "This property is deprecated. Use dcterms:hasPart from the Dublin Core ontology instead." .

sioc:last_name a owl:DeprecatedProperty ;
	rdfs:label "last name"@en ;
	a owl:DatatypeProperty ;
	rdfs:comment "Last (real) name of this user. Synonyms include surname or family name."@en ;
	rdfs:domain sioc:UserAccount ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:versionInfo "This property is deprecated. Use foaf:name or foaf:surname from the FOAF vocabulary instead." .

sioc:modified_at a owl:DeprecatedProperty ;
	rdfs:label "modified at"@en ;
	a owl:DatatypeProperty ;
	rdfs:comment "When this was modified, in ISO 8601 format."@en ;
	rdfs:domain sioc:Post ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:versionInfo "This property is deprecated. Use dcterms:modified from the Dublin Core ontology instead." .

sioc:part_of a owl:DeprecatedProperty ;
	rdfs:label "part of"@en ;
	a owl:ObjectProperty ;
	owl:inverseOf sioc:has_part ;
	rdfs:comment "A resource that the subject is a part of."@en ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:versionInfo "This property is deprecated. Use dcterms:isPartOf from the Dublin Core ontology instead." .

sioc:reference a owl:DeprecatedProperty ;
	rdfs:label "reference"@en ;
	a owl:ObjectProperty ;
	rdfs:comment "Links either created explicitly or extracted implicitly on the HTML level from the Post."@en ;
	rdfs:domain sioc:Post ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:versionInfo "Renamed to sioc:links_to." .

sioc:subject a owl:DeprecatedProperty ;
	rdfs:label "subject"@en ;
	a owl:DatatypeProperty ;
	rdfs:comment "Keyword(s) describing subject of the Post."@en ;
	rdfs:domain sioc:Post ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
	owl:versionInfo "This property is deprecated. Use dcterms:subject from the Dublin Core ontology for text keywords and sioc:topic if the subject can be represented by a URI instead." .
