go-fed-activity/astool/activitystreams.jsonld

5475 lines
204 KiB
Plaintext

{
"@context": [
{
"owl": "http://www.w3.org/2002/07/owl#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"rfc": "https://tools.ietf.org/html/",
"schema": "http://schema.org/",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
{
"domain": "rdfs:domain",
"example": "schema:workExample",
"isDefinedBy": "rdfs:isDefinedBy",
"mainEntity": "schema:mainEntity",
"members": "owl:members",
"name": "schema:name",
"notes": "rdfs:comment",
"range": "rdfs:range",
"subClassOf": "rdfs:subClassOf",
"disjointWith": "owl:disjointWith",
"subPropertyOf": "rdfs:subPropertyOf",
"unionOf": "owl:unionOf",
"url": "schema:URL"
},
{
"sections": {
"@id": "owl:imports",
"@container": "@index"
}
}
],
"id": "https://www.w3.org/ns/activitystreams",
"type": "owl:Ontology",
"name": "ActivityStreams",
"sections": {
"activityTypes": {
"type": "owl:Ontology",
"members": [
{
"id": "https://www.w3.org/ns/activitystreams#Accept",
"type": "owl:Class",
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex7a-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Accept",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Invite",
"actor": "http://john.example.org",
"object": {
"type": "Event",
"name": "Going-Away Party for Jim"
}
},
"summary": "Sally accepted an invitation to a party"
},
"name": "Example 9"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex7b-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Accept",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Person",
"name": "Joe"
},
"summary": "Sally accepted Joe into the club",
"target": {
"type": "Group",
"name": "The Club"
}
},
"name": "Example 10"
}
],
"notes": "Indicates that the actor accepts the object. The target property can be used in certain circumstances to indicate the context into which the object has been accepted.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Accept",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-accept"
},
{
"id": "https://www.w3.org/ns/activitystreams#TentativeAccept",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex8-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "TentativeAccept",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Invite",
"actor": "http://john.example.org",
"object": {
"type": "Event",
"name": "Going-Away Party for Jim"
}
},
"summary": "Sally tentatively accepted an invitation to a party"
},
"name": "Example 11"
},
"notes": "A specialization of Accept indicating that the acceptance is tentative.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-accept",
"name": "Accept"
},
"disjointWith": [],
"name": "TentativeAccept",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tentativeaccept"
},
{
"id": "https://www.w3.org/ns/activitystreams#Add",
"type": "owl:Class",
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex9-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Add",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": "http://example.org/abc",
"summary": "Sally added an object"
},
"name": "Example 12"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex10-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Add",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Image",
"name": "A picture of my cat",
"url": "http://example.org/img/cat.png"
},
"origin": {
"type": "Collection",
"name": "Camera Roll"
},
"summary": "Sally added a picture of her cat to her cat picture collection",
"target": {
"type": "Collection",
"name": "My Cat Pictures"
}
},
"name": "Example 13"
}
],
"notes": "Indicates that the actor has added the object to the target. If the target property is not explicitly specified, the target would need to be determined implicitly by context. The origin can be used to identify the context from which the object originated.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Add",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-add"
},
{
"id": "https://www.w3.org/ns/activitystreams#Arrive",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex11-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Arrive",
"actor": {
"type": "Person",
"name": "Sally"
},
"location": {
"type": "Place",
"name": "Work"
},
"origin": {
"type": "Place",
"name": "Home"
},
"summary": "Sally arrived at work"
},
"name": "Example 14"
},
"notes": "An IntransitiveActivity that indicates that the actor has arrived at the location. The origin can be used to identify the context from which the actor originated. The target typically has no defined meaning.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-intransitiveactivity",
"name": "IntransitiveActivity"
},
"disjointWith": [],
"name": "Arrive",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-arrive"
},
{
"id": "https://www.w3.org/ns/activitystreams#Create",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex12-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Create",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Note",
"content": "This is a simple note",
"name": "A Simple Note"
},
"summary": "Sally created a note"
},
"name": "Example 15"
},
"notes": "Indicates that the actor has created the object.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Create",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-create"
},
{
"id": "https://www.w3.org/ns/activitystreams#Delete",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex13-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Delete",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": "http://example.org/notes/1",
"origin": {
"type": "Collection",
"name": "Sally's Notes"
},
"summary": "Sally deleted a note"
},
"name": "Example 16"
},
"notes": "Indicates that the actor has deleted the object. If specified, the origin indicates the context from which the object was deleted.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Delete",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-delete"
},
{
"id": "https://www.w3.org/ns/activitystreams#Follow",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex15-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Follow",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Person",
"name": "John"
},
"summary": "Sally followed John"
},
"name": "Example 17"
},
"notes": "Indicates that the actor is \"following\" the object. Following is defined in the sense typically used within Social systems in which the actor is interested in any activity performed by or on the object. The target and origin typically have no defined meaning.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Follow",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-follow"
},
{
"id": "https://www.w3.org/ns/activitystreams#Ignore",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex16-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Ignore",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": "http://example.org/notes/1",
"summary": "Sally ignored a note"
},
"name": "Example 18"
},
"notes": "Indicates that the actor is ignoring the object. The target and origin typically have no defined meaning.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Ignore",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-ignore"
},
{
"id": "https://www.w3.org/ns/activitystreams#Join",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex17-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Join",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Group",
"name": "A Simple Group"
},
"summary": "Sally joined a group"
},
"name": "Example 19"
},
"notes": "Indicates that the actor has joined the object. The target and origin typically have no defined meaning.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Join",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-join"
},
{
"id": "https://www.w3.org/ns/activitystreams#Leave",
"type": "owl:Class",
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex18-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Leave",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Place",
"name": "Work"
},
"summary": "Sally left work"
},
"name": "Example 20"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex19-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Leave",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Group",
"name": "A Simple Group"
},
"summary": "Sally left a group"
},
"name": "Example 21"
}
],
"notes": "Indicates that the actor has left the object. The target and origin typically have no meaning.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Leave",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-leave"
},
{
"id": "https://www.w3.org/ns/activitystreams#Like",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex20-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Like",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": "http://example.org/notes/1",
"summary": "Sally liked a note"
},
"name": "Example 22"
},
"notes": "Indicates that the actor likes, recommends or endorses the object. The target and origin typically have no defined meaning.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Like",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-like"
},
{
"id": "https://www.w3.org/ns/activitystreams#Offer",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex21-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Offer",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "http://www.types.example/ProductOffer",
"name": "50% Off!"
},
"summary": "Sally offered 50% off to Lewis",
"target": {
"type": "Person",
"name": "Lewis"
}
},
"name": "Example 23"
},
"notes": "Indicates that the actor is offering the object. If specified, the target indicates the entity to which the object is being offered.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Offer",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-offer"
},
{
"id": "https://www.w3.org/ns/activitystreams#Invite",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex24-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Invite",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Event",
"name": "A Party"
},
"summary": "Sally invited John and Lisa to a party",
"target": [
{
"type": "Person",
"name": "John"
},
{
"type": "Person",
"name": "Lisa"
}
]
},
"name": "Example 24"
},
"notes": "A specialization of Offer in which the actor is extending an invitation for the object to the target.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-offer",
"name": "Offer"
},
"disjointWith": [],
"name": "Invite",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-invite"
},
{
"id": "https://www.w3.org/ns/activitystreams#Reject",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex26-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Reject",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Invite",
"actor": "http://john.example.org",
"object": {
"type": "Event",
"name": "Going-Away Party for Jim"
}
},
"summary": "Sally rejected an invitation to a party"
},
"name": "Example 25"
},
"notes": "Indicates that the actor is rejecting the object. The target and origin typically have no defined meaning.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Reject",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-reject"
},
{
"id": "https://www.w3.org/ns/activitystreams#TentativeReject",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex27-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "TentativeReject",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Invite",
"actor": "http://john.example.org",
"object": {
"type": "Event",
"name": "Going-Away Party for Jim"
}
},
"summary": "Sally tentatively rejected an invitation to a party"
},
"name": "Example 26"
},
"notes": "A specialization of Reject in which the rejection is considered tentative.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-reject",
"name": "Reject"
},
"disjointWith": [],
"name": "TentativeReject",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tentativereject"
},
{
"id": "https://www.w3.org/ns/activitystreams#Remove",
"type": "owl:Class",
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex28-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Remove",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": "http://example.org/notes/1",
"summary": "Sally removed a note from her notes folder",
"target": {
"type": "Collection",
"name": "Notes Folder"
}
},
"name": "Example 27"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex29-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Remove",
"actor": {
"type": "http://example.org/Role",
"name": "The Moderator"
},
"object": {
"type": "Person",
"name": "Sally"
},
"origin": {
"type": "Group",
"name": "A Simple Group"
},
"summary": "The moderator removed Sally from a group"
},
"name": "Example 28"
}
],
"notes": "Indicates that the actor is removing the object. If specified, the origin indicates the context from which the object is being removed.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Remove",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-remove"
},
{
"id": "https://www.w3.org/ns/activitystreams#Undo",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex32-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Undo",
"actor": "http://sally.example.org",
"object": {
"type": "Offer",
"actor": "http://sally.example.org",
"object": "http://example.org/posts/1",
"target": "http://john.example.org"
},
"summary": "Sally retracted her offer to John"
},
"name": "Example 29"
},
"notes": "Indicates that the actor is undoing the object. In most cases, the object will be an Activity describing some previously performed action (for instance, a person may have previously \"liked\" an article but, for whatever reason, might choose to undo that like at some later point in time). The target and origin typically have no defined meaning.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Undo",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-undo"
},
{
"id": "https://www.w3.org/ns/activitystreams#Update",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex33-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Update",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": "http://example.org/notes/1",
"summary": "Sally updated her note"
},
"name": "Example 30"
},
"notes": "Indicates that the actor has updated the object. Note, however, that this vocabulary does not define a mechanism for describing the actual set of modifications made to object. The target and origin typically have no defined meaning.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Update",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-update"
},
{
"id": "https://www.w3.org/ns/activitystreams#View",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex161-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "View",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Article",
"name": "What You Should Know About Activity Streams"
},
"summary": "Sally read an article"
},
"name": "Example 31"
},
"notes": "Indicates that the actor has viewed the object.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "View",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-view"
},
{
"id": "https://www.w3.org/ns/activitystreams#Listen",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex163-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Listen",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": "http://example.org/music.mp3",
"summary": "Sally listened to a piece of music"
},
"name": "Example 32"
},
"notes": "Indicates that the actor has listened to the object.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Listen",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-listen"
},
{
"id": "https://www.w3.org/ns/activitystreams#Read",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex164-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Read",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": "http://example.org/posts/1",
"summary": "Sally read a blog post"
},
"name": "Example 33"
},
"notes": "Indicates that the actor has read the object.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Read",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-read"
},
{
"id": "https://www.w3.org/ns/activitystreams#Move",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex168-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Move",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": "http://example.org/posts/1",
"origin": {
"type": "Collection",
"name": "List A"
},
"summary": "Sally moved a post from List A to List B",
"target": {
"type": "Collection",
"name": "List B"
}
},
"name": "Example 34"
},
"notes": "Indicates that the actor has moved object from origin to target. If the origin or target are not specified, either can be determined by context.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Move",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-move"
},
{
"id": "https://www.w3.org/ns/activitystreams#Travel",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex169-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Travel",
"actor": {
"type": "Person",
"name": "Sally"
},
"origin": {
"type": "Place",
"name": "Work"
},
"summary": "Sally went home from work",
"target": {
"type": "Place",
"name": "Home"
}
},
"name": "Example 35"
},
"notes": "Indicates that the actor is traveling to target from origin. Travel is an IntransitiveActivity whose actor specifies the direct object. If the target or origin are not specified, either can be determined by context.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-intransitiveactivity",
"name": "IntransitiveActivity"
},
"disjointWith": [],
"name": "Travel",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-travel"
},
{
"id": "https://www.w3.org/ns/activitystreams#Announce",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex170-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Announce",
"actor": {
"id": "http://sally.example.org",
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Arrive",
"actor": "http://sally.example.org",
"location": {
"type": "Place",
"name": "Work"
}
},
"summary": "Sally announced that she had arrived at work"
},
"name": "Example 36"
},
"notes": "Indicates that the actor is calling the target's attention the object. The origin typically has no defined meaning.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Announce",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-announce"
},
{
"id": "https://www.w3.org/ns/activitystreams#Block",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex173-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Block",
"actor": "http://sally.example.org",
"object": "http://joe.example.org",
"summary": "Sally blocked Joe"
},
"name": "Example 37"
},
"notes": "Indicates that the actor is blocking the object. Blocking is a stronger form of Ignore. The typical use is to support social systems that allow one user to block activities or content of other users. The target and origin typically have no defined meaning.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-ignore",
"name": "Ignore"
},
"disjointWith": [],
"name": "Block",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-block"
},
{
"id": "https://www.w3.org/ns/activitystreams#Flag",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex174-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Flag",
"actor": "http://sally.example.org",
"object": {
"type": "Note",
"content": "An inappropriate note"
},
"summary": "Sally flagged an inappropriate note"
},
"name": "Example 38"
},
"notes": "Indicates that the actor is \"flagging\" the object. Flagging is defined in the sense common to many social platforms as reporting content as being inappropriate for any number of reasons.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Flag",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-flag"
},
{
"id": "https://www.w3.org/ns/activitystreams#Dislike",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex175-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Dislike",
"actor": "http://sally.example.org",
"object": "http://example.org/posts/1",
"summary": "Sally disliked a post"
},
"name": "Example 39"
},
"notes": "Indicates that the actor dislikes the object.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "Dislike",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-dislike"
},
{
"id": "https://www.w3.org/ns/activitystreams#Question",
"type": "owl:Class",
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex55a-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Question",
"name": "What is the answer?",
"oneOf": [
{
"type": "Note",
"name": "Option A"
},
{
"type": "Note",
"name": "Option B"
}
]
},
"name": "Example 40"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex55b-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Question",
"closed": "2016-05-10T00:00:00Z",
"name": "What is the answer?"
},
"name": "Example 41"
}
],
"notes": "Represents a question being asked. Question objects are an extension of IntransitiveActivity. That is, the Question object is an Activity, but the direct object is the question itself and therefore it would not contain an object property. Either of the anyOf and oneOf properties MAY be used to express possible answers, but a Question object MUST NOT have both properties.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-intransitiveactivity",
"name": "IntransitiveActivity"
},
"disjointWith": [],
"name": "Question",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-question"
}
]
},
"actorTypes": {
"type": "owl:Ontology",
"members": [
{
"id": "https://www.w3.org/ns/activitystreams#Application",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex34-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Application",
"name": "Exampletron 3000"
},
"name": "Example 42"
},
"notes": "Describes a software application.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Application",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-application"
},
{
"id": "https://www.w3.org/ns/activitystreams#Group",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex37-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Group",
"name": "Big Beards of Austin"
},
"name": "Example 43"
},
"notes": "Represents a formal or informal collective of Actors.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Group",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-group"
},
{
"id": "https://www.w3.org/ns/activitystreams#Organization",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex186-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Organization",
"name": "Example Co."
},
"name": "Example 44"
},
"notes": "Represents an organization.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Organization",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-organization"
},
{
"id": "https://www.w3.org/ns/activitystreams#Person",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex39-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Person",
"name": "Sally Smith"
},
"name": "Example 45"
},
"notes": "Represents an individual person.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Person",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-person"
},
{
"id": "https://www.w3.org/ns/activitystreams#Service",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex42-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Service",
"name": "Acme Web Service"
},
"name": "Example 46"
},
"notes": "Represents a service of any kind.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Service",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-service"
}
]
},
"coreTypes": {
"type": "owl:Ontology",
"members": [
{
"id": "https://www.w3.org/ns/activitystreams#Object",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex1-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"id": "http://www.test.example/object/1",
"type": "Object",
"name": "A Simple, non-specific object"
},
"name": "Example 1"
},
"notes": "Describes an object of any kind. The Object type serves as the base type for most of the other kinds of objects defined in the Activity Vocabulary, including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection.",
"disjointWith": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
"name": "Object",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object"
},
{
"id": "https://www.w3.org/ns/activitystreams#Link",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex2-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Link",
"url": "http://example.org/abc",
"hreflang": "en",
"mediaType": "text/html",
"name": "An example link"
},
"name": "Example 2"
},
"notes": "A Link is an indirect, qualified reference to a resource identified by a URL. The fundamental model for links is established by [RFC5988]. Many of the properties defined by the Activity Vocabulary allow values that are either instances of Object or Link. When a Link is used, it establishes a qualified relation connecting the subject (the containing object) to the resource identified by the href. Properties of the Link are properties of the reference as opposed to properties of the resource.",
"disjointWith": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"name": "Link",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link"
},
{
"id": "https://www.w3.org/ns/activitystreams#Activity",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex3-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Activity",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Note",
"name": "A Note"
},
"summary": "Sally did something to a note"
},
"name": "Example 3"
},
"notes": "An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Activity",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity"
},
{
"id": "https://www.w3.org/ns/activitystreams#IntransitiveActivity",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex182-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Travel",
"actor": {
"type": "Person",
"name": "Sally"
},
"summary": "Sally went to work",
"target": {
"type": "Place",
"name": "Work"
}
},
"name": "Example 4"
},
"notes": "Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The object property is therefore inappropriate for these activities.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
},
"disjointWith": [],
"name": "IntransitiveActivity",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-intransitiveactivity"
},
{
"id": "https://www.w3.org/ns/activitystreams#Collection",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex5-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Collection",
"items": [
{
"type": "Note",
"name": "A Simple Note"
},
{
"type": "Note",
"name": "Another Simple Note"
}
],
"summary": "Sally's notes",
"totalItems": 2
},
"name": "Example 5"
},
"notes": "A Collection is a subtype of Object that represents ordered or unordered sets of Object or Link instances. Refer to the Activity Streams 2.0 Core specification for a complete description of the Collection type.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Collection",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection"
},
{
"id": "https://www.w3.org/ns/activitystreams#OrderedCollection",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex6-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "OrderedCollection",
"orderedItems": [
{
"type": "Note",
"name": "A Simple Note"
},
{
"type": "Note",
"name": "Another Simple Note"
}
],
"summary": "Sally's notes",
"totalItems": 2
},
"name": "Example 6"
},
"notes": "A subtype of Collection in which members of the logical collection are assumed to always be strictly ordered.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection",
"name": "Collection"
},
"disjointWith": [],
"name": "OrderedCollection",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollection"
},
{
"id": "https://www.w3.org/ns/activitystreams#CollectionPage",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex6b-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"id": "http://example.org/foo?page=1",
"type": "CollectionPage",
"items": [
{
"type": "Note",
"name": "A Simple Note"
},
{
"type": "Note",
"name": "Another Simple Note"
}
],
"partOf": "http://example.org/foo",
"summary": "Page 1 of Sally's notes"
},
"name": "Example 7"
},
"notes": "Used to represent distinct subsets of items from a Collection. Refer to the Activity Streams 2.0 Core for a complete description of the CollectionPage object.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection",
"name": "Collection"
},
"disjointWith": [],
"name": "CollectionPage",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage"
},
{
"id": "https://www.w3.org/ns/activitystreams#OrderedCollectionPage",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex6c-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"id": "http://example.org/foo?page=1",
"type": "OrderedCollectionPage",
"orderedItems": [
{
"type": "Note",
"name": "A Simple Note"
},
{
"type": "Note",
"name": "Another Simple Note"
}
],
"partOf": "http://example.org/foo",
"summary": "Page 1 of Sally's notes"
},
"name": "Example 8"
},
"notes": "Used to represent ordered subsets of items from an OrderedCollection. Refer to the Activity Streams 2.0 Core for a complete description of the OrderedCollectionPage object.",
"subClassOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage",
"name": "CollectionPage"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollection",
"name": "OrderedCollection"
}
],
"disjointWith": [],
"name": "OrderedCollectionPage",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage"
}
]
},
"objectTypes": {
"type": "owl:Ontology",
"members": [
{
"id": "https://www.w3.org/ns/activitystreams#Relationship",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex22-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Relationship",
"object": {
"type": "Person",
"name": "John"
},
"relationship": "http://purl.org/vocab/relationship/acquaintanceOf",
"subject": {
"type": "Person",
"name": "Sally"
},
"summary": "Sally is an acquaintance of John"
},
"name": "Example 47"
},
"notes": "Describes a relationship between two individuals. The subject and object properties are used to identify the connected individuals. See 5.2 Representing Relationships Between Entities for additional information.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Relationship",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-relationship"
},
{
"id": "https://www.w3.org/ns/activitystreams#Article",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex43-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Article",
"attributedTo": "http://sally.example.org",
"content": "<div>... you will never believe ...</div>",
"name": "What a Crazy Day I Had"
},
"name": "Example 48"
},
"notes": "Represents any kind of multi-paragraph written work.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Article",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-article"
},
{
"id": "https://www.w3.org/ns/activitystreams#Document",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex48-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Document",
"name": "4Q Sales Forecast",
"url": "http://example.org/4q-sales-forecast.pdf"
},
"name": "Example 49"
},
"notes": "Represents a document of any kind.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Document",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-document"
},
{
"id": "https://www.w3.org/ns/activitystreams#Audio",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex49-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Audio",
"name": "Interview With A Famous Technologist",
"url": {
"type": "owl:Class",
"url": "http://example.org/podcast.mp3",
"mediaType": "audio/mp3"
}
},
"name": "Example 50"
},
"notes": "Represents an audio document of any kind.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-document",
"name": "Document"
},
"disjointWith": [],
"name": "Audio",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-audio"
},
{
"id": "https://www.w3.org/ns/activitystreams#Image",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex50-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Image",
"name": "Cat Jumping on Wagon",
"url": [
{
"type": "Link",
"url": "http://example.org/image.jpeg",
"mediaType": "image/jpeg"
},
{
"type": "Link",
"url": "http://example.org/image.png",
"mediaType": "image/png"
}
]
},
"name": "Example 51"
},
"notes": "An image document of any kind",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-document",
"name": "Document"
},
"disjointWith": [],
"name": "Image",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image"
},
{
"id": "https://www.w3.org/ns/activitystreams#Video",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex51-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Video",
"duration": "PT2H",
"name": "Puppy Plays With Ball",
"url": "http://example.org/video.mkv"
},
"name": "Example 52"
},
"notes": "Represents a video document of any kind.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-document",
"name": "Document"
},
"disjointWith": [],
"name": "Video",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-video"
},
{
"id": "https://www.w3.org/ns/activitystreams#Note",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex52-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "Looks like it is going to rain today. Bring an umbrella!",
"name": "A Word of Warning"
},
"name": "Example 53"
},
"notes": "Represents a short written work typically less than a single paragraph in length.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Note",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-note"
},
{
"id": "https://www.w3.org/ns/activitystreams#Page",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex53-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Page",
"name": "Omaha Weather Report",
"url": "http://example.org/weather-in-omaha.html"
},
"name": "Example 54"
},
"notes": "Represents a Web Page.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-document",
"name": "Document"
},
"disjointWith": [],
"name": "Page",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-page"
},
{
"id": "https://www.w3.org/ns/activitystreams#Event",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex56-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Event",
"endTime": "2015-01-01T06:00:00-08:00",
"name": "Going-Away Party for Jim",
"startTime": "2014-12-31T23:00:00-08:00"
},
"name": "Example 55"
},
"notes": "Represents any kind of event.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Event",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-event"
},
{
"id": "https://www.w3.org/ns/activitystreams#Place",
"type": "owl:Class",
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex57-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Place",
"name": "Work"
},
"name": "Example 56"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex58-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Place",
"latitude": 36.75,
"longitude": 119.7667,
"name": "Fresno Area",
"radius": 15,
"units": "miles"
},
"name": "Example 57"
}
],
"notes": "Represents a logical or physical location. See 5.3 Representing Places for additional information.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Place",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-place"
},
{
"id": "https://www.w3.org/ns/activitystreams#Mention",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex181-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Mention",
"url": "http://example.org/joe",
"name": "Joe",
"summary": "Mention of Joe by Carrie in her note"
},
"name": "Example 58"
},
"notes": "A specialized Link that represents an @mention.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
"disjointWith": [],
"name": "Mention",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mention"
},
{
"id": "https://www.w3.org/ns/activitystreams#Profile",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex184a-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Profile",
"describes": {
"type": "Person",
"name": "Sally Smith"
},
"summary": "Sally's Profile"
},
"name": "Example 59"
},
"notes": "A Profile is a content object that describes another Object, typically used to describe Actor Type objects. The describes property is used to reference the object being described by the profile.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Profile",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-profile"
},
{
"id": "https://www.w3.org/ns/activitystreams#Tombstone",
"type": "owl:Class",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex184b-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "OrderedCollection",
"orderedItems": [
{
"id": "http://image.example/1",
"type": "Image"
},
{
"id": "http://image.example/2",
"type": "Tombstone",
"deleted": "2016-03-17T00:00:00Z",
"formerType": "/Image"
},
{
"id": "http://image.example/3",
"type": "Image"
}
],
"name": "Vacation photos 2016",
"totalItems": 3
},
"name": "Example 60"
},
"notes": "A Tombstone represents a content object that has been deleted. It can be used in Collections to signify that there used to be an object at this position, but it has been deleted.",
"subClassOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"disjointWith": [],
"name": "Tombstone",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone"
}
]
},
"properties": {
"type": "owl:Ontology",
"members": [
{
"id": "https://www.w3.org/ns/activitystreams#actor",
"type": "rdf:Property",
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex59-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Offer",
"actor": "http://sally.example.org",
"object": "http://example.org/foo",
"summary": "Sally offered the Foo object"
},
"name": "Example 63"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex60-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Offer",
"actor": {
"id": "http://sally.example.org",
"type": "Person",
"summary": "Sally"
},
"object": "http://example.org/foo",
"summary": "Sally offered the Foo object"
},
"name": "Example 64"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex61-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Offer",
"actor": [
"http://joe.example.org",
{
"id": "http://sally.example.org",
"type": "Person",
"name": "Sally"
}
],
"object": "http://example.org/foo",
"summary": "Sally and Joe offered the Foo object"
},
"name": "Example 65"
}
],
"notes": "Describes one or more entities that either performed or are expected to perform the activity. Any single activity can have multiple actors. The actor MAY be specified using an indirect Link.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-actor",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"subPropertyOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-attributedto",
"name": "attributedTo"
},
"name": "actor",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-actor"
},
{
"id": "https://www.w3.org/ns/activitystreams#attachment",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex64-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"attachment": {
"type": "Image",
"content": "This is what he looks like.",
"url": "http://example.org/cat.jpeg"
},
"name": "Have you seen my cat?"
},
"name": "Example 66"
},
"notes": "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.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-attachment",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "attachment",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-attachment"
},
{
"id": "https://www.w3.org/ns/activitystreams#attributedTo",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex65-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Image",
"attributedTo": {
"type": "Person",
"name": "Sally"
},
"name": "My cat taking a nap",
"url": "http://example.org/cat.jpeg"
},
"name": "Example 67"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex66-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Image",
"attributedTo": [
"http://joe.example.org",
{
"type": "Person",
"name": "Sally"
}
],
"name": "My cat taking a nap",
"url": "http://example.org/cat.jpeg"
},
"name": "Example 68"
}
],
"notes": "Identifies one or more entities to which this object is attributed. The attributed entities might not be Actors. For instance, an object might be attributed to the completion of another activity.",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-attributedto",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
]
},
"name": "attributedTo",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-attributedto"
},
{
"id": "https://www.w3.org/ns/activitystreams#audience",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex113-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"audience": {
"type": "http://example.org/Organization",
"name": "ExampleCo LLC"
},
"content": "Thursday will be a company-wide holiday. Enjoy your day off!",
"name": "Holiday announcement"
},
"name": "Example 69"
},
"notes": "Identifies one or more entities that represent the total population of entities for which the object can considered to be relevant.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-audience",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "audience",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-audience"
},
{
"id": "https://www.w3.org/ns/activitystreams#bcc",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex68-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Offer",
"actor": "http://sally.example.org",
"bcc": "http://joe.example.org",
"object": "http://example.org/posts/1",
"summary": "Sally offered a post to John",
"target": "http://john.example.org"
},
"name": "Example 70"
},
"notes": "Identifies one or more Objects that are part of the private secondary audience of this Object.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-bcc",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "bcc",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-bcc"
},
{
"id": "https://www.w3.org/ns/activitystreams#bto",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex69-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Offer",
"actor": "http://sally.example.org",
"bto": "http://joe.example.org",
"object": "http://example.org/posts/1",
"summary": "Sally offered a post to John",
"target": "http://john.example.org"
},
"name": "Example 71"
},
"notes": "Identifies an Object that is part of the private primary audience of this Object.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-bto",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "bto",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-bto"
},
{
"id": "https://www.w3.org/ns/activitystreams#cc",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex70-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Offer",
"actor": "http://sally.example.org",
"cc": "http://joe.example.org",
"object": "http://example.org/posts/1",
"summary": "Sally offered a post to John",
"target": "http://john.example.org"
},
"name": "Example 72"
},
"notes": "Identifies an Object that is part of the public secondary audience of this Object.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-cc",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "cc",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-cc"
},
{
"id": "https://www.w3.org/ns/activitystreams#context",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex171-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Collection",
"items": [
{
"type": "Offer",
"actor": "http://sally.example.org",
"context": "http://example.org/contexts/1",
"object": "http://example.org/posts/1",
"target": "http://john.example.org"
},
{
"type": "Like",
"actor": "http://joe.example.org",
"context": "http://example.org/contexts/1",
"object": "http://example.org/posts/2"
}
],
"summary": "Activities in context 1"
},
"name": "Example 73"
},
"notes": "Identifies the context within which the object exists or an activity was performed. The notion of \"context\" used is intentionally vague. The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose. An example could be all activities relating to a common project or event.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "context",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context"
},
{
"id": "https://www.w3.org/ns/activitystreams#current",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex71-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Collection",
"current": "http://example.org/collection",
"items": [
"http://example.org/posts/1",
"http://example.org/posts/2",
"http://example.org/posts/3"
],
"summary": "Sally's blog posts",
"totalItems": 3
},
"name": "Example 74"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex72-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Collection",
"current": {
"type": "owl:Class",
"url": "http://example.org/collection",
"summary": "Most Recent Items"
},
"items": [
"http://example.org/posts/1",
"http://example.org/posts/2",
"http://example.org/posts/3"
],
"summary": "Sally's blog posts",
"totalItems": 3
},
"name": "Example 75"
}
],
"notes": "In a paged Collection, indicates the page that contains the most recently updated member items.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection",
"name": "Collection"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-current",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage",
"name": "CollectionPage"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "current",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-current"
},
{
"id": "https://www.w3.org/ns/activitystreams#first",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex73-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Collection",
"first": "http://example.org/collection?page=0",
"summary": "Sally's blog posts",
"totalItems": 3
},
"name": "Example 76"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex74-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Collection",
"first": {
"type": "owl:Class",
"url": "http://example.org/collection?page=0",
"summary": "First Page"
},
"summary": "Sally's blog posts",
"totalItems": 3
},
"name": "Example 77"
}
],
"notes": "In a paged Collection, indicates the furthest preceeding page of items in the collection.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection",
"name": "Collection"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-first",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage",
"name": "CollectionPage"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "first",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-first"
},
{
"id": "https://www.w3.org/ns/activitystreams#generator",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex75-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "This is all there is.",
"generator": {
"type": "Application",
"name": "Exampletron 3000"
},
"summary": "A simple note"
},
"name": "Example 78"
},
"notes": "Identifies the entity (e.g. an application) that generated the object.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-generator",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "generator",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-generator"
},
{
"id": "https://www.w3.org/ns/activitystreams#icon",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex77-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "This is all there is.",
"icon": {
"type": "Image",
"height": 16,
"name": "Note icon",
"url": "http://example.org/note.png",
"width": 16
},
"summary": "A simple note"
},
"name": "Example 79"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex78-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "A simple note",
"icon": [
{
"type": "Image",
"height": 16,
"summary": "Note (16x16)",
"url": "http://example.org/note1.png",
"width": 16
},
{
"type": "Image",
"height": 32,
"summary": "Note (32x32)",
"url": "http://example.org/note2.png",
"width": 32
}
],
"summary": "A simple note"
},
"name": "Example 80"
}
],
"notes": "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.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-icon",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image",
"name": "Image"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "icon",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-icon"
},
{
"id": "https://www.w3.org/ns/activitystreams#image",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex80-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "This is all there is.",
"image": {
"type": "Image",
"name": "A Cat",
"url": "http://example.org/cat.png"
},
"name": "A simple note"
},
"name": "Example 81"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex81-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "This is all there is.",
"image": [
{
"type": "Image",
"name": "Cat 1",
"url": "http://example.org/cat1.png"
},
{
"type": "Image",
"name": "Cat 2",
"url": "http://example.org/cat2.png"
}
],
"name": "A simple note"
},
"name": "Example 82"
}
],
"notes": "Indicates an entity that describes an image for this object. Unlike the icon property, there are no aspect ratio or display size limitations assumed.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image-term",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image",
"name": "Image"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "image",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image-term"
},
{
"id": "https://www.w3.org/ns/activitystreams#inReplyTo",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex83-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "This is all there is.",
"inReplyTo": {
"type": "Note",
"content": "What else is there?",
"summary": "Previous note"
},
"summary": "A simple note"
},
"name": "Example 83"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex84-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "This is all there is.",
"inReplyTo": "http://example.org/posts/1",
"summary": "A simple note"
},
"name": "Example 84"
}
],
"notes": "Indicates one or more entities for which this object is considered a response.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-inreplyto",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "inReplyTo",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-inreplyto"
},
{
"id": "https://www.w3.org/ns/activitystreams#instrument",
"type": "rdf:Property",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex101-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Listen",
"actor": {
"type": "Person",
"name": "Sally"
},
"instrument": {
"type": "Service",
"name": "Acme Music Service"
},
"object": "http://example.org/foo.mp3",
"summary": "Sally listened to a piece of music on the Acme Music Service"
},
"name": "Example 85"
},
"notes": "Identifies one or more objects used (or to be used) in the completion of an Activity.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-instrument",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "instrument",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-instrument"
},
{
"id": "https://www.w3.org/ns/activitystreams#last",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex87-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Collection",
"last": "http://example.org/collection?page=1",
"summary": "A collection",
"totalItems": 3
},
"name": "Example 86"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex88-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Collection",
"last": {
"type": "owl:Class",
"url": "http://example.org/collection?page=1",
"summary": "Last Page"
},
"summary": "A collection",
"totalItems": 5
},
"name": "Example 87"
}
],
"notes": "In a paged Collection, indicates the furthest proceeding page of the collection.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection",
"name": "Collection"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-last",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage",
"name": "CollectionPage"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "last",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-last"
},
{
"id": "https://www.w3.org/ns/activitystreams#location",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex89-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Person",
"location": {
"type": "Place",
"altitude": 90,
"latitude": 56.78,
"longitude": 12.34,
"name": "Over the Arabian Sea, east of Socotra Island Nature Sanctuary",
"units": "m"
},
"name": "Sally"
},
"name": "Example 88"
},
"notes": "Indicates one or more physical or logical locations associated with the object.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-location",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "location",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-location"
},
{
"id": "https://www.w3.org/ns/activitystreams#items",
"type": "rdf:Property",
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex91-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Collection",
"items": [
{
"type": "Note",
"name": "Reminder for Going-Away Party"
},
{
"type": "Note",
"name": "Meeting 2016-11-17"
}
],
"summary": "Sally's notes",
"totalItems": 2
},
"name": "Example 89"
}
],
"notes": "Identifies the items contained in a collection. The items might be ordered or unordered.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection",
"name": "Collection"
}
},
"@wtf_without_property": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollection",
"name": "OrderedCollection"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage",
"name": "OrderedCollectionPage"
}
],
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-items",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "items",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-items"
},
{
"id": "https://www.w3.org/ns/activitystreams#orderedItems",
"type": "rdf:Property",
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex92-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "OrderedCollection",
"orderedItems": [
{
"type": "Note",
"name": "Meeting 2016-11-17"
},
{
"type": "Note",
"name": "Reminder for Going-Away Party"
}
],
"summary": "Sally's notes",
"totalItems": 2
},
"name": "Example 90"
}
],
"notes": "Identifies the items contained in an ordered collection. The items are ordered.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollection",
"name": "OrderedCollection"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedItems",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "orderedItems",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedItems"
},
{
"id": "https://www.w3.org/ns/activitystreams#oneOf",
"type": "rdf:Property",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex93-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Question",
"name": "What is the answer?",
"oneOf": [
{
"type": "Note",
"name": "Option A"
},
{
"type": "Note",
"name": "Option B"
}
]
},
"name": "Example 91"
},
"notes": "Identifies an exclusive option for a Question. Use of oneOf implies that the Question can have only a single answer. To indicate that a Question can have multiple answers, use anyOf.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-question",
"name": "Question"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-oneof",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "oneOf",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-oneof"
},
{
"id": "https://www.w3.org/ns/activitystreams#anyOf",
"type": "rdf:Property",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex94-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Question",
"anyOf": [
{
"type": "Note",
"name": "Option A"
},
{
"type": "Note",
"name": "Option B"
}
],
"name": "What is the answer?"
},
"name": "Example 92"
},
"notes": "Identifies an inclusive option for a Question. Use of anyOf implies that the Question can have multiple answers. To indicate that a Question can have only one answer, use oneOf.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-question",
"name": "Question"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-anyof",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "anyOf",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-anyof"
},
{
"id": "https://www.w3.org/ns/activitystreams#closed",
"type": "rdf:Property",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex94b-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Question",
"closed": "2016-05-10T00:00:00Z",
"name": "What is the answer?"
},
"name": "Example 93"
},
"notes": "Indicates that a question has been closed, and answers are no longer accepted.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-question",
"name": "Question"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-closed",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
"xsd:dateTime",
"xsd:boolean"
]
},
"name": "closed",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-closed"
},
{
"id": "https://www.w3.org/ns/activitystreams#origin",
"type": "rdf:Property",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex166-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Move",
"actor": "http://sally.example.org",
"object": "http://example.org/posts/1",
"origin": {
"type": "Collection",
"name": "List A"
},
"summary": "Sally moved a post from List A to List B",
"target": {
"type": "Collection",
"name": "List B"
}
},
"name": "Example 94"
},
"notes": "Describes an indirect object of the activity from which the activity is directed. The precise meaning of the origin is the object of the English preposition \"from\". For instance, in the activity \"John moved an item to List B from List A\", the origin of the activity is \"List A\".",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-origin",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "origin",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-origin"
},
{
"id": "https://www.w3.org/ns/activitystreams#next",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex96-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "CollectionPage",
"items": [
"http://example.org/posts/1",
"http://example.org/posts/2",
"http://example.org/posts/3"
],
"next": "http://example.org/collection?page=2",
"summary": "Page 2 of Sally's blog posts"
},
"name": "Example 95"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex97-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "CollectionPage",
"items": [
"http://example.org/posts/1",
"http://example.org/posts/2",
"http://example.org/posts/3"
],
"next": {
"type": "owl:Class",
"url": "http://example.org/collection?page=2",
"name": "Next Page"
},
"summary": "Page 2 of Sally's blog posts"
},
"name": "Example 96"
}
],
"notes": "In a paged Collection, indicates the next page of items.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage",
"name": "CollectionPage"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-next",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage",
"name": "CollectionPage"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "next",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-next"
},
{
"id": "https://www.w3.org/ns/activitystreams#object",
"type": "rdf:Property",
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex98-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Like",
"actor": "http://sally.example.org",
"object": "http://example.org/posts/1",
"summary": "Sally liked a post"
},
"name": "Example 97"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex99-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Like",
"actor": "http://sally.example.org",
"object": {
"type": "Note",
"content": "A simple note"
}
},
"name": "Example 98"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex100-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Like",
"actor": "http://sally.example.org",
"object": [
"http://example.org/posts/1",
{
"type": "Note",
"content": "That is a tree.",
"summary": "A simple note"
}
],
"summary": "Sally liked a note"
},
"name": "Example 99"
}
],
"notes": "When used within an Activity, describes the direct object of the activity. For instance, in the activity \"John added a movie to his wishlist\", the object of the activity is the movie added. When used within a Relationship describes the entity to which the subject is related.",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
]
},
"@wtf_without_property": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-intransitiveactivity",
"name": "IntransitiveActivity"
}
],
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object-term",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "object",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object-term"
},
{
"id": "https://www.w3.org/ns/activitystreams#prev",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex104-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "CollectionPage",
"items": [
"http://example.org/posts/1",
"http://example.org/posts/2",
"http://example.org/posts/3"
],
"prev": "http://example.org/collection?page=1",
"summary": "Page 1 of Sally's blog posts"
},
"name": "Example 100"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex105-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "CollectionPage",
"items": [
"http://example.org/posts/1",
"http://example.org/posts/2",
"http://example.org/posts/3"
],
"prev": {
"type": "owl:Class",
"url": "http://example.org/collection?page=1",
"name": "Previous Page"
},
"summary": "Page 1 of Sally's blog posts"
},
"name": "Example 101"
}
],
"notes": "In a paged Collection, identifies the previous page of items.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage",
"name": "CollectionPage"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-prev",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage",
"name": "CollectionPage"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "prev",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-prev"
},
{
"id": "https://www.w3.org/ns/activitystreams#preview",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex106-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Video",
"duration": "PT2H30M",
"name": "Cool New Movie",
"preview": {
"type": "Video",
"duration": "PT1M",
"name": "Trailer",
"url": {
"url": "http://example.org/trailer.mkv",
"mediaType": "video/mkv"
}
}
},
"name": "Example 102"
},
"notes": "Identifies an entity that provides a preview of this object.",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-preview",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
]
},
"name": "preview",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-preview"
},
{
"id": "https://www.w3.org/ns/activitystreams#result",
"type": "rdf:Property",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex108-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": [
"Activity",
"http://www.verbs.example/Check"
],
"actor": "http://sally.example.org",
"object": "http://example.org/flights/1",
"result": {
"type": "http://www.types.example/flightstatus",
"name": "On Time"
},
"summary": "Sally checked that her flight was on time"
},
"name": "Example 103"
},
"notes": "Describes the result of the activity. For instance, if a particular action results in the creation of a new resource, the result property can be used to describe that new resource.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-result",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "result",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-result"
},
{
"id": "https://www.w3.org/ns/activitystreams#replies",
"type": [
"rdf:Property",
"owl:ObjectProperty",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex112-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"id": "http://www.test.example/notes/1",
"type": "Note",
"content": "I am fine.",
"replies": {
"type": "Collection",
"items": {
"type": "Note",
"content": "I am glad to hear it.",
"inReplyTo": "http://www.test.example/notes/1",
"summary": "A response to the note"
},
"totalItems": 1
},
"summary": "A simple note"
},
"name": "Example 104"
},
"notes": "Identifies a Collection containing objects considered to be responses to this object.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-replies",
"range": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection",
"name": "Collection"
}
},
"name": "replies",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-replies"
},
{
"id": "https://www.w3.org/ns/activitystreams#tag",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex118-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Image",
"summary": "Picture of Sally",
"tag": {
"id": "http://sally.example.org",
"type": "Person",
"name": "Sally"
},
"url": "http://example.org/sally.jpg"
},
"name": "Example 105"
},
"notes": "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.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "tag",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag"
},
{
"id": "https://www.w3.org/ns/activitystreams#target",
"type": "rdf:Property",
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex120-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Offer",
"actor": "http://sally.example.org",
"object": "http://example.org/posts/1",
"summary": "Sally offered the post to John",
"target": "http://john.example.org"
},
"name": "Example 106"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex121-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Offer",
"actor": "http://sally.example.org",
"object": "http://example.org/posts/1",
"summary": "Sally offered the post to John",
"target": {
"type": "Person",
"name": "John"
}
},
"name": "Example 107"
}
],
"notes": "Describes the indirect object, or target, of the activity. The precise meaning of the target is largely dependent on the type of action being described but will often be the object of the English preposition \"to\". For instance, in the activity \"John added a movie to his wishlist\", the target of the activity is John's wishlist. An activity can have more than one target.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity",
"name": "Activity"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-target",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "target",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-target"
},
{
"id": "https://www.w3.org/ns/activitystreams#to",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex123-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Offer",
"actor": "http://sally.example.org",
"object": "http://example.org/posts/1",
"summary": "Sally offered the post to John",
"target": "http://john.example.org",
"to": "http://joe.example.org"
},
"name": "Example 108"
},
"notes": "Identifies an entity considered to be part of the public primary audience of an Object",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-to",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "to",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-to"
},
{
"id": "https://www.w3.org/ns/activitystreams#url",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex124-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Document",
"name": "4Q Sales Forecast",
"url": "http://example.org/4q-sales-forecast.pdf"
},
"name": "Example 109"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex125-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Document",
"name": "4Q Sales Forecast",
"url": {
"type": "owl:Class",
"url": "http://example.org/4q-sales-forecast.pdf"
}
},
"name": "Example 110"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex126-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Document",
"name": "4Q Sales Forecast",
"url": [
{
"type": "owl:Class",
"url": "http://example.org/4q-sales-forecast.pdf",
"mediaType": "application/pdf"
},
{
"type": "owl:Class",
"url": "http://example.org/4q-sales-forecast.html",
"mediaType": "text/html"
}
]
},
"name": "Example 111"
}
],
"notes": "Identifies one or more links to representations of the object",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-url",
"range": {
"type": "owl:Class",
"unionOf": [
"xsd:anyURI",
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "url",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-url"
},
{
"id": "https://www.w3.org/ns/activitystreams#accuracy",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex127-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Place",
"accuracy": 94.5,
"latitude": 36.75,
"longitude": 119.7667,
"name": "Liu Gu Lu Cun, Pingdu, Qingdao, Shandong, China"
},
"name": "Example 112"
},
"notes": "Indicates the accuracy of position coordinates on a Place objects. Expressed in properties of percentage. e.g. \"94.0\" means \"94.0% accurate\".",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-place",
"name": "Place"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-accuracy",
"range": {
"type": "owl:Class",
"unionOf": "xsd:float"
},
"name": "accuracy",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-accuracy"
},
{
"id": "https://www.w3.org/ns/activitystreams#altitude",
"type": [
"rdf:Property",
"owl:ObjectProperty",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex129-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Place",
"altitude": 15,
"latitude": 36.75,
"longitude": 119.7667,
"name": "Fresno Area",
"units": "miles"
},
"name": "Example 113"
},
"notes": "Indicates the altitude of a place. The measurement units is indicated using the units property. If units is not specified, the default is assumed to be \"m\" indicating meters.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-altitude",
"range": {
"type": "owl:Class",
"unionOf": "xsd:float"
},
"name": "altitude",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-altitude"
},
{
"id": "https://www.w3.org/ns/activitystreams#content",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex130-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "A <em>simple</em> note",
"summary": "A simple note"
},
"name": "Example 114"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex131-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"contentMap": {
"en": "A <em>simple</em> note",
"es": "Una nota <em>sencilla</em>",
"zh-hans": "一段<em>简单的</em>笔记"
},
"summary": "A simple note"
},
"name": "Example 115"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex130b-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "## A simple note\nA simple markdown `note`",
"mediaType": "text/markdown",
"summary": "A simple note"
},
"name": "Example 116"
}
],
"notes": "The content or textual representation of the Object encoded as a JSON string. By default, the value of content is HTML. The mediaType property can be used in the object to indicate a different content type. The content MAY be expressed using multiple language-tagged values.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-content",
"range": {
"type": "owl:Class",
"unionOf": [
"xsd:string",
"rdf:langString"
]
},
"name": "content",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-content"
},
{
"id": "https://www.w3.org/ns/activitystreams#name",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex132-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"name": "A simple note"
},
"name": "Example 117"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex133-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"nameMap": {
"en": "A simple note",
"es": "Una nota sencilla",
"zh-hans": "一段简单的笔记"
}
},
"name": "Example 118"
}
],
"notes": "A simple, human-readable, plain-text name for the object. HTML markup MUST NOT be included. The name MAY be expressed using multiple language-tagged values.",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-name",
"range": {
"type": "owl:Class",
"unionOf": [
"xsd:string",
"rdf:langString"
]
},
"name": "name",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-name"
},
{
"id": "https://www.w3.org/ns/activitystreams#duration",
"type": [
"rdf:Property",
"owl:ObjectProperty",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex134-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Video",
"duration": "PT2H",
"name": "Birds Flying",
"url": "http://example.org/video.mkv"
},
"name": "Example 119"
},
"notes": "When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object's approximate duration. The value MUST be expressed as an xsd:duration as defined by [xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as \"PT5S\").",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration",
"range": {
"type": "owl:Class",
"unionOf": "xsd:duration"
},
"name": "duration",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration"
},
{
"id": "https://www.w3.org/ns/activitystreams#height",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex136-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Link",
"height": 100,
"url": "http://example.org/image.png",
"width": 100
},
"name": "Example 120"
},
"notes": "On a Link, specifies a hint as to the rendering height in device-independent pixels of the linked resource.",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image",
"name": "Image"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-height",
"range": {
"type": "owl:Class",
"unionOf": "xsd:nonNegativeInteger"
},
"name": "height",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-height"
},
{
"id": "https://www.w3.org/ns/activitystreams#href",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex137-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Link",
"url": "http://example.org/abc",
"mediaType": "text/html",
"name": "Previous"
},
"name": "Example 121"
},
"notes": "The target resource pointed to by a Link.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-href",
"range": {
"type": "owl:Class",
"unionOf": "xsd:anyURI"
},
"name": "href",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-href"
},
{
"id": "https://www.w3.org/ns/activitystreams#hreflang",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex138-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Link",
"url": "http://example.org/abc",
"hreflang": "en",
"mediaType": "text/html",
"name": "Previous"
},
"name": "Example 122"
},
"notes": "Hints as to the language used by the target resource. Value MUST be a [BCP47] Language-Tag.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-hreflang",
"range": {
"type": "owl:Class",
"unionOf": "rfc:bcp47"
},
"name": "hreflang",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-hreflang"
},
{
"id": "https://www.w3.org/ns/activitystreams#partOf",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex139-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"id": "http://example.org/collection?page=1",
"type": "CollectionPage",
"items": [
{
"type": "Note",
"name": "Pizza Toppings to Try"
},
{
"type": "Note",
"name": "Thought about California"
}
],
"partOf": "http://example.org/collection",
"summary": "Page 1 of Sally's notes"
},
"name": "Example 123"
},
"notes": "Identifies the Collection to which a CollectionPage objects items belong.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage",
"name": "CollectionPage"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-partof",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection",
"name": "Collection"
}
]
},
"name": "partOf",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-partof"
},
{
"id": "https://www.w3.org/ns/activitystreams#latitude",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex140-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Place",
"latitude": 36.75,
"longitude": 119.7667,
"name": "Fresno Area",
"radius": 15,
"units": "miles"
},
"name": "Example 124"
},
"notes": "The latitude of a place",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-place",
"name": "Place"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-latitude",
"range": {
"type": "owl:Class",
"unionOf": "xsd:float"
},
"name": "latitude",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-latitude"
},
{
"id": "https://www.w3.org/ns/activitystreams#longitude",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex141-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Place",
"latitude": 36.75,
"longitude": 119.7667,
"name": "Fresno Area",
"radius": 15,
"units": "miles"
},
"name": "Example 125"
},
"notes": "The longitude of a place",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-place",
"name": "Place"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-longitude",
"range": {
"type": "owl:Class",
"unionOf": "xsd:float"
},
"name": "longitude",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-longitude"
},
{
"id": "https://www.w3.org/ns/activitystreams#mediaType",
"type": [
"rdf:Property",
"owl:ObjectProperty",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex142-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Link",
"url": "http://example.org/abc",
"hreflang": "en",
"mediaType": "text/html",
"name": "Next"
},
"name": "Example 126"
},
"notes": "When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mediatype",
"range": {
"type": "owl:Class",
"unionOf": "rfc:rfc2045"
},
"name": "mediaType",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mediatype"
},
{
"id": "https://www.w3.org/ns/activitystreams#endTime",
"type": [
"rdf:Property",
"owl:ObjectProperty",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex144-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Event",
"endTime": "2015-01-01T06:00:00-08:00",
"name": "Going-Away Party for Jim",
"startTime": "2014-12-31T23:00:00-08:00"
},
"name": "Example 127"
},
"notes": "The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-endtime",
"range": {
"type": "owl:Class",
"unionOf": "xsd:dateTime"
},
"name": "endTime",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-endtime"
},
{
"id": "https://www.w3.org/ns/activitystreams#published",
"type": [
"rdf:Property",
"owl:ObjectProperty",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex145-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "Fish swim.",
"published": "2014-12-12T12:12:12Z",
"summary": "A simple note"
},
"name": "Example 128"
},
"notes": "The date and time at which the object was published",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-published",
"range": {
"type": "owl:Class",
"unionOf": "xsd:dateTime"
},
"name": "published",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-published"
},
{
"id": "https://www.w3.org/TR/activitypub/#source-property",
"type": [
"rdf:Property",
"owl:ObjectProperty",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitypub/#source-property",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"@context": ["https://www.w3.org/ns/activitystreams", {"@language": "en"}],
"type": "Note",
"id": "http://postparty.example/p/2415",
"content": "<p>I <em>really</em> like strawberries!</p>",
"source": {
"content": "I *really* like strawberries!",
"mediaType": "text/markdown"}
},
"name": "Example 8"
},
"notes": "The source property is intended to convey some sort of source from which the content markup was derived, as a form of provenance, or to support future editing by clients.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitypub/#source-property",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"name": "source",
"url": "https://www.w3.org/TR/activitypub/#source-property"
},
{
"id": "https://www.w3.org/ns/activitystreams#startTime",
"type": [
"rdf:Property",
"owl:ObjectProperty",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex146-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Event",
"endTime": "2015-01-01T06:00:00-08:00",
"name": "Going-Away Party for Jim",
"startTime": "2014-12-31T23:00:00-08:00"
},
"name": "Example 129"
},
"notes": "The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-starttime",
"range": {
"type": "owl:Class",
"unionOf": "xsd:dateTime"
},
"name": "startTime",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-starttime"
},
{
"id": "https://www.w3.org/ns/activitystreams#radius",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex147-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Place",
"latitude": 36.75,
"longitude": 119.7667,
"name": "Fresno Area",
"radius": 15,
"units": "miles"
},
"name": "Example 130"
},
"notes": "The radius from the given latitude and longitude for a Place. The units is expressed by the units property. If units is not specified, the default is assumed to be \"m\" indicating \"meters\".",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-place",
"name": "Place"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-radius",
"range": {
"type": "owl:Class",
"unionOf": "xsd:float"
},
"name": "radius",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-radius"
},
{
"id": "https://www.w3.org/ns/activitystreams#rel",
"type": "rdf:Property",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex149-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Link",
"url": "http://example.org/abc",
"hreflang": "en",
"mediaType": "text/html",
"name": "Preview",
"rel": [
"canonical",
"preview"
]
},
"name": "Example 131"
},
"notes": "A link relation associated with a Link. The value MUST conform to both the [HTML5] and [RFC5988] \"link relation\" definitions. In the [HTML5], any string not containing the \"space\" U+0020, \"tab\" (U+0009), \"LF\" (U+000A), \"FF\" (U+000C), \"CR\" (U+000D) or \",\" (U+002C) characters can be used as a valid link relation.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-rel",
"range": {
"type": "owl:Class",
"unionOf": "rfc:rfc5988"
},
"name": "rel",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-rel"
},
{
"id": "https://www.w3.org/ns/activitystreams#startIndex",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex150-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "OrderedCollectionPage",
"orderedItems": [
{
"type": "Note",
"name": "Density of Water"
},
{
"type": "Note",
"name": "Air Mattress Idea"
}
],
"startIndex": 0,
"summary": "Page 1 of Sally's notes"
},
"name": "Example 132"
},
"notes": "A non-negative integer value identifying the relative position within the logical view of a strictly ordered collection.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage",
"name": "OrderedCollectionPage"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-startindex",
"range": {
"type": "owl:Class",
"unionOf": "xsd:nonNegativeInteger"
},
"name": "startIndex",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-startindex"
},
{
"id": "https://www.w3.org/ns/activitystreams#summary",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"example": [
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex152-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"name": "Cane Sugar Processing",
"summary": "A simple <em>note</em>"
},
"name": "Example 133"
},
{
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex153-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"name": "Cane Sugar Processing",
"summaryMap": {
"en": "A simple <em>note</em>",
"es": "Una <em>nota</em> sencilla",
"zh-hans": "一段<em>简单的</em>笔记"
}
},
"name": "Example 134"
}
],
"notes": "A natural language summarization of the object encoded as HTML. Multiple language tagged summaries MAY be provided.",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-summary",
"range": {
"type": "owl:Class",
"unionOf": [
"xsd:string",
"rdf:langString"
]
},
"name": "summary",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-summary"
},
{
"id": "https://www.w3.org/ns/activitystreams#totalItems",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex156-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Collection",
"items": [
{
"type": "Note",
"name": "Which Staircase Should I Use"
},
{
"type": "Note",
"name": "Something to Remember"
}
],
"summary": "Sally's notes",
"totalItems": 2
},
"name": "Example 135"
},
"notes": "A non-negative integer specifying the total number of objects contained by the logical view of the collection. This number might not reflect the actual number of items serialized within the Collection object instance.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection",
"name": "Collection"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-totalitems",
"range": {
"type": "owl:Class",
"unionOf": "xsd:nonNegativeInteger"
},
"name": "totalItems",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-totalitems"
},
{
"id": "https://www.w3.org/ns/activitystreams#units",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex157-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Place",
"latitude": 36.75,
"longitude": 119.7667,
"name": "Fresno Area",
"radius": 15,
"units": "miles"
},
"name": "Example 136"
},
"notes": "Specifies the measurement units for the radius and altitude properties on a Place object. If not specified, the default is assumed to be \"m\" for \"meters\".",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-place",
"name": "Place"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-units",
"range": {
"type": "owl:Class",
"unionOf": [
"xsd:string",
"xsd:anyURI"
]
},
"name": "units",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-units"
},
{
"id": "https://www.w3.org/ns/activitystreams#updated",
"type": [
"rdf:Property",
"owl:ObjectProperty",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex158-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Note",
"content": "Mush it up so it does not have the same shape as the can.",
"name": "Cranberry Sauce Idea",
"updated": "2014-12-12T12:12:12Z"
},
"name": "Example 137"
},
"notes": "The date and time at which the object was updated",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-updated",
"range": {
"type": "owl:Class",
"unionOf": "xsd:dateTime"
},
"name": "updated",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-updated"
},
{
"id": "https://www.w3.org/ns/activitystreams#width",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex159-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Link",
"height": 100,
"url": "http://example.org/image.png",
"width": 100
},
"name": "Example 138"
},
"notes": "On a Link, specifies a hint as to the rendering width in device-independent pixels of the linked resource.",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image",
"name": "Image"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-width",
"range": {
"type": "owl:Class",
"unionOf": "xsd:nonNegativeInteger"
},
"name": "width",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-width"
},
{
"id": "https://www.w3.org/ns/activitystreams#subject",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex22a-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Relationship",
"object": {
"type": "Person",
"name": "John"
},
"relationship": "http://purl.org/vocab/relationship/acquaintanceOf",
"subject": {
"type": "Person",
"name": "Sally"
},
"summary": "Sally is an acquaintance of John's"
},
"name": "Example 139"
},
"notes": "On a Relationship object, the subject property identifies one of the connected individuals. For instance, for a Relationship object describing \"John is related to Sally\", subject would refer to John.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-relationship",
"name": "Relationship"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-subject",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link",
"name": "Link"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
]
},
"name": "subject",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-subject"
},
{
"id": "https://www.w3.org/ns/activitystreams#relationship",
"type": "rdf:Property",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex22c-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Relationship",
"object": {
"type": "Person",
"name": "John"
},
"relationship": "http://purl.org/vocab/relationship/acquaintanceOf",
"subject": {
"type": "Person",
"name": "Sally"
},
"summary": "Sally is an acquaintance of John's"
},
"name": "Example 140"
},
"notes": "On a Relationship object, the relationship property identifies the kind of relationship that exists between subject and object.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-relationship",
"name": "Relationship"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-relationship-term",
"range": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"name": "relationship",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-relationship-term"
},
{
"id": "https://www.w3.org/ns/activitystreams#describes",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex185-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Profile",
"describes": {
"type": "Person",
"name": "Sally"
},
"summary": "Sally's profile",
"url": "http://sally.example.org"
},
"name": "Example 141"
},
"notes": "On a Profile object, the describes property identifies the object described by the Profile.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-profile",
"name": "Profile"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-describes",
"range": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"name": "describes",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-describes"
},
{
"id": "https://www.w3.org/ns/activitystreams#formerType",
"type": "rdf:Property",
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex185b-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Tombstone",
"formerType": "/Image",
"summary": "This image has been deleted",
"url": "http://example.org/image/2"
},
"name": "Example 142"
},
"notes": "On a Tombstone object, the formerType property identifies the type of the object that was deleted.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone",
"name": "Tombstone"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-formertype",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
},
"xsd:string"
]
},
"name": "formerType",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-formertype"
},
{
"id": "https://www.w3.org/ns/activitystreams#deleted",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitystreams-vocabulary/#ex185c-jsonld",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"type": "Tombstone",
"deleted": "2016-05-03T00:00:00Z",
"summary": "This image has been deleted"
},
"name": "Example 143"
},
"notes": "On a Tombstone object, the deleted property is a timestamp for when the object was deleted.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone",
"name": "Tombstone"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-deleted",
"range": {
"type": "owl:Class",
"unionOf": "xsd:dateTime"
},
"name": "deleted",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-deleted"
},
{
"id": "https://www.w3.org/ns/activitystreams#sensitive",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"notes": "Indicates that some users may wish to apply discretion about viewing this object's content, whether due to nudity, violence, or any other likely aspects that viewers may be sensitive to.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#sensitive",
"range": {
"type": "owl:Class",
"unionOf": "xsd:boolean"
},
"name": "sensitive",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#sensitive"
},
{
"id": "https://www.w3.org/TR/activitypub/#inbox",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitypub/#example9",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"@context": ["https://www.w3.org/ns/activitystreams", {"@language": "ja"}],
"type": "Person",
"id": "https://kenzoishii.example.com/",
"following": "https://kenzoishii.example.com/following.json",
"followers": "https://kenzoishii.example.com/followers.json",
"liked": "https://kenzoishii.example.com/liked.json",
"inbox": "https://kenzoishii.example.com/inbox.json",
"outbox": "https://kenzoishii.example.com/feed.json",
"preferredUsername": "kenzoishii",
"name": "石井健蔵",
"summary": "この方はただの例です",
"icon": ["https://kenzoishii.example.com/image/165987aklre4"]
},
"name": "Example 9"
},
"notes": "A reference to an ActivityStreams OrderedCollection comprised of all the messages received by the actor.",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Application",
"name": "Application"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Group",
"name": "Group"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Organization",
"name": "Organization"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Person",
"name": "Person"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Service",
"name": "Service"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitypub/#inbox",
"range": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#OrderedCollection",
"name": "OrderedCollection"
}
},
"name": "inbox",
"url": "https://www.w3.org/TR/activitypub/#inbox"
},
{
"id": "https://www.w3.org/TR/activitypub/#outbox",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitypub/#example9",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"@context": ["https://www.w3.org/ns/activitystreams", {"@language": "ja"}],
"type": "Person",
"id": "https://kenzoishii.example.com/",
"following": "https://kenzoishii.example.com/following.json",
"followers": "https://kenzoishii.example.com/followers.json",
"liked": "https://kenzoishii.example.com/liked.json",
"inbox": "https://kenzoishii.example.com/inbox.json",
"outbox": "https://kenzoishii.example.com/feed.json",
"preferredUsername": "kenzoishii",
"name": "石井健蔵",
"summary": "この方はただの例です",
"icon": ["https://kenzoishii.example.com/image/165987aklre4"]
},
"name": "Example 9"
},
"notes": "An ActivityStreams OrderedCollection comprised of all the messages produced by the actor",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Application",
"name": "Application"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Group",
"name": "Group"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Organization",
"name": "Organization"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Person",
"name": "Person"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Service",
"name": "Service"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitypub/#outbox",
"range": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#OrderedCollection",
"name": "OrderedCollection"
}
},
"name": "outbox",
"url": "https://www.w3.org/TR/activitypub/#outbox"
},
{
"id": "https://www.w3.org/TR/activitypub/#following",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitypub/#example9",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"@context": ["https://www.w3.org/ns/activitystreams", {"@language": "ja"}],
"type": "Person",
"id": "https://kenzoishii.example.com/",
"following": "https://kenzoishii.example.com/following.json",
"followers": "https://kenzoishii.example.com/followers.json",
"liked": "https://kenzoishii.example.com/liked.json",
"inbox": "https://kenzoishii.example.com/inbox.json",
"outbox": "https://kenzoishii.example.com/feed.json",
"preferredUsername": "kenzoishii",
"name": "石井健蔵",
"summary": "この方はただの例です",
"icon": ["https://kenzoishii.example.com/image/165987aklre4"]
},
"name": "Example 9"
},
"notes": "A link to an ActivityStreams collection of the actors that this actor is following",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Application",
"name": "Application"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Group",
"name": "Group"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Organization",
"name": "Organization"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Person",
"name": "Person"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Service",
"name": "Service"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitypub/#following",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#OrderedCollection",
"name": "OrderedCollection"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Collection",
"name": "Collection"
}
]
},
"name": "following",
"url": "https://www.w3.org/TR/activitypub/#following"
},
{
"id": "https://www.w3.org/TR/activitypub/#followers",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitypub/#example9",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"@context": ["https://www.w3.org/ns/activitystreams", {"@language": "ja"}],
"type": "Person",
"id": "https://kenzoishii.example.com/",
"following": "https://kenzoishii.example.com/following.json",
"followers": "https://kenzoishii.example.com/followers.json",
"liked": "https://kenzoishii.example.com/liked.json",
"inbox": "https://kenzoishii.example.com/inbox.json",
"outbox": "https://kenzoishii.example.com/feed.json",
"preferredUsername": "kenzoishii",
"name": "石井健蔵",
"summary": "この方はただの例です",
"icon": ["https://kenzoishii.example.com/image/165987aklre4"]
},
"name": "Example 9"
},
"notes": "A link to an ActivityStreams collection of the actors that follow this actor",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Application",
"name": "Application"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Group",
"name": "Group"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Organization",
"name": "Organization"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Person",
"name": "Person"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Service",
"name": "Service"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitypub/#followers",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#OrderedCollection",
"name": "OrderedCollection"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Collection",
"name": "Collection"
}
]
},
"name": "followers",
"url": "https://www.w3.org/TR/activitypub/#followers"
},
{
"id": "https://www.w3.org/TR/activitypub/#liked",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"example": {
"id": "https://www.w3.org/TR/activitypub/#example9",
"type": "http://schema.org/CreativeWork",
"mainEntity": {
"@context": ["https://www.w3.org/ns/activitystreams", {"@language": "ja"}],
"type": "Person",
"id": "https://kenzoishii.example.com/",
"following": "https://kenzoishii.example.com/following.json",
"followers": "https://kenzoishii.example.com/followers.json",
"liked": "https://kenzoishii.example.com/liked.json",
"inbox": "https://kenzoishii.example.com/inbox.json",
"outbox": "https://kenzoishii.example.com/feed.json",
"preferredUsername": "kenzoishii",
"name": "石井健蔵",
"summary": "この方はただの例です",
"icon": ["https://kenzoishii.example.com/image/165987aklre4"]
},
"name": "Example 9"
},
"notes": "A link to an ActivityStreams collection of objects this actor has liked",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Application",
"name": "Application"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Group",
"name": "Group"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Organization",
"name": "Organization"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Person",
"name": "Person"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Service",
"name": "Service"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitypub/#liked",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#OrderedCollection",
"name": "OrderedCollection"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Collection",
"name": "Collection"
}
]
},
"name": "liked",
"url": "https://www.w3.org/TR/activitypub/#liked"
},
{
"id": "https://www.w3.org/TR/activitypub/#likes",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"notes": "This is a list of all Like activities with this object as the object property",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitypub/#likes",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#OrderedCollection",
"name": "OrderedCollection"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Collection",
"name": "Collection"
}
]
},
"name": "likes",
"url": "https://www.w3.org/TR/activitypub/#likes"
},
{
"id": "https://www.w3.org/TR/activitypub/#shares",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"notes": "This is a list of all Announce activities with this object as the object property",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitypub/#shares",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#OrderedCollection",
"name": "OrderedCollection"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Collection",
"name": "Collection"
}
]
},
"name": "shares",
"url": "https://www.w3.org/TR/activitypub/#shares"
},
{
"id": "https://www.w3.org/TR/activitypub/#streams",
"type": "rdf:Property",
"notes": "A list of supplementary Collections which may be of interest",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Application",
"name": "Application"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Group",
"name": "Group"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Organization",
"name": "Organization"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Person",
"name": "Person"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Service",
"name": "Service"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitypub/#streams",
"range": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#OrderedCollection",
"name": "OrderedCollection"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Collection",
"name": "Collection"
}
]
},
"name": "streams",
"url": "https://www.w3.org/TR/activitypub/#streams"
},
{
"id": "https://www.w3.org/TR/activitypub/#preferredUsername",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"notes": "A short username which may be used to refer to the actor, with no uniqueness guarantees",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Application",
"name": "Application"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Group",
"name": "Group"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Organization",
"name": "Organization"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Person",
"name": "Person"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Service",
"name": "Service"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitypub/#preferredUsername",
"range": {
"type": "owl:Class",
"unionOf": [
"xsd:string",
"rdf:langString"
]
},
"name": "preferredUsername",
"url": "https://www.w3.org/TR/activitypub/#preferredUsername"
},
{
"id": "https://www.w3.org/TR/activitypub/#manuallyApprovesFollowers",
"type": [
"rdf:Property",
"owl:FunctionalProperty"
],
"notes": "Indicates that the actor manually approves Follow activities and that an automatic Accept should not be expected.",
"domain": {
"type": "owl:Class",
"unionOf": [
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Application",
"name": "Application"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Group",
"name": "Group"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Organization",
"name": "Organization"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Person",
"name": "Person"
},
{
"type": "owl:Class",
"url": "https://www.w3.org/ns/activitystreams#Service",
"name": "Service"
}
]
},
"isDefinedBy": "https://www.w3.org/TR/activitypub/#manuallyApprovesFollowers",
"range": {
"type": "owl:Class",
"unionOf": "xsd:boolean"
},
"name": "manuallyApprovesFollowers",
"url": "https://www.w3.org/TR/activitypub/#manuallyApprovesFollowers"
}
]
}
}
}