Copyright © 2004-2018 by Data Science Institute (formerly DERI), NUI Galway.
Development of SIOC has been supported by Science Foundation Ireland under grant numbers SFI/02/CE1/I131, SFI/08/CE/I1380 and SFI/12/RC/2289.
This work is licensed under a Creative Commons License. This copyright applies to the SIOC Core Ontology Specification and accompanying documentation and does not apply to SIOC data formats, ontology terms, or technology.
Regarding underlying technology, SIOC relies heavily on W3C's RDF technology, an open Web standard that can be freely used by anyone.
This visual layout and structure of the specification was adapted from the FOAF Vocabulary Specification by Dan Brickley and Libby Miller.
The SIOC (Semantically-Interlinked Online Communities) Core Ontology provides the main concepts and properties required to describe information from online communities (e.g., message boards, wikis, weblogs, etc.) on the Semantic Web. This document contains a detailed description of the SIOC Core Ontology.
NOTE: This section describes the status of this document at the time of its publication. Other documents may supersede this document.
This specification is an evolving document. This document is generated by combining a machine-readable SIOC Core Ontology Namespace expressed in RDF/XML with a specification template and a set of per-term documents.
Authors welcome suggestions on the SIOC Core Ontology Namespace and this document. Please send comments to the SIOC developers' mailing list (SIOC-Dev), public archives are available. This document may be updated or added to based on implementation experience, but no commitment is made by the authors regarding future updates.
Online community sites (weblogs, message boards, wikis, etc.) have replaced the traditional means of keeping a community informed via libraries and publishing. They are a valuable source of information and quite often it is a community site where you will end up when searching for some information. But there is a problem: online community sites are like islands without bridges connecting them. You may find some information in a forum, but not know that there are missing pieces of related information that can be found on other community sites.
Semantically-Interlinked Online Communities, or SIOC, is an attempt to link online community sites, to use Semantic Web technologies to describe the information that communities have about their structure and contents, and to find related information and new connections between content items and other community objects. SIOC is based around the use of machine-readable information provided by these sites.
The SIOC Core Ontology described in this document is the foundation for Semantically-Interlinked Online Communities. Developers can use this ontology to express information contained within community sites in a simple and extensible way.
More information about the tools and projects using SIOC can be found on the SIOC Project page (http://sioc-project.org/).
The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.
Namespace URIs of the general form "http://www.example.com/" represent some application-dependent or context-dependent URI as defined in RFC 2396.
The XML Namespace URIs that MUST be used by implementations of this specification are:
An alphabetical index of SIOC terms, by class (concepts) and by property (relationships, attributes), are given below. All the terms are hyperlinked to their detailed description for quick reference.
Classes: | Community | Container | Forum | Item | Post | Role | Site | Space | Thread | UserAccount | Usergroup |
Properties: | about | account_of | addressed_to | administrator_of | attachment | avatar | container_of | content | creator_of | delivered_at | discussion_of | earlier_version | email | email_sha1 | embeds_knowledge | feed | follows | function_of | generator | has_administrator | has_container | has_creator | has_discussion | has_function | has_host | has_member | has_moderator | has_modifier | has_owner | has_parent | has_reply | has_scope | has_space | has_subscriber | has_usergroup | host_of | id | ip_address | last_activity_date | last_item_date | last_reply_date | later_version | latest_version | likes | link | links_to | member_of | mentions | moderator_of | modifier_of | name | next_by_date | next_version | note | num_authors | num_items | num_replies | num_threads | num_views | owner_of | parent_of | previous_by_date | previous_version | read_at | related_to | reply_of | respond_to | scope_of | shared_by | sibling | space_of | subscriber_of | topic | usergroup_of |
The SIOC Core Ontology definitions presented here are written using a computer language (RDF/OWL) that makes it easy for software to process some basic facts about the terms in the SIOC Core Ontology, and consequently about the things described in SIOC documents. A SIOC document, unlike a traditional Web page, can be combined with other SIOC and RDF documents to create a unified database of information.
Here is a very basic document describing a blog entry:
<sioc:Post rdf:about="http://johnbreslin.com/blog/2006/09/07/creating-connections-between-discussion-clouds-with-sioc/"> <dcterms:title>Creating connections between discussion clouds with SIOC</dcterms:title> <dcterms:created>2006-09-07T09:33:30Z</dcterms:created> <sioc:has_container rdf:resource="http://johnbreslin.com/blog/index.php?sioc_type=site#weblog"/> <sioc:has_creator> <sioc:UserAccount rdf:about="http://johnbreslin.com/blog/author/cloud/" rdfs:label="Cloud"> <rdfs:seeAlso rdf:resource="http://johnbreslin.com/blog/index.php?sioc_type=user&sioc_id=1"/> </sioc:UserAccount> </sioc:has_creator> <sioc:content>SIOC provides a unified vocabulary for content and interaction description: a semantic layer that can co-exist with existing discussion platforms.</sioc:content> <sioc:topic rdfs:label="Semantic Web" rdf:resource="http://johnbreslin.com/blog/category/semantic-web/"/> <sioc:topic rdfs:label="Blogs" rdf:resource="http://johnbreslin.com/blog/category/blogs/"/> <sioc:has_reply> <sioc:Post rdf:about="http://johnbreslin.com/blog/2006/09/07/creating-connections-between-discussion-clouds-with-sioc/#comment-123928"> <rdfs:seeAlso rdf:resource="http://johnbreslin.com/blog/index.php?sioc_type=comment&sioc_id=123928"/> </sioc:Post> </sioc:has_reply> </sioc:Post>
This brief example introduces the basics of SIOC. It says:
sioc:Post
object identified as http://johnbreslin.com/blog/2006/09/07/creating-connections-between-discussion-clouds-with-sioc/
which has the following properties:
dcterms:title
property with value "Creating connections between discussion clouds with SIOC"dcterms:created
property with ISO-8601 formatted date value 2006-09-07T09:33:30Z
sioc:has_container
relationship with an object identified as http://johnbreslin.com/blog/index.php?sioc_type=site#weblog
indicates a sioc:Forum
object (a weblog in this case) that this post belongs tosioc:has_creator
relationship with a sioc:UserAccount
object labelled "Cloud" and identified as http://johnbreslin.com/blog/author/cloud/
with an rdfs:seeAlso
property pointing to more SIOC information about this object located at http://johnbreslin.com/blog/index.php?sioc_type=user&sioc_id=1
sioc:content
property with a text-only representation of the contentsioc:topic
properties indicating topics: "Semantic Web
" identified as http://johnbreslin.com/blog/category/semantic-web/
and "Blogs
" identified as http://johnbreslin.com/blog/category/blogs/
sioc:has_reply
relationship (pointing to replies and comments of a post) with a sioc:Post
object identified as http://johnbreslin.com/blog/2006/09/07/creating-connections-between-discussion-clouds-with-sioc/#comment-123928
with an rdfs:seeAlso
property pointing to more SIOC information about this reply located at http://johnbreslin.com/blog/index.php?sioc_type=comment&sioc_id=123928
In other words:
sioc:content
.http://johnbreslin.com/blog/index.php?sioc_type=user&sioc_id=1
http://johnbreslin.com/blog/index.php?sioc_type=comment&sioc_id=123928
This simple example uses only two classes of SIOC objects: sioc:Post
and sioc:UserAccount
. There are other classes in SIOC used to describe more information about forums, sites, communities and other objects.
SIOC documents may use other existing ontologies to enrich the information described. Additional information about the creator of the post can be described using the FOAF Vocabulary. Rich content of the post (e.g., HTML representation) can be described using AtomOwl or the RSS 1.0 Content Module. For more information on classes and properties from other vocabularies that are often used together with SIOC, see the section on external classes and properties.
SIOC is managed as a collaborative effort amongst members of the Unit for Social Semantics at the Data Science Institute, NUI Galway (funded by SFI) and Semantic Web developers on the SIOC developers' mailing list (SIOC-Dev). The name "SIOC" is an acronym for "Semantically-Interlinked Online Communities", and is coincidentally the Irish word for "frost".
More resources on SIOC are available on the SIOC Project page.
The SIOC-Dev mailing list is the main discussion list for questions about SIOC. There are also two active and friendly IRC channels on freenode: #sioc (for SIOC) and #swig (for the Semantic Web Interest Group). There is also a wiki for SIOC at wiki.sioc-project.org.
The remainder of this specification describes how to publish and interpret descriptions such as these on the Web, using RDF for syntax (file format) and terms from SIOC. It introduces a number of classes (concepts such as "Post") and properties (relationship and attribute types such as "has_creator" or "content").
The specific contents of the SIOC Core Ontology are detailed in the SIOC Core Ontology Namespace document.
Related publications:
This document presents SIOC as a Semantic Web vocabulary or ontology. It describes the SIOC Core Ontology and the terms (RDF classes and properties) that constitute it, so that Semantic Web applications can use those terms in a variety of RDF-compatible document formats and applications. The SIOC Core Ontology is straightforward, pragmatic and designed to allow simultaneous deployment and extension, and is therefore intended for wide scale use.
The SIOC ontology is identified by the namespace URI "http://rdfs.org/sioc/ns#".
Revisions and extensions of SIOC are conducted through edits to the namespace document, which by convention is published on the Web at the namespace URI.
The properties and types defined here provide some basic concepts for use in SIOC descriptions. Other vocabularies (e.g. the Dublin Core metadata terms for simple bibliographic description, FOAF, RSS 1.0, etc.) can also be mixed in with SIOC terms, as can local extensions. SIOC is designed to be extended, and some modules have been added (see below).
SIOC modules are used to extend the available terms and to avoid making the SIOC Core Ontology too complex and unreadable. At present SIOC has 3 modules: Access, Services and Types.
Sites often have a need to express information about access rights such as users' permissions and status of content Items. SIOC Access module contains classes and properties that allow to express this information. User access rights are modeled using Roles assigned to a UserAccount and Permissions on content items associated with these Roles.
Classes defined within this module: Permission, Status.
A full definition of these classes and related properties can be found in the namespace of the SIOC Access module at http://rdfs.org/sioc/access.
During the development of the SIOC ontology, the addition of multiple sub-classes for different types of Forums and Posts was starting to become unwieldy. Therefore, it was decided to move these sub-classes and sub-properties into a "Types" module of SIOC. Some of the SIOC Core Ontology classes and corresponding SIOC Types Module sub-classes include:
Full descriptions for the identified types are given in the SIOC Types Module at http://rdfs.org/sioc/types. Rather than restrict users to our pre-defined types, we also encourage flexibility whereby people can define their own sub-types of SIOC classes.
Community sites typically publish web service interfaces for programmatic search and content management services (typically SOAP and/or RESTian). These services may be generic in nature (with standardised signatures covering input and output message formats) or service specific (where signatures are unique to specific offerings, à la current Web 2.0 API usage patterns).
A sioc:Service allows us to indicate that a web service is associated with (located on) a sioc:Site or a part of it. This class and its properties are defined in the SIOC Services Module at http://rdfs.org/sioc/services.
This module provides a simple way to tell others about a web service, and should not be confused with web service definitions that define the details of a web service. A sioc:service_definition property can be used to relate a sioc:Service to its full web service definition (e.g., in WSDL).
SIOC depends heavily on W3C's standards work, specifically on XML, XML Namespaces, RDF, and OWL. All SIOC documents must be valid RDF documents.
This specification contributes an ontology, "SIOC", to the Semantic Web, specifying it using W3C's Resource Description Framework (RDF). As such, SIOC adopts by reference a syntax (using XML), a data model (RDF graphs), and a mathematically-grounded definition for the rules that underpin the RDF design.
SIOC is an application of the Resource Description Framework (RDF) because the subject area we are describing - online communities - has so many competing requirements that a standalone format would not capture them or would lead to describing these requirements in a number of incompatible formats. By using RDF, SIOC gains a powerful extensibility mechanism, allowing SIOC-based descriptions to be mixed with claims made in any other RDF vocabulary.
SIOC as an ontology cannot incorporate everything we might want to talk about that is related to communities, about users in these communities, and about the content that users have created, or it would be as large as a full-sized dictionary. Instead of covering all topics within SIOC itself, we describe the basic topics and build into a larger framework - RDF - that allows us to take advantage of work elsewhere on more specific description vocabularies.
RDF provides SIOC with a way to mix together different descriptive vocabularies in a consistent way. Vocabularies can be created by different communities and groups as appropriate and mixed together as required, without needing any centralised agreement on how terms from different vocabularies can be written down in XML.
RDF represents knowledge as a simple set of assertions or triples. The basic model of RDF is a graph formed by combining multiple triples together. For more information on RDF and how to work with it see "What is RDF?" and "Where do I find tools for Semantic Web development?" in the Semantic Web FAQ.
SIOC introduces the following classes and properties. See the SIOC Core Ontology Namespace in RDFS/OWL for more details.
Community - Community is a high-level concept that defines an online community and what it consists of.
A Community may consist of different types of objects (people, sites, etc.) joined by a common topic, interests or goals.
A Community is different from a Site: a Site describes a single community site whilst a Community can consist of a number of Sites and other resources described in SIOC or other ontologies (e.g. FOAF). Community is linked to its constituent parts using the property dcterms:hasPart.
Container - An area in which content Items are contained.
Container is a high-level concept used to group content Items together. The relationships between a Container and the Items that belong to it are described using sioc:container_of and sioc:has_container properties. A hierarchy of Containers can be defined in terms of parents and children using sioc:has_parent and sioc:parent_of.
Subclasses of Container can be used to further specify typed groupings of Items in online communities. Forum, a subclass of Container and one of the core classes in SIOC, is used to describe an area on a community Site (e.g. a forum or weblog) on which Posts are made. The SIOC Types Ontology Module contains additional, more specific subclasses of sioc:Container.
Forum - A discussion area on which Posts or entries are made.
sub-class-of: | sioc:Container |
---|---|
in-range-of: | sioc:moderator_of |
in-domain-of: | sioc:has_moderator sioc:num_threads |
Forums can be thought of as channels or discussion area on which Posts are made. A Forum can be linked to the Site that hosts it. Forums will usually discuss a certain topic or set of related topics, or they may contain discussions entirely devoted to a certain community group or organisation. A Forum will have a moderator who can veto or edit posts before or after they appear in the Forum.
Forums may have a set of subscribed UserAccounts who are notified when new Posts are made. The hierarchy of Forums can be defined in terms of parents and children, allowing the creation of structures conforming to topic categories as defined by the Site administrator. Examples of Forums include mailing lists, message boards, Usenet newsgroups and weblogs.
The SIOC Types Ontology Module defines come more specific subclasses of sioc:Forum.
Item - An Item is something which can be in a Container.
Item is a high-level concept for container items. It has subclasses that further specify different types of Items. One of these subclasses (which plays an important role in SIOC) is sioc:Post, used to describe articles or messages created within online community Sites. The SIOC Types Ontology Module describes additional, more specific subclasses of sioc:Item.
Items can be contained within Containers.
Post - An article or message that can be posted to a Forum.
sub-class-of: | sioc:Item foaf:Document |
---|
A Post is an article or message posted by a UserAccount to a Forum. A series of Posts may be threaded if they share a common subject and are connected by reply or by date relationships. Posts will have content and may also have attached files, which can be edited or deleted by the Moderator of the Forum that contains the Post.
The SIOC Types Ontology Module describes some additional, more specific subclasses of sioc:Post.
Role - A Role is a function of a UserAccount within a scope of a particular Forum, Site, etc.
in-range-of: | sioc:has_function sioc:scope_of |
---|---|
in-domain-of: | sioc:function_of sioc:has_scope |
Roles are used to express functions or access control privileges that UserAccounts may have.
Site - 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.
sub-class-of: | sioc:Space |
---|---|
in-range-of: | sioc:administrator_of sioc:has_host |
in-domain-of: | sioc:has_administrator sioc:host_of |
A Site is the location of an online community or set of communities, with UserAccounts in Usergroups creating content therein. While an individual Forum or group of Forums are usually hosted on a centralised Site, in the future the concept of a "site" may be extended (for example, a topic Thread could be formed by Posts in a distributed Forum on a peer-to-peer environment Space).
Space - A Space is a place where data resides, e.g. on a website, desktop, fileshare, etc.
in-range-of: | sioc:has_space sioc:usergroup_of |
---|---|
in-domain-of: | sioc:has_usergroup sioc:space_of |
A Space is defined as being a place where data resides. It can be the location for a set of Containers of content Items, e.g. on a Site, personal desktop, shared filespace, etc. Any data object that resides on a particular Space can be linked to it using the sioc:has_space property.
Thread - A container for a series of threaded discussion Posts or Items.
sub-class-of: | sioc:Container |
---|
Mailing lists, forums and blogs on community sites usually employ some threaded discussion methods, whereby discussions are initialised by a certain user and replied to by others. The Thread container is used to group Posts from a single discussion thread together via the sioc:container_of property, especially where a sioc:has_reply / reply_of structure is absent.
User Account - A user account in an online community site.
Please note that User was recently deprecated in favour of UserAccount.
A UserAccount is an online account of a member of an online community. It is connected to Items and Posts that a UserAccount creates or edits, to Containers and Forums that it is subscribed to or moderates and to Sites that it administers. UserAccounts can be grouped for purposes of allowing access to certain Forums or enhanced community site features (weblogs, webmail, etc.).
A foaf:Person will normally hold a registered UserAccount on a Site (through the property foaf:account), and will use this account to create content and interact with the community. The foaf:Person can hold multiple sioc:UserAccounts.
sioc:UserAccount describes properties of an online account, and is used in combination with a foaf:Person (using the property sioc:account_of) which describes information about the individual themselves.
Usergroup - A set of UserAccounts whose owners have a common purpose or interest. Can be used for access control purposes.
in-range-of: | sioc:has_usergroup sioc:member_of |
---|---|
in-domain-of: | sioc:has_member sioc:usergroup_of |
A Usergroup is a set of members or UserAccounts of a community who have a common Role, purpose or interest. While a group of UserAccounts may be a single community that is linked to a certain Forum, they may also be a set of UserAccounts that perform a certain Role, for example, moderators or administrators.
about - Specifies that this Item is about a particular resource, e.g. a Post describing a book, hotel, etc.
OWL Type: | ObjectProperty |
---|---|
Domain: | sioc:Item |
account of - Refers to the foaf:Agent or foaf:Person who owns this sioc:UserAccount.
Inverse: | foaf:account |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:UserAccount |
Range: | foaf:Agent |
Links a sioc:UserAccount to a foaf:Person whom it belongs to. The reverse direction - i.e. linking a foaf:Person to a UserAccount that it owns or holds - can be described using the foaf:account property.
addressed to - Refers to who (e.g. a UserAccount, e-mail address, etc.) a particular Item is addressed to.
OWL Type: | ObjectProperty |
---|---|
Domain: | sioc:Item |
administrator of - A Site that the UserAccount is an administrator of.
Inverse: | sioc:has_administrator |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:UserAccount |
Range: | sioc:Site |
attachment - The URI of a file attached to an Item.
OWL Type: | ObjectProperty |
---|---|
Domain: | sioc:Item |
avatar - An image or depiction used to represent this UserAccount.
OWL Type: | ObjectProperty |
---|---|
sub-property-of: | foaf:depiction |
Domain: | sioc:UserAccount |
container of - An Item that this Container contains.
Inverse: | sioc:has_container |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | dcterms:hasPart |
Domain: | sioc:Container |
Range: | sioc:Item |
Containers and Forums may contain Items or Posts, and this property is used to link to these.
content - The content of the Item in plain text format.
OWL Type: | DatatypeProperty |
---|---|
Domain: | sioc:Item |
Range: | rdfs:Literal |
This property is for a plain-text rendering of the content of an Item. Rich content (e.g. HTML, wiki markup, BBCode, etc.) can be described using the Content class from AtomOwl or the content:encoded property from the RSS 1.0 Content Module.
creator of - A resource that the UserAccount is a creator of.
Inverse: | sioc:has_creator |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:UserAccount |
Links to a UserAccount that an Item was created by. Being a creator of an Item is not a Role.
delivered at - When this was delivered, in ISO 8601 format.
OWL Type: | DatatypeProperty |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Item |
Range: | rdfs:Literal |
discussion of - The Item that this discussion is about.
Inverse: | sioc:has_discussion |
---|---|
OWL Type: | ObjectProperty |
Range: | sioc:Item |
earlier version - Links to a previous (older) revision of this Item or Post.
Inverse: | sioc:later_version |
---|---|
OWL Type: | TransitiveProperty |
Domain: | sioc:Item |
Range: | sioc:Item |
The earlier_version property links any sioc:Item to any earlier (i.e. older) version. This is a transitive property.
The related non-transitive property, that links any sioc:Item to its immediately older version is previous_version. previous_version is a subproperty of earlier_version.
email - An electronic mail address of the UserAccount.
OWL Type: | ObjectProperty |
---|---|
Domain: | sioc:UserAccount |
Whereas a foaf:Person can hold multiple e-mail addresses, a sioc:UserAccount is usually associated with a primary e-mail address represented using sioc:email or sioc:email_sha1.
Unlike foaf:mbox / foaf:mbox_sha1sum for foaf:Person, this property is not an inverse functional property as one e-mail address can be associated with multiple unique sioc:UserAccounts that should not be smushed together.
email sha1 - An electronic mail address of the UserAccount, encoded using SHA1.
OWL Type: | DatatypeProperty |
---|---|
Domain: | sioc:UserAccount |
Range: | rdfs:Literal |
Remember to include the "mailto:" prefix, but no trailing whitespace, when computing a sioc:email_sha1 property.
embeds knowledge - This links Items to embedded statements, facts and structured content.
OWL Type: | ObjectProperty |
---|---|
Domain: | sioc:Item |
Range: | http://www.w3.org/2004/03/trix/rdfg-1/:Graph |
feed - A feed (e.g. RSS, Atom, etc.) pertaining to this resource (e.g. for a Forum, Site, UserAccount, etc.).
OWL Type: | ObjectProperty |
---|
follows - Indicates that one UserAccount follows another UserAccount (e.g. for microblog posts or other content item updates).
OWL Type: | ObjectProperty |
---|---|
Domain: | sioc:UserAccount |
Range: | sioc:UserAccount |
function of - A UserAccount that has this Role.
Inverse: | sioc:has_function |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Role |
generator - A URI for the application used to generate this Item.
OWL Type: | ObjectProperty |
---|---|
Domain: | sioc:Item |
has administrator - A UserAccount that is an administrator of this Site.
Inverse: | sioc:administrator_of |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Site |
Range: | sioc:UserAccount |
has container - The Container to which this Item belongs.
Inverse: | sioc:container_of |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | dcterms:partOf |
Domain: | sioc:Item |
Range: | sioc:Container |
has creator - This is the UserAccount that made this resource.
Inverse: | sioc:creator_of |
---|---|
OWL Type: | ObjectProperty |
Range: | sioc:UserAccount |
The has_creator property links an Item to its author's UserAccount. Thus, we can follow the link from the Item to the creator and locate the other Items created by the same UserAccount. Being the creator of an Item is not a Role.
The community can be seen as a network of Items with UserAccounts linked to each Item, and there is also a network of other Items created by a given UserAccount stemming from there. We can use this information in community sites to locate more contributions by the given author.
has discussion - A discussion that is related to this Item. The discussion can be anything, for example, a sioc:Forum or sioc:Thread, a sioct:WikiArticle or simply a foaf:Document.
Inverse: | sioc:discussion_of |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Item |
The has_discussion property links any sioc:Item to a related discussion. The discussion can be anything, for instance a sioc:Forum, a sioct:WikiArticle or simply a foaf:Document.
has function - A Role that this UserAccount has.
Inverse: | sioc:function_of |
---|---|
OWL Type: | ObjectProperty |
Range: | sioc:Role |
Links a UserAccount to a Role that this UserAccount has (it is a function of this UserAccount). UserAccounts can have many different Roles in different Forums.
has host - The Site that hosts this Container.
Inverse: | sioc:host_of |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | sioc:has_space |
Domain: | sioc:Container |
Range: | sioc:Site |
has member - A UserAccount that is a member of this Usergroup.
Inverse: | sioc:member_of |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Usergroup |
Range: | sioc:UserAccount |
has moderator - A UserAccount that is a moderator of this Forum.
Inverse: | sioc:moderator_of |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Forum |
Range: | sioc:UserAccount |
has modifier - A UserAccount that modified this resource (e.g. Item, Container, Space).
Inverse: | sioc:modifier_of |
---|---|
OWL Type: | ObjectProperty |
Range: | sioc:UserAccount |
This property links a resource to the UserAccount that modified it (e.g. contributed new content to it after its creation).
has owner - A UserAccount that this resource is owned by.
Inverse: | sioc:owner_of |
---|---|
OWL Type: | ObjectProperty |
Range: | sioc:UserAccount |
has parent - A Container or Forum that this Container or Forum is a child of.
Inverse: | sioc:parent_of |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | dcterms:partOf |
Domain: | sioc:Container |
Range: | sioc:Container |
has reply - Points to an Item or Post that is a reply or response to this Item or Post.
Inverse: | sioc:reply_of |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | sioc:related_to |
Domain: | sioc:Item |
Range: | sioc:Item |
The has_reply property links an Item to other follow-up content Items made on the same topic. Use of this property can result in a single branch of replies from the original Item, or in a tree-like structure with branches forking at different Items along the way.
For example, in Forums such as mailing lists, message boards, etc., has_reply will be used to link a starter Post to any Post that is made in response to the original message. Also, has_reply can be used to connect any type of content Item (images, videos, etc.) to any Item or text Post that is made in response.
has scope - A resource that this Role applies to.
Inverse: | sioc:scope_of |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Role |
has space - A data Space which this resource is a part of.
Inverse: | sioc:space_of |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | dcterms:partOf |
Range: | sioc:Space |
has subscriber - A UserAccount that is subscribed to this Container.
Inverse: | sioc:subscriber_of |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Container |
Range: | sioc:UserAccount |
has usergroup - Points to a Usergroup that has certain access to this Space.
Inverse: | sioc:usergroup_of |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Space |
Range: | sioc:Usergroup |
host of - A Container that is hosted on this Site.
Inverse: | sioc:has_host |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | sioc:space_of |
Domain: | sioc:Site |
Range: | sioc:Container |
id - 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.
OWL Type: | DatatypeProperty |
---|---|
Range: | rdfs:Literal |
ip address - The IP address used when creating this Item, UserAccount, etc. This can be associated with a creator. Some wiki articles list the IP addresses for the creator or modifiers when the usernames are absent.
OWL Type: | DatatypeProperty |
---|---|
Range: | rdfs:Literal |
last activity date - 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.
OWL Type: | DatatypeProperty |
---|---|
sub-property-of: | dcterms:date |
Range: | rdfs:Literal |
last item date - The date and time of the last Post (or Item) in a Forum (or a Container), in ISO 8601 format.
OWL Type: | DatatypeProperty |
---|---|
sub-property-of: | dcterms:date |
Domain: | sioc:Container |
Range: | rdfs:Literal |
last reply date - 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.
OWL Type: | DatatypeProperty |
---|---|
sub-property-of: | dcterms:date |
Range: | rdfs:Literal |
later version - Links to a later (newer) revision of this Item or Post.
Inverse: | sioc:earlier_version |
---|---|
OWL Type: | TransitiveProperty |
Domain: | sioc:Item |
Range: | sioc:Item |
The later_version property links any sioc:Item to any later (i.e. newer) version. This is a transitive property.
The related non-transitive property, that links any sioc:Item to its immediately newer version is next_version. next_version is a subproperty of later_version.
latest version - Links to the latest revision of this Item or Post.
OWL Type: | ObjectProperty |
---|---|
Domain: | sioc:Item |
Range: | sioc:Item |
The latest_version property links a sioc:Item to its latest version. This can be used to link a previous version of an item (e.g. a wiki page) to its latest version.
likes - Used to indicate some form of endorsement by a UserAccount or Agent of an Item, Container, Space, UserAccount, etc.
OWL Type: | ObjectProperty |
---|
link - A URI of a document which contains this SIOC object.
OWL Type: | ObjectProperty |
---|
Links to a URI of a document where this SIOC object is located. Usually sioc:link is not needed because it can be assigned directly as a URI of this SIOC object. It is recommended that its usage is limited only to those cases where a document's URI may not be assigned to the object itself.
For example, this may occur in a page that contains a number of objects (e.g. comments to a blog post) that can not be addressed individually.
links to - Links extracted from hyperlinks within a SIOC concept, e.g. Post or Site.
OWL Type: | ObjectProperty |
---|---|
sub-property-of: | dcterms:references |
member of - A Usergroup that this UserAccount is a member of.
Inverse: | sioc:has_member |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:UserAccount |
Range: | sioc:Usergroup |
mentions - Refers to a UserAccount that a particular Item mentions.
OWL Type: | ObjectProperty |
---|---|
Domain: | sioc:Item |
Range: | sioc:UserAccount |
moderator of - A Forum that a UserAccount is a moderator of.
Inverse: | sioc:has_moderator |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:UserAccount |
Range: | sioc:Forum |
modifier of - A resource that this UserAccount has modified.
Inverse: | sioc:has_modifier |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:UserAccount |
name - The name of a SIOC concept instance, e.g. a username for a UserAccount, group name for a Usergroup, etc.
OWL Type: | DatatypeProperty |
---|---|
Range: | rdfs:Literal |
The name property is used to assign a name to various SIOC objects. For example, it may be username of a UserAccount, the name of a Usergroup, the name given to a role (e.g. Moderator, Registered User), etc.
next by date - Next Item or Post in a given Container sorted by date.
Inverse: | sioc:previous_by_date |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Item |
Range: | sioc:Item |
next version - Links to the next revision of this Item or Post.
Inverse: | sioc:previous_version |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | sioc:later_version |
Domain: | sioc:Item |
Range: | sioc:Item |
note - A note associated with this resource, for example, if it has been edited by a UserAccount.
OWL Type: | DatatypeProperty |
---|---|
Range: | rdfs:Literal |
num authors - The number of unique authors (UserAccounts and unregistered posters) who have contributed to this Item, Thread, Post, etc.
OWL Type: | DatatypeProperty |
---|---|
Range: | xsd:nonNegativeInteger |
num items - The number of Posts (or Items) in a Forum (or a Container).
OWL Type: | DatatypeProperty |
---|---|
Domain: | sioc:Container |
Range: | xsd:nonNegativeInteger |
num replies - The number of replies that this Item, Thread, Post, etc. has. Useful for when the reply structure is absent.
OWL Type: | DatatypeProperty |
---|---|
Range: | xsd:nonNegativeInteger |
num threads - The number of Threads (AKA discussion topics) in a Forum.
OWL Type: | DatatypeProperty |
---|---|
Domain: | sioc:Forum |
Range: | xsd:nonNegativeInteger |
num views - The number of times this Item, Thread, UserAccount profile, etc. has been viewed.
OWL Type: | DatatypeProperty |
---|---|
Range: | xsd:nonNegativeInteger |
The num_views property represents the number of times a particular Item, Post, Thread, UserAccount profile, etc. has been viewed. This is an example of where content is automatically created by an end user, and can increase the content's importance in terms of searching. For example, someone creates a query across a set of SIOC-enabled sites, and is returned a list of subjects and extracts from certain Posts, sorted by the popularity of the Post, as indicated by the num_views property.
owner of - A resource owned by a particular UserAccount, for example, a weblog or image gallery.
Inverse: | sioc:has_owner |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:UserAccount |
parent of - A child Container or Forum that this Container or Forum is a parent of.
Inverse: | sioc:has_parent |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | dcterms:hasPart |
Domain: | sioc:Container |
Range: | sioc:Container |
previous by date - Previous Item or Post in a given Container sorted by date.
Inverse: | sioc:next_by_date |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Item |
Range: | sioc:Item |
previous version - Links to the previous revision of this Item or Post.
Inverse: | sioc:next_version |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | sioc:earlier_version |
Domain: | sioc:Item |
Range: | sioc:Item |
read at - When this was read, in ISO 8601 format.
OWL Type: | DatatypeProperty |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Item |
Range: | rdfs:Literal |
reply of - Links to an Item or Post which this Item or Post is a reply to.
Inverse: | sioc:has_reply |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | sioc:related_to |
Domain: | sioc:Item |
Range: | sioc:Item |
respond to - For the reply-to address set in email messages, IMs, etc. The property name was chosen to avoid confusion with has_reply/reply_of (the reply graph).
OWL Type: | ObjectProperty |
---|---|
Domain: | sioc:Item |
scope of - A Role that has a scope of this resource.
Inverse: | sioc:has_scope |
---|---|
OWL Type: | ObjectProperty |
Range: | sioc:Role |
sibling - 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).
OWL Type: | SymmetricProperty |
---|---|
Domain: | sioc:Item |
Range: | sioc:Item |
A recent development in online discussion methods is an article or Item that appears in multiple places, or has been copied from one Container to another relevant Container. In SIOC, we can treat these copies of Items as siblings of each other if we think of the Items as non-identical twins that share most characteristics but differ in some manner.
For example, a post is created on one blog and categorized with the topic "TV", but has been copied to another blog with multiple topics such as "Sci-Fi" or "Arts".
In the creation of siblings, the new sibling instance will be fully self-describing but will have a number of changed properties (in the example, has_container and topic would change). A sibling might also be a version of a post in another language.
space of - A resource which belongs to this data Space.
Inverse: | sioc:has_space |
---|---|
OWL Type: | ObjectProperty |
sub-property-of: | dcterms:hasPart |
Domain: | sioc:Space |
subscriber of - A Container that a UserAccount is subscribed to.
Inverse: | sioc:has_subscriber |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:UserAccount |
Range: | sioc:Container |
topic - A topic of interest, linking to the appropriate URI, e.g. in the Open Directory Project or of a SKOS category.
OWL Type: | ObjectProperty |
---|---|
sub-property-of: | dcterms:subject |
A topic definition applies to most of the concepts defined in this ontology, and topic metadata can be a useful way to match documents and people to each other.
While it may be more difficult to require a UserAccount to assign a topic to an Item or Post at creation time, it is more likely that a Container will have an associated topic or set of topics that can be propagated to the Items it contains. Similarly, UserAccounts or Usergroups can define topics of interest when their profiles are created or modified.
In order to enable the location of related information between the community sites, a common categorisation system has to be used. On large-scale general-interest community sites, topics may be quite broad and a general categorisation system such as the DMOZ category hierarchy may be used.
:post_123 a sioc:Post ; sioc:topic <http://dmoz.org/Business/Publishing_and_Printing/> . <http://dmoz.org/Business/Publishing_and_Printing/> rdfs:label "Publishing and Printing" .
On specialised sites, which may have a very specific category hierarchy, generic categorisation systems are not suitable because they are too broad and may not have the necessary level of detail. For these sites, the category hierarchy may be defined in the SKOS framework and mappings between these concepts and a common category system may be created.
A proper use of topics can lead to many interesting scenarios in community sites. For example, a person has defined certain topics of interest on registering a UserAccount, after which Forums matching those topics are suggested to the UserAccount owner. The UserAccount subscribes to some of these Forums, and makes Posts on these and other Forums. The Forums now associated with this UserAccount will have certain topics that can be used for purposes of social networking or automatic community creation.
This property is often used to express the information about categories or tags assigned to a Post or Item. The SIOC Types Ontology Module allows one to further specify what type of topic it is using the classes sioc_t:Category and sioc_t:Tag.
usergroup of - A Space that the Usergroup has access to.
Inverse: | sioc:has_usergroup |
---|---|
OWL Type: | ObjectProperty |
Domain: | sioc:Usergroup |
Range: | sioc:Space |
Classes and properties from other ontologies can be used together with SIOC. During the SIOC ontology design process, some external classes and properties were identified that are suitable for reuse. Such concepts are not included inside SIOC but are used directly together with terms from SIOC to describe the information in online community sites.
This section lists the most important external classes and properties that can be used with SIOC in a meaningful way. This list is not and cannot be exhaustive because many RDF ontologies can be used together.
Used in SIOC to represent the information about a person who holds an account (sioc:UserAccount) on a Site. Account specific information is described by sioc:UserAccount, a subclass of foaf:OnlineAccount.
foaf:Person can also be used to describe information about persons that do not have a UserAccount on a Site, e.g., for authors of comments left by visitors.
May be used to represent topics or tags defined on a community site. The sioc:topic property can be used to link an Item or Post to a skos:Concept.
Can be used for keywords describing the subject of an Item or Post. See also: sioc:topic.
Specifies the title of a resource. Usually used to describe the title of an Item or Post.
Details the date and time when a resource was created. Usually used as a property of an Item or Post.
A resource that is a part of this subject. Usually used from the domain of a Post or Community.
A resource that the subject is a part of. Usually used with the range of a Post or Community.
Details the date and time when a resource was modified. Usually used as a property of an Item or Post.
Used to link a foaf:Person to a sioc:UserAccount. See also: sioc:account_of.
Used to describe the encoded content of a Post, contained in CDATA areas.
These are the ontology namespaces referenced:
Prefix | XML Namespace | Specification |
---|---|---|
aowl | http://bblfish.net/work/atom-owl/2006-06-06/AtomOwl.rdf | AtomOwl Vocabulary Specification |
content | http://purl.org/rss/1.0/modules/content/ | RSS 1.0 Content Module |
dcterms | http://purl.org/dc/terms/ | Dublin Core Metadata Terms |
foaf | http://xmlns.com/foaf/0.1/ | Friend of a Friend (FOAF) Vocabulary |
sioc | http://rdfs.org/sioc/ns# | SIOC Core Ontology |
skos | http://www.w3.org/2004/02/skos/core# | SKOS Core Vocabulary |
xsd | http://www.w3.org/2001/XMLSchema# | XML Schema (Datatypes) |
We would like to acknowledge the contributions of Danny Ayers, Olivier Ballerini-Gendrin, Juan Botía, Sarven Capadisli, Richard Cyganiak, Benjamin Heitmann, Ann Johnston, Charles McCathieNevile, Libby Miller, Andrés Muñoz, Donncha O Caoimh, Jack Park, Guangyuan Piao, Thomas Schandl, Antonio Skarmeta and Dorian Taylor towards this specification. We would also like to acknowledge the many helpful suggestions from members of the SIOC developers' mailing list, and we thank Dave Beckett for the Redland RDF library which was used in the creation of this specification.