http://www.w3.org/ns/activitystreams#CollectionPage
A subset of items from a Collection
Instances of as:CollectionPage can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class as:CollectionPage | |||
as:next | owl:FunctionalProperty | In a paged Collection, indicates the next page of items. | owl:Thing |
as:partOf | owl:FunctionalProperty | Identifies the Collection to which a CollectionPage objects items belong. | owl:Thing |
as:prev | owl:FunctionalProperty | In a paged Collection, identifies the previous page of items. | owl:Thing |
From class as:Collection | |||
as:totalItems | owl:DatatypeProperty | The total number of items in a logical collection | xsd:nonNegativeInteger |
as:current | owl:FunctionalProperty | In a paged Collection, indicates the page that contains the most recently updated member items. | owl:Thing |
as:first | owl:FunctionalProperty | owl:Thing | |
as:last | owl:FunctionalProperty | In a paged Collection, indicates the furthest proceeding page of the collection. | owl:Thing |
as:items | owl:ObjectProperty | Identifies the items contained in a collection. The items might be ordered or unordered. | owl:Thing |
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 |
@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:CollectionPage a owl:Class ;
rdfs:label "CollectionPage"@en ;
rdfs:comment "A subset of items from a Collection"@en ;
rdfs:subClassOf as:Collection .