as:Article leaf node


URI

http://www.w3.org/ns/activitystreams#Article

Label

Article

Description

A written work. Typically several paragraphs long. For example, a blog post or a news article.

Superclasses (1)

Usage

Instances of as:Article can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class as:Object
as:content owl:DatatypeProperty The content of the object. owl:Thing
as:duration owl:DatatypeProperty The duration of the object xsd:duration
as:endTime owl:DatatypeProperty The ending time of the object xsd:dateTime
as:published owl:DatatypeProperty Specifies the date and time the object was published xsd:dateTime
as:startTime owl:DatatypeProperty The starting time of the object xsd:dateTime
as:summary owl:DatatypeProperty A short summary of the object owl:Thing
as:updated owl:DatatypeProperty Specifies when the object was last updated xsd:dateTime
as:attachment owl:ObjectProperty Identifies a resource attached or related to an object that potentially requires special handling. The intent is to provide a model that is at least semantically similar to attachments in email. owl:Thing
as:audience owl:ObjectProperty Identifies one or more entities that represent the total population of entities for which the object can considered to be relevant. owl:Thing
as:bcc owl:ObjectProperty Identifies one or more Objects that are part of the private secondary audience of this Object. owl:Thing
as:bto owl:ObjectProperty Identifies an Object that is part of the private primary audience of this Object. owl:Thing
as:cc owl:ObjectProperty Identifies an Object that is part of the public secondary audience of this Object. owl:Thing
as:context owl:ObjectProperty Specifies the context within which an object exists or an activity was performed owl:Thing
as:generator owl:ObjectProperty Identifies the entity (e.g. an application) that generated the object. owl:Thing
as:icon owl:ObjectProperty Indicates an entity that describes an icon for this object. The image should have an aspect ratio of one (horizontal) to one (vertical) and should be suitable for presentation at a small size. owl:Thing
as:image owl:ObjectProperty Indicates an entity that describes an image for this object. Unlike the icon property, there are no aspect ratio or display size limitations assumed. owl:Thing
as:inReplyTo owl:ObjectProperty Indicates one or more entities for which this object is considered a response. owl:Thing
as:location owl:ObjectProperty Indicates one or more physical or logical locations associated with the object. owl:Thing
as:replies owl:ObjectProperty Identifies a Collection containing objects considered to be responses to this object. as:Collection
as:shares owl:ObjectProperty owl:Thing
as:tag owl:ObjectProperty One or more "tags" that have been associated with an objects. A tag can be any kind of Object. The key difference between attachment and tag is that the former implies association by inclusion, while the latter implies associated by reference. owl:Thing
as:to owl:ObjectProperty Identifies an entity considered to be part of the public primary audience of an Object owl:Thing
as:url owl:ObjectProperty Specifies a link to a specific representation of the Object owl:Thing

Implementation

@prefix as: <http://www.w3.org/ns/activitystreams#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

as:Article a owl:Class ;
    rdfs:label "Article"@en ;
    rdfs:comment "A written work. Typically several paragraphs long. For example, a blog post or a news article."@en ;
    rdfs:subClassOf as:Object .