2039 Branch

https://forgefed.peers.community/nsBranch

JSON

Inbox

Definition

Represents a named variable reference to a version of the Repository, typically used for committing changes in parallel to other development, and usually eventually merging the changes into the main history line.
see 3

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://example.dev/luke/myrepo/branches/master", "type": "Branch", "name": "master", "context": "https://example.dev/luke/myrepo", "ref": "refs/heads/master" }

2040 Commit

https://forgefed.peers.community/nsCommit

JSON

Inbox

Definition

Represents a named set of changes in the history of a Repository. This is called “commit” in Git, Mercurial and Monotone; “patch” in Darcs; sometimes called “change set”. Note that Commit is a set of changes that already exists in a repo’s history, while a Patch is a separate proposed change set, that could be applied and pushed to a repo, resulting with a Commit.
see 3

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://example.dev/alice/myrepo/commits/109ec9a09c7df7fec775d2ba0b9d466e5643ec8c", "type": "Commit", "context": "https://example.dev/alice/myrepo", "attributedTo": "https://example.dev/bob", "committedBy": "https://example.dev/alice", "hash": "109ec9a09c7df7fec775d2ba0b9d466e5643ec8c", "summary": "Add an installation script, fixes issue #89", "description": { "mediaType": "text/plain", "content": "It's about time people can install on their computers!" }, "created": "2019-07-11T12:34:56Z", "committed": "2019-07-26T23:45:01Z" }

2037 Push

https://forgefed.peers.community/nsPush

JSON

Inbox

Definition

Indicates that new content has been pushed to the Repository.
see 3 Push

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://example.dev/aviva/outbox/reBGo", "type": "Push", "actor": "https://example.dev/aviva", "to": [ "https://example.dev/aviva/followers", "https://example.dev/aviva/myproject", "https://example.dev/aviva/myproject/team", "https://example.dev/aviva/myproject/followers" ], "summary": "<p>Aviva pushed a commit to myproject</p>", "object": { "type": "OrderedCollection", "totalItems": 1, "items": [ { "id": "https://example.dev/aviva/myproject/commits/d96596230322716bd6f87a232a648ca9822a1c20", "type": "Commit", "attributedTo": "https://example.dev/aviva", "context": "https://example.dev/aviva/myproject", "hash": "d96596230322716bd6f87a232a648ca9822a1c20", "created": "2019-11-03T13:43:59Z", "summary": "Provide hints in sign-up form fields", } ] }, "target": "https://example.dev/aviva/myproject/branches/master", "context": "https://example.dev/aviva/myproject" }

2038 Repository

https://forgefed.peers.community/nsRepository

JSON

Inbox

Definition

Represents a version control system repository.
see 3

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://w3id.org/security/v1", "https://forgefed.peers.community/ns" ], "id": "https://dev.example/aviva/treesim", "type": "Repository", "publicKey": { "id": "https://dev.example/aviva/treesim#main-key", "owner": "https://dev.example/aviva/treesim", "publicKeyPem": "-----BEGIN PUBLIC KEY----- MIIBIjANBgkqhki....." }, "inbox": "https://dev.example/aviva/treesim/inbox", "outbox": "https://dev.example/aviva/treesim/outbox", "followers": "https://dev.example/aviva/treesim/followers", "team": "https://dev.example/aviva/treesim/team", "name": "Tree Growth 3D Simulation", "summary": "<p>Tree growth 3D simulator for my nature exploration game</p>" }

2042 Ticket

https://forgefed.peers.community/nsTicket

JSON

Inbox

Definition

Represents an item that requires work or attention. Tickets exist in the context of a project (which may or may not be a version-control repository), and are used to track ideas, proposals, tasks, bugs and more.
see 3

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "type": "Ticket", "id": "https://example.dev/alice/myrepo/issues/42", "context": "https://example.dev/alice/myrepo", "attributedTo": "https://dev.community/bob", "summary": "Nothing works!", "content": "<p>Please fix. <i>Everything</i> is broken!</p>", "mediaType": "text/html", "source": { "content": "Please fix. *Everything* is broken!", "mediaType": "text/markdown; variant=CommonMark" }, "assignedTo": "https://example.dev/alice", "isResolved": false }

2041 TicketDependency

https://forgefed.peers.community/nsTicketDependency

JSON

Inbox

Definition

Represents a relationship between 2 Tickets, in which the resolution of one ticket requires the other ticket to be resolved too. It MUST specify the subject, object and relationship properties, and the relationship property MUST be dependsOn.
see 3

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "type": ["Relationship", "TicketDependency"], "id": "https://example.dev/ticket-deps/2342593", "attributedTo": "https://example.dev/alice", "summary": "Alice's ticket depends on Bob's ticket", "published": "2019-07-11T12:34:56Z", "subject": "https://example.dev/alice/myproj/issues/42", "relationship": "dependsOn", "object": "https://dev.community/bob/coolproj/issues/85" }

2046 assignedTo

https://forgefed.peers.community/nsassignedTo

JSON

Inbox

Definition

Identifies the Person assigned to work on this Ticket.
see 4

2058 committed

https://forgefed.peers.community/nscommitted

JSON

Inbox

Definition

Specifies the time that a set of changes was committed into the Repository and became a Commit in it. This can be different from the time the set of changes was produced, e.g. if one person creates a patch and sends to another, and the other person then applies the patch to their copy of the repository. We call the former event “created” and the latter event “committed”, and this latter event is specified by the committed property.
see 4

2056 committedBy

https://forgefed.peers.community/nscommittedBy

JSON

Inbox

Definition

Identifies the actor (usually a person, but could be something else, e.g. a bot) that added a set of changes to the version-control Repository. Sometimes the author of the changes and the committer of those changes aren’t the same actor, in which case the committedBy property can be used to specify who added the changes to the repository. For example, when applying a patch to a repository, e.g. a Git repository, the author would be the person who made the patch, and the committer would be the person who applied the patch to their copy of the repository.
see 4

2045 currentVersion

https://forgefed.peers.community/nscurrentVersion

JSON

Inbox

Definition

see 4

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://dev.example/aviva/notes/107_old_version", "type": "Note", "attributedTo": "https://dev.example/aviva", "content": "I agree!!111", "currentVersion": "https://dev.example/aviva/notes/107" }

2053 dependants

https://forgefed.peers.community/nsdependants

JSON

Inbox

Definition

Identifies a Collection of TicketDependency which specify tickets that depends on this Ticket, i.e. this ticket is the object of the dependsOn relationship. Often called “reverse dependencies”.
see 4

2051 dependedBy

https://forgefed.peers.community/nsdependedBy

JSON

Inbox

Definition

Identifies one or more tickets which depend on this Ticket, i.e. they can’t be resolved without this tickets being resolved too.
see 4

2052 dependencies

https://forgefed.peers.community/nsdependencies

JSON

Inbox

Definition

Identifies a Collection of TicketDependency which specify tickets that this Ticket depends on, i.e. this ticket is the subject of the dependsOn relationship.
see 4

2050 dependsOn

https://forgefed.peers.community/nsdependsOn

JSON

Inbox

Definition

Identifies one or more tickets on which this Ticket depends, i.e. it can’t be resolved without those tickets being resolved too.
see 4

2055 description

https://forgefed.peers.community/nsdescription

JSON

Inbox

Definition

Specifies the description text of a Commit, which is an optional possibly multi-line text provided in addition to the one-line commit title. The range of the description property works the same way the range of the ActivityPub source property works.
see 4

Example

```json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://example.dev/alice/myrepo/commits/109ec9a09c7df7fec775d2ba0b9d466e5643ec8c", "type": "Commit", "context": "https://example.dev/alice/myrepo", "attributedTo": "https://example.dev/bob", "hash": "109ec9a09c7df7fec775d2ba0b9d466e5643ec8c", "created": "2019-07-11T12:34:56Z", "summary": "Add an installation script, fixes issue #89",

"description": {
    "mediaType": "text/plain",
    "content": "It's about time people can install on their computers!"
},

}```

2043 earlyItems

https://forgefed.peers.community/nsearlyItems

JSON

Inbox

Definition

In an ordered collection (or an ordered collection page) in which items (or orderedItems) contains a continuous subset of the collection’s items from one end, earlyItems identifiers a continuous subset from the other end. For example, if items lists the chronologically latest items, earlyItems would list the chrologically earliest items. The ordering rule for items in earlyItems MUST be the same as in items. For examle, if items lists items in reverse chronogical order, then so does earlyItems.
see 4

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://dev.example/aviva/outbox", "type": "OrderedCollection", "totalItems": 712, "orderedItems": [ "https://dev.example/aviva/outbox/712", "https://dev.example/aviva/outbox/711", "https://dev.example/aviva/outbox/710" ], "earlyItems": [ "https://dev.example/aviva/outbox/3", "https://dev.example/aviva/outbox/2", "https://dev.example/aviva/outbox/1" ] }

2059 filesAdded

https://forgefed.peers.community/nsfilesAdded

JSON

Inbox

Definition

Specifies a filename, as a relative path, relative to the top of the tree of files in the Repository, of a file that got added in this Commit, and didn’t exist in the previous version of the tree.
see 4

2060 filesModified

https://forgefed.peers.community/nsfilesModified

JSON

Inbox

Definition

Specifies a filename, as a relative path, relative to the top of the tree of files in the Repository, of a file that existed in the previous version of the tree, and its contents got modified in this Commit.
see 4

2061 filesRemoved

https://forgefed.peers.community/nsfilesRemoved

JSON

Inbox

Definition

Specifies a filename, as a relative path, relative to the top of the tree of files in the Repository, of a file that existed in the previous version of the tree, and got removed from the tree in this Commit.
see 4

2068 forks

https://forgefed.peers.community/nsforks

JSON

Inbox

Definition

Identifies an OrderedCollection of Repositorys which were created as forks of this Repository, i.e. by cloning it. The order of the collection items is by reverse chronological order of the forking events.
see 4

2057 hash

https://forgefed.peers.community/nshash

JSON

Inbox

Definition

Specifies the hash associated with a Commit, which is a unique identifier of the commit within the Repository, usually generated as a cryptographic hash function of some (or all) of the commit’s data or metadata. For example, in Git it would be the SHA1 hash of the commit; in Darcs it would be the SHA1 hash of the patch info.
see 4

2047 isResolved

https://forgefed.peers.community/nsisResolved

JSON

Inbox

Definition

Specifies whether the Ticket is closed, i.e. the work on it is done and it doesn’t need to attract attention anymore.
see 4

2044 previousVersions

https://forgefed.peers.community/nspreviousVersions

JSON

Inbox

Definition

see 4

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://dev.example/aviva/notes/107", "type": "Note", "attributedTo": "https://dev.example/aviva", "content": "I agree!!!!! (edit: fixed a typo)", "previousVersions": [ "https://dev.example/aviva/notes/107_old_version", "https://dev.example/aviva/notes/107_very_old_version", "https://dev.example/aviva/notes/107_ancient_version" ] }

2062 ref

https://forgefed.peers.community/nsref

JSON

Inbox

Definition

Specifies an identifier for a Branch, that is used in the Repository to uniquely refer to it. For example, in Git, “refs/heads/master” would be the ref of the master branch.
see 4

Example

```json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://example.dev/luke/myrepo/branches/master", "type": "Branch", "name": "master", "context": "https://example.dev/luke/myrepo",

"ref": "refs/heads/master"

}```

2054 repository

https://forgefed.peers.community/nsrepository

JSON

Inbox

Definition

Identifies the repository to which a commit belongs. DEPRECATED: Use the standard ActivityPub context property instead.
see 4

2049 resolved

https://forgefed.peers.community/nsresolved

JSON

Inbox

Definition

For a resolved Ticket, specifies the time the Ticket has been resolved.
see 4

2048 resolvedBy

https://forgefed.peers.community/nsresolvedBy

JSON

Inbox

Definition

Identifies the Actor who has resolved the Ticket, or the activity that has resolved the Ticket.
see 4

2066 sendPatchesTo

https://forgefed.peers.community/nssendPatchesTo

JSON

Inbox

Definition

Identifies the actor which tracks patches and merge requests related to the given repository. This is the actor to whom you send patches and merge requests you’d like to open against the repository.
see 4

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://dev.example/aviva/treesim", "type": "Repository", "name": "Tree Growth 3D Simulation", "summary": "<p>Tree growth 3D simulator for my nature exploration game</p>", "sendPatchesTo": "https://bugs.example/projects/treesim" }

2063 team

https://forgefed.peers.community/nsteam

JSON

Inbox

Definition

Notes:: Specifies a Collection of actors who are working on the object, or responsible for it, or managing or administrating it, or having edit access to it. For example, for a Repository, it could be the people who have push/edit access, the “collaborators” of the repository.
see 4

Example

json A repository https://dev.example/aviva/treesim: { "@context": [ "https://www.w3.org/ns/activitystreams", "https://w3id.org/security/v1", "https://forgefed.peers.community/ns" ], "id": "https://dev.example/aviva/treesim", "type": "Repository", "publicKey": { "id": "https://dev.example/aviva/treesim#main-key", "owner": "https://dev.example/aviva/treesim", "publicKeyPem": "-----BEGIN PUBLIC KEY----- MIIBIjANBgkqhki....." }, "inbox": "https://dev.example/aviva/treesim/inbox", "outbox": "https://dev.example/aviva/treesim/outbox", "followers": "https://dev.example/aviva/treesim/followers", "name": "Tree Growth 3D Simulation", "summary": "

Tree growth 3D simulator for my nature exploration game

",

"team": "https://dev.example/aviva/treesim/team"

} The repository’s team https://dev.example/aviva/treesim/team: { "@context": "https://www.w3.org/ns/activitystreams", "id": "https://dev.example/aviva/treesim/team", "type": "Collection", "totalItems": 3, "items": [ "https://dev.example/aviva", "https://dev.example/luke", "https://code.community/users/lorax" ] }```

2064 ticketsTrackedBy

https://forgefed.peers.community/nsticketsTrackedBy

JSON

Inbox

Definition

Identifies the actor which tracks tickets related to the given object. This is the actor to whom you send tickets you’d like to open against the object.
see 4

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://dev.example/aviva/treesim", "type": "Repository", "name": "Tree Growth 3D Simulation", "summary": "<p>Tree growth 3D simulator for my nature exploration game</p>", "ticketsTrackedBy": "https://bugs.example/projects/treesim" }

2067 tracksPatchesFor

https://forgefed.peers.community/nstracksPatchesFor

JSON

Inbox

Definition

Identifies repositories for which which this patch and merge request tracker tracks patches and merge requests. When you’d like to open patches or merge requests against those repositories, you can send them to this tracker.
see 4

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://project.example/treesim", "type": "Project", "tracksPatchesFor": [ "https://dev.example/aviva/liblsystem", "https://dev.example/aviva/3d-tree-models", "https://dev.example/aviva/treesim" ] }

2065 tracksTicketsFor

https://forgefed.peers.community/nstracksTicketsFor

JSON

Inbox

Definition

Identifies objects for which which this ticket tracker tracks tickets. When you’d like to open a ticket against those objects, you can send them to this tracker.
see 4

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://bugs.example/treesim", "type": "Project", "tracksTicketsFor": [ "https://dev.example/aviva/liblsystem", "https://dev.example/aviva/3d-tree-models", "https://dev.example/aviva/treesim" ] }

1558 moderators

https://join-lemmy.org#moderators

JSON

Inbox

Definition

The Community Moderators - Link to OrderedCollection
see Lemmy protocol docs. and Lemmy documentation

1557 stickied

https://join-lemmy.org#stickied

JSON

Inbox

Definition

True means that it is shown on top of the community.
see Lemmy protocol docs. and Lemmy documentation

1555 anonymous participation enabled

https://joinmobilizon.org/ns#anonymousParticipationEnabled

JSON

Inbox

Definition

We add this boolean field to know whether or not anonymous participants can participate in an event.

1553 joinMode

https://joinmobilizon.org/ns#joinMode

JSON

Inbox

Definition

Indicator of how new members may be able to join.
see mobilizon
Accepted values: free, restricted, invite (not used at the moment)

Example

{
  "@context": [
    "...",
    {
      "mz": "https://joinmobilizon.org/ns#",
      "joinMode": {
        "@id": "mz:joinMode",
        "@type": "mz:joinModeType"
      },
      "joinModeType": {
        "@id": "mz:joinModeType",
        "@type": "rdfs:Class"
      }
    }
  ],
  "...": "...",
  "joinMode": "restricted",
  "type": "Event",
  "url": "http://mobilizon1.com/events/8cf76e9f-c426-4912-9cd6-c7030b969611"
}

1554 joinModeType

https://joinmobilizon.org/ns#joinModeType

JSON

Inbox

1556 participation message

https://joinmobilizon.org/ns#participationMessage

JSON

Inbox

Definition

We add a participationMessage property on a Join activity so that participants may transmit a note to event organizers, to motivate their participation when event participations are manually approved. This field is restricted to plain text.

Example

{
  "type": "Join",
  "object": "http://mobilizon.test/events/some-uuid",
  "id": "http://mobilizon2.test/@admin/join/event/1",
  "actor": "http://mobilizon2.test/@admin",
  "participationMessage": "I want to join !",
  "@context": [
    {
      "participationMessage": {
        "@id": "mz:participationMessage",
        "@type": "sc:Text"
      }
    }
  ]
}

1551 repliesModerationOption

https://joinmobilizon.org/ns#repliesModerationOption

JSON

Inbox

Definition

Disabling replies is an ongoing issue with ActivityPub so mobilizon uses a temporary property.
see mobilizon
Accepted values: allow_all, closed, moderated (not used at the moment).

Example

{
  "@context": [
    "...",
    {
      "mz": "https://joinmobilizon.org/ns#",
      "pt": "https://joinpeertube.org/ns#",
      "repliesModerationOption": {
        "@id": "mz:repliesModerationOption",
        "@type": "mz:repliesModerationOptionType"
      },
      "repliesModerationOptionType": {
        "@id": "mz:repliesModerationOptionType",
        "@type": "rdfs:Class"
      },
      "commentsEnabled": {
        "@id": ":commentsEnabled",
        "@type": "sc:Boolean"
      }
    }
  ],
  "...": "...",
  "repliesModerationOption": "allow_all",
  "commentsEnabled": true,
  "type": "Event",
  "url": "http://mobilizon1.com/events/8cf76e9f-c426-4912-9cd6-c7030b969611"
}

1552 repliesModerationOptionType

https://joinmobilizon.org/ns#repliesModerationOptionType

JSON

Inbox

398 API Reference or software documentation

https://w3id.org/class/redaktor/APIReference

JSON

Inbox

Definition

Reference documentation for application programming interfaces (APIs) documentation for software or specifications.

1059 Abortion

https://w3id.org/class/redaktor/Abortion

JSON

Inbox

566 About Page

https://w3id.org/class/redaktor/AboutPage

JSON

Inbox

Definition

Web page type: About page.

Exact Match

201 Accept

https://w3id.org/class/redaktor/Accept

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-accept

Scope Note

: Activity

Example

Example 9

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally accepted an invitation to a party",
  "type": "Accept",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Invite",
    "actor": "http://john.example.org",
    "object": {
      "type": "Event",
      "name": "Going-Away Party for Jim"
    }
  }
}

870 Accommodation

https://w3id.org/class/redaktor/Accommodation

JSON

Inbox

Definition

An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement. For more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.

420 Achieve

https://w3id.org/class/redaktor/Achieve

JSON

Inbox

Definition

The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.

2 Activity

https://w3id.org/class/redaktor/Activity

JSON

Inbox

Definition

The Verbs. 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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity

Scope Note

: Core

Example

Example 3

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Activity",
  "summary": "Sally did something to a note",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Note",
    "name": "A Note"
  }
}

1 Actor

https://w3id.org/class/redaktor/Actor

JSON

Inbox

Definition

[virtual concept] The acting subject types. Any object can be an 'Actor' in ActivityPub but these are types describing most Actors. An Actor must have at least the inbox and outbox properties.

Scope Note

: Object

380 Actuality

https://w3id.org/class/redaktor/Actuality

JSON

Inbox

Definition

Recording of an event

202 Add

https://w3id.org/class/redaktor/Add

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-add

Scope Note

: Activity

Example

Example 12

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally added an object",
  "type": "Add",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": "http://example.org/abc"
}

871 Administrative Area

https://w3id.org/class/redaktor/AdministrativeArea

JSON

Inbox

Definition

A geographical region, typically under the jurisdiction of a particular government.

1352 Adult Oriented Enumeration

https://w3id.org/class/redaktor/AdultOrientedEnumeration

JSON

Inbox

Definition

Enumeration of considerations that make a product relevant or potentially restricted for adults only.

330 Advertiser Supplied

https://w3id.org/class/redaktor/AdvertiserSupplied

JSON

Inbox

Definition

Content is supplied by an organisation or individual that has paid the news provider for its placement

302 Advertiser Supplied or sponsored

https://w3id.org/class/redaktor/AdvertisingInvolved

JSON

Inbox

345 Advice

https://w3id.org/class/redaktor/Advice

JSON

Inbox

Definition

Letters and answers about readers' personal problems

305 Advisory

https://w3id.org/class/redaktor/Advisory

JSON

Inbox

Definition

Recommendation on editorial or technical matters by a provider to its customers

1402 Aggregate Rating

https://w3id.org/class/redaktor/AggregateRating

JSON

Inbox

Definition

The average rating based on multiple ratings or reviews.

86 Airline

https://w3id.org/class/redaktor/Airline

JSON

Inbox

Definition

An organization that provides flights for passengers.

Exact Match

890 Airport

https://w3id.org/class/redaktor/Airport

JSON

Inbox

Exact Match

948 Airstrip

https://w3id.org/class/redaktor/Airstrip

JSON

Inbox

1197 Alcohol Consideration

https://w3id.org/class/redaktor/AlcoholConsideration

JSON

Inbox

Definition

Item contains alcohol or promotes alcohol consumption.

28 Learning alignment

https://w3id.org/class/redaktor/AlignmentObject

JSON

Inbox

Definition

An intangible item that describes an alignment between a learning resource and a node in an educational framework.

Should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.

1325 All Wheel Drive Configuration

https://w3id.org/class/redaktor/AllWheelDriveConfiguration

JSON

Inbox

Definition

All-wheel Drive is a transmission layout where the engine drives all four wheels.

1060 Allergology

https://w3id.org/class/redaktor/Allergology

JSON

Inbox

346 On This Day

https://w3id.org/class/redaktor/Almanac

JSON

Inbox

Definition

List of data, including birthdays of famous people and items of historical significance, for a given day

1163 Amusement Arcade

https://w3id.org/class/redaktor/AmusementArcade

JSON

Inbox

1016 Amusement Park

https://w3id.org/class/redaktor/AmusementPark

JSON

Inbox

381 Analysis

https://w3id.org/class/redaktor/Analysis

JSON

Inbox

Definition

Data and conclusions drawn by a journalist who has conducted in depth research for a story

1290 Anesthesia

https://w3id.org/class/redaktor/Anesthesia

JSON

Inbox

Definition

A specific branch of medical science that pertains to study of anesthetics and their application.

952 Animal Boarding

https://w3id.org/class/redaktor/AnimalBoarding

JSON

Inbox

975 Animal Shelter

https://w3id.org/class/redaktor/AnimalShelter

JSON

Inbox

347 Anniversary

https://w3id.org/class/redaktor/Anniversary

JSON

Inbox

Definition

Stories about the anniversary of some important event that took place in recent history, usually bringing a short review of the event itself.

203 Announce

https://w3id.org/class/redaktor/Announce

JSON

Inbox

Definition

Indicates that the actor is calling the target's attention the object. The origin typically has no defined meaning.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-announce

Scope Note

: Activity

Example

Example 36

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally announced that she had arrived at work",
  "type": "Announce",
  "actor": {
    "type": "Person",
    "id": "http://sally.example.org",
    "name": "Sally"
  },
  "object": {
    "type": "Arrive",
    "actor": "http://sally.example.org",
    "location": {
      "type": "Place",
      "name": "Work"
    }
  }
}

881 Apartment

https://w3id.org/class/redaktor/Apartment

JSON

Inbox

Exact Match

881 Apartment Complex

https://w3id.org/class/redaktor/ApartmentComplex

JSON

Inbox

78 Application

https://w3id.org/class/redaktor/Application

JSON

Inbox

Definition

Describes a software application.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-application

Scope Note

: Actor

Example

Example 42

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Application",
  "name": "Exampletron 3000"
}

891 Aquarium

https://w3id.org/class/redaktor/Aquarium

JSON

Inbox

Exact Match

1413 Archive Component

https://w3id.org/class/redaktor/ArchiveComponent

JSON

Inbox

Definition

An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections.

306 Archival material

https://w3id.org/class/redaktor/ArchiveMaterial

JSON

Inbox

Definition

Material selected from the originator's archive that has been previously distributed

976 Archive Organization

https://w3id.org/class/redaktor/ArchiveOrganization

JSON

Inbox

64 Arrive

https://w3id.org/class/redaktor/Arrive

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-arrive

Scope Note

: Activity

Example

Example 14

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally arrived at work",
  "type": "Arrive",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "location": {
    "type": "Place",
    "name": "Work"
  },
  "origin": {
    "type": "Place",
    "name": "Home"
  }
}

1017 Art Gallery

https://w3id.org/class/redaktor/ArtGallery

JSON

Inbox

1159 Art School

https://w3id.org/class/redaktor/ArtSchool

JSON

Inbox

11 Article

https://w3id.org/class/redaktor/Article

JSON

Inbox

Definition

Represents any kind of multi-paragraph written work.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-article

Scope Note

: Object

Example

Example 48

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Article",
  "name": "What a Crazy Day I Had",
  "content": "<div>... you will never believe ...</div>",
  "attributedTo": "http://sally.example.org"
}

421 Assess

https://w3id.org/class/redaktor/Assess

JSON

Inbox

Definition

The act of forming one's opinion, reaction or sentiment.

700 Assignment

https://w3id.org/class/redaktor/Assignment

JSON

Inbox

67 Atlas

https://w3id.org/class/redaktor/Atlas

JSON

Inbox

Definition

A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject.

Exact Match

1050 Attorney

https://w3id.org/class/redaktor/Attorney

JSON

Inbox

Exact Match

29 Audience

https://w3id.org/class/redaktor/Audience

JSON

Inbox

Definition

Intended audience for an item, i.e. the group for whom the item was created.

Exact Match

12 Audio

https://w3id.org/class/redaktor/Audio

JSON

Inbox

Definition

Represents an audio document of any kind.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-audio

Scope Note

: Object

Example

Example 50

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Audio",
  "name": "Interview With A Famous Technologist",
  "url": {
    "type": "Link",
    "href": "http://example.org/podcast.mp3",
    "mediaType": "audio/mp3"
  }
}

556 Audiobook

https://w3id.org/class/redaktor/Audiobook

JSON

Inbox

Definition

An audiobook.

Exact Match

1202 Audiobook Format

https://w3id.org/class/redaktor/AudiobookFormat

JSON

Inbox

Definition

Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties.

702 Auditorium

https://w3id.org/class/redaktor/Auditorium

JSON

Inbox

704 Auto, Boat & Air

https://w3id.org/class/redaktor/AutoBoatAir

JSON

Inbox

1005 Auto Body Shop

https://w3id.org/class/redaktor/AutoBodyShop

JSON

Inbox

1006 Auto Dealer

https://w3id.org/class/redaktor/AutoDealer

JSON

Inbox

1102 Auto Parts Store

https://w3id.org/class/redaktor/AutoPartsStore

JSON

Inbox

1008 Auto Rental

https://w3id.org/class/redaktor/AutoRental

JSON

Inbox

Alt Label

  • Car Rental

1009 Auto Repair

https://w3id.org/class/redaktor/AutoRepair

JSON

Inbox

1010 Auto Wash

https://w3id.org/class/redaktor/AutoWash

JSON

Inbox

Exact Match

953 Automated Teller

https://w3id.org/class/redaktor/AutomatedTeller

JSON

Inbox

977 Automotive Business

https://w3id.org/class/redaktor/AutomotiveBusiness

JSON

Inbox

701 Award Ceremony

https://w3id.org/class/redaktor/Award

JSON

Inbox

1135 Baby Hatch

https://w3id.org/class/redaktor/BabyHatch

JSON

Inbox

1243 Back Order

https://w3id.org/class/redaktor/BackOrder

JSON

Inbox

Definition

Indicates that the item is available on back order.

Exact Match

307 Background

https://w3id.org/class/redaktor/Background

JSON

Inbox

Definition

Scene setting and explanation for an event being reported

1022 Bakery

https://w3id.org/class/redaktor/Bakery

JSON

Inbox

Exact Match

1136 Baking Oven

https://w3id.org/class/redaktor/BakingOven

JSON

Inbox

1164 Bandstand

https://w3id.org/class/redaktor/Bandstand

JSON

Inbox

954 Bank or Credit Union

https://w3id.org/class/redaktor/BankOrCreditUnion

JSON

Inbox

1023 Bar or Pub

https://w3id.org/class/redaktor/BarOrPub

JSON

Inbox

Exact Match

1233 Basic Income

https://w3id.org/class/redaktor/BasicIncome

JSON

Inbox

Definition

BasicIncome: this is a benefit for basic income.

892 Beach

https://w3id.org/class/redaktor/Beach

JSON

Inbox

Exact Match

1034 Beauty Salon

https://w3id.org/class/redaktor/BeautySalon

JSON

Inbox

1052 Bed And Breakfast

https://w3id.org/class/redaktor/BedAndBreakfast

JSON

Inbox

Alt Label

  • Bed And Breakfast
  • BnB

62 Bed Details

https://w3id.org/class/redaktor/BedDetails

JSON

Inbox

Definition

An entity holding detailed information about the available bed types, e.g. the quantity of twin beds for a hotel room. For the single case of just one bed of a certain type, you can use bed directly with a text. See also [[BedType]] (under development).

47 Bed Type

https://w3id.org/class/redaktor/BedType

JSON

Inbox

Definition

A type of bed. This is used for indicating the bed or beds available in an accommodation.

Exact Match

348 Behind the Story

https://w3id.org/class/redaktor/BehindTheStory

JSON

Inbox

Definition

The content describes how a story was reported and offers context on the reporting

959 Bench

https://w3id.org/class/redaktor/Bench

JSON

Inbox

1176 Beverages

https://w3id.org/class/redaktor/Beverages

JSON

Inbox

964 Bicycle Parking

https://w3id.org/class/redaktor/BicycleParking

JSON

Inbox

956 Bicycle Repair Station

https://w3id.org/class/redaktor/BicycleRepairStation

JSON

Inbox

1024 Beer garden

https://w3id.org/class/redaktor/Biergarten

JSON

Inbox

978 Bike Rental

https://w3id.org/class/redaktor/BikeRental

JSON

Inbox

1103 Bike Store

https://w3id.org/class/redaktor/BikeStore

JSON

Inbox

Exact Match

349 Biography

https://w3id.org/class/redaktor/Biography

JSON

Inbox

Definition

Facts and background about a person

350 Birth Announcement

https://w3id.org/class/redaktor/BirthAnnouncement

JSON

Inbox

Definition

News of newly born children

204 Block

https://w3id.org/class/redaktor/Block

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-block

Scope Note

: Activity

Example

Example 37

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally blocked Joe",
  "type": "Block",
  "actor": "http://sally.example.org",
  "object": "http://joe.example.org"
}

68 Blog

https://w3id.org/class/redaktor/Blog

JSON

Inbox

Definition

A blog, sometimes known as a "weblog". Note that the individual posts ([BlogPosting]s) in a [Blog] are often colloqually referred to by the same term.

Exact Match

308 Blog Posting

https://w3id.org/class/redaktor/BlogPosting

JSON

Inbox

Definition

A blog post

1353 Boarding Policy Type

https://w3id.org/class/redaktor/BoardingPolicyType

JSON

Inbox

Definition

A type of boarding policy used by an airline.

1063 @boatingeurope@campaign.openworlds.info location

https://w3id.org/class/redaktor/BoatHamish

JSON

Inbox

979 Boat Rental

https://w3id.org/class/redaktor/BoatRental

JSON

Inbox

980 Boat Share

https://w3id.org/class/redaktor/BoatShare

JSON

Inbox

893 Boat Terminal

https://w3id.org/class/redaktor/BoatTerminal

JSON

Inbox

Alt Label

  • Ferry Terminal

551 Boat Trip

https://w3id.org/class/redaktor/BoatTrip

JSON

Inbox

Definition

A trip on a ferry line.

Exact Match

920 Body of water

https://w3id.org/class/redaktor/BodyOfWater

JSON

Inbox

69 Book

https://w3id.org/class/redaktor/Book

JSON

Inbox

Definition

A book.

Exact Match

761 Book Clubs

https://w3id.org/class/redaktor/BookClub

JSON

Inbox

1354 Book Format Type

https://w3id.org/class/redaktor/BookFormatType

JSON

Inbox

Definition

The publication format of the book.

1104 Book Store

https://w3id.org/class/redaktor/BookStore

JSON

Inbox

Exact Match

1093 Bowling Alley

https://w3id.org/class/redaktor/BowlingAlley

JSON

Inbox

30 Brand

https://w3id.org/class/redaktor/Brand

JSON

Inbox

Definition

A brand is a name used by an organization or business person for labeling a product, product group, or similar.

Exact Match

1025 Brewery

https://w3id.org/class/redaktor/Brewery

JSON

Inbox

Exact Match

894 Bridge

https://w3id.org/class/redaktor/Bridge

JSON

Inbox

Exact Match

182 Broadcast Channel

https://w3id.org/class/redaktor/BroadcastChannel

JSON

Inbox

Definition

A unique instance of a BroadcastService on a CableOrSatelliteService lineup.

764 Broadcast Event

https://w3id.org/class/redaktor/BroadcastEvent

JSON

Inbox

183 Broadcast Frequency Specification

https://w3id.org/class/redaktor/BroadcastFrequencySpecification

JSON

Inbox

Definition

The frequency in MHz and the modulation used for a particular BroadcastService.

1418 Broadcast Service

https://w3id.org/class/redaktor/BroadcastService

JSON

Inbox

Definition

A delivery service through which content is provided via broadcast over the air or online.

931 Buddhist temple

https://w3id.org/class/redaktor/BuddhistTemple

JSON

Inbox

895 Bus station

https://w3id.org/class/redaktor/BusStation

JSON

Inbox

Alt Label

  • Bus terminal
  • Coach terminal

896 Bus Stop

https://w3id.org/class/redaktor/BusStop

JSON

Inbox

Exact Match

552 Bus Trip

https://w3id.org/class/redaktor/BusTrip

JSON

Inbox

Definition

A trip on a bus line.

Exact Match

705 Business Event

https://w3id.org/class/redaktor/Business

JSON

Inbox

1355 Business Entity Type

https://w3id.org/class/redaktor/BusinessEntityType

JSON

Inbox

Definition

A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.

Commonly used values:

1356 Business Function

https://w3id.org/class/redaktor/BusinessFunction

JSON

Inbox

Definition

The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.

Commonly used values:

1227 Business Support

https://w3id.org/class/redaktor/BusinessSupport

JSON

Inbox

Definition

BusinessSupport: this is a benefit for supporting businesses.

1177 Butcher

https://w3id.org/class/redaktor/Butcher

JSON

Inbox

443 Buy

https://w3id.org/class/redaktor/Buy

JSON

Inbox

Definition

The act of giving money to a seller in exchange for goods or services rendered.

Exact Match

1026 Cafe or Coffee Shop

https://w3id.org/class/redaktor/CafeOrCoffeeShop

JSON

Inbox

1166 Camera Store

https://w3id.org/class/redaktor/CameraStore

JSON

Inbox

897 Campground

https://w3id.org/class/redaktor/Campground

JSON

Inbox

Alt Label

  • Encampment
  • bivouac

884 Camping pitch

https://w3id.org/class/redaktor/CampingPitch

JSON

Inbox

937 Canal

https://w3id.org/class/redaktor/Canal

JSON

Inbox

Exact Match

1167 Cannabis Coffeeshop

https://w3id.org/class/redaktor/CannabisCoffeeshop

JSON

Inbox

577 Car or Ride Share Listing

https://w3id.org/class/redaktor/CarOrRideShareListing

JSON

Inbox

Definition

A listing to describe car share or ride share opportunities and applications.

1011 Car Sharing

https://w3id.org/class/redaktor/CarSharing

JSON

Inbox

1357 Car Usage Type

https://w3id.org/class/redaktor/CarUsageType

JSON

Inbox

Definition

A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi.

1061 Cardiology

https://w3id.org/class/redaktor/Cardiology

JSON

Inbox

1274 Cardiovascular

https://w3id.org/class/redaktor/Cardiovascular

JSON

Inbox

Definition

A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature.

1018 Casino

https://w3id.org/class/redaktor/Casino

JSON

Inbox

Alt Label

  • honky-tonk

Exact Match

936 Catholic Church

https://w3id.org/class/redaktor/CatholicChurch

JSON

Inbox

898 Cemetery

https://w3id.org/class/redaktor/Cemetery

JSON

Inbox

Exact Match

510 Chapter

https://w3id.org/class/redaktor/Chapter

JSON

Inbox

Definition

One of the sections into which a book is divided. A chapter usually has a section number or a name.

Exact Match

957 Charging

https://w3id.org/class/redaktor/ChargingStation

JSON

Inbox

706 Charity & Causes

https://w3id.org/class/redaktor/CharityOrCauses

JSON

Inbox

1168 Charity Shop

https://w3id.org/class/redaktor/CharityShop

JSON

Inbox

24 Chat message

https://w3id.org/class/redaktor/ChatMessage

JSON

Inbox

Definition

ChatMessages are the messages sent in 1-on-1 chats. They are similar to Notes, but the addresing is done by having a single AP actor in the to field. Addressing multiple actors is not allowed.
These messages are always private, there is no public version of them. They are created with a Create activity.

They are part of the litepub namespace as http://litepub.social/ns#ChatMessage.
see Pleroma documentation

Example

json { "actor": "http://2hu.gensokyo/users/raymoo", "id": "http://2hu.gensokyo/objects/1", "object": { "attributedTo": "http://2hu.gensokyo/users/raymoo", "content": "You expected a cute girl? Too bad.", "id": "http://2hu.gensokyo/objects/2", "published": "2020-02-12T14:08:20Z", "to": [ "http://2hu.gensokyo/users/marisa" ], "type": "ChatMessage" }, "published": "2018-02-12T14:08:20Z", "to": [ "http://2hu.gensokyo/users/marisa" ], "type": "Create" }
This setup does not prevent multi-user chats, but these will have to go through a Group, which will be the recipient of the messages and then Announce them to the users in the Group.

422 Check In

https://w3id.org/class/redaktor/CheckIn

JSON

Inbox

Definition

The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).

423 Check Out

https://w3id.org/class/redaktor/CheckOut

JSON

Inbox

Definition

The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check in) or place (e.g. hotel).

567 Checkout Page

https://w3id.org/class/redaktor/CheckoutPage

JSON

Inbox

Definition

Web page type: Checkout page.

1178 Cheese

https://w3id.org/class/redaktor/Cheese

JSON

Inbox

981 Child Care

https://w3id.org/class/redaktor/ChildCare

JSON

Inbox

Exact Match

707 Childrens Event or School Activity

https://w3id.org/class/redaktor/ChildrensEvent

JSON

Inbox

1179 Chocolate

https://w3id.org/class/redaktor/Chocolate

JSON

Inbox

932 Church

https://w3id.org/class/redaktor/Church

JSON

Inbox

Exact Match

886 City

https://w3id.org/class/redaktor/City

JSON

Inbox

Exact Match

926 City Hall

https://w3id.org/class/redaktor/CityHall

JSON

Inbox

Exact Match

872 Civic Structure

https://w3id.org/class/redaktor/CivicStructure

JSON

Inbox

Definition

A public structure, such as a town hall or concert hall.

511 Claim

https://w3id.org/class/redaktor/Claim

JSON

Inbox

Definition

A Claim represents a specific, factually-oriented claim that could be the itemReviewed in a ClaimReview. The content of a claim can be summarized with the content property. Variations on well known claims can have their common identity indicated via sameAs links, and summarized with a name. Ideally, a Claim description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews.

Beyond ClaimReview, the Claim type can be associated with related creative works - for example a ScholarlyArticle or Question might be about some Claim.

Exact Match

1273 Clinician

https://w3id.org/class/redaktor/Clinician

JSON

Inbox

Definition

Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.

Exact Match

512 Clip

https://w3id.org/class/redaktor/Clip

JSON

Inbox

Definition

A short TV or radio program or a segment/part of a program.

Exact Match

1105 Clothing Store

https://w3id.org/class/redaktor/ClothingStore

JSON

Inbox

1224 Co Op

https://w3id.org/class/redaktor/CoOp

JSON

Inbox

Definition

Play mode: CoOp. Co-operative games, where you play on the same team with friends.

Exact Match

513 Code

https://w3id.org/class/redaktor/Code

JSON

Inbox

Definition

Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.

Exact Match

6 Collection

https://w3id.org/class/redaktor/Collection

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection

Scope Note

: Object

Example

Example 5

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally's notes",
  "type": "Collection",
  "totalItems": 2,
  "items": [
    {
      "type": "Note",
      "name": "A Simple Note"
    },
    {
      "type": "Note",
      "name": "Another Simple Note"
    }
  ]
}

7 Collection Page

https://w3id.org/class/redaktor/CollectionPage

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage

Scope Note

: Object

Example

Example 7

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Page 1 of Sally's notes",
  "type": "CollectionPage",
  "id": "http://example.org/foo?page=1",
  "partOf": "http://example.org/foo",
  "items": [
    {
      "type": "Note",
      "name": "A Simple Note"
    },
    {
      "type": "Note",
      "name": "Another Simple Note"
    }
  ]
}

969 College or University

https://w3id.org/class/redaktor/CollegeOrUniversity

JSON

Inbox

400 Comedy

https://w3id.org/class/redaktor/Comedy

JSON

Inbox

Definition

The object contains material relating to a comedy program and/or event

Note

Example: A news item or program classed as comedy, such as "Friends" or "The Office"

1019 Comedy Club

https://w3id.org/class/redaktor/ComedyClub

JSON

Inbox

708 Comedy Event

https://w3id.org/class/redaktor/ComedyEvent

JSON

Inbox

586 Comic Cover Art

https://w3id.org/class/redaktor/ComicCoverArt

JSON

Inbox

Definition

The artwork on the cover of a comic.

514 Comic Story

https://w3id.org/class/redaktor/ComicStory

JSON

Inbox

Definition

The term "story" is any indivisible, re-printable unit of a comic, including the interior stories, covers, and backmatter. Most comics have at least two stories: a cover (ComicCoverArt) and an interior story.

900 Community Namespaces

https://w3id.org/class/redaktor/Community

JSON

Inbox

Definition

Extensions defined by ActivityPub implementations.

Scope Note

ActivityPub Community

710 Community Event

https://w3id.org/class/redaktor/CommunityEvent

JSON

Inbox

1062 Community Health

https://w3id.org/class/redaktor/CommunityHealth

JSON

Inbox

Definition

A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas.

31 Computer Language

https://w3id.org/class/redaktor/ComputerLanguage

JSON

Inbox

Definition

This type covers computer programming languages such as JS, Scheme and Lisp, as well as other language-like computer representations. Natural languages are best represented with the [Language] type.

1106 Computer Store

https://w3id.org/class/redaktor/ComputerStore

JSON

Inbox

711 Conference

https://w3id.org/class/redaktor/Conference

JSON

Inbox

87 Consortium

https://w3id.org/class/redaktor/Consortium

JSON

Inbox

Definition

A Consortium is a membership Organization whose members are typically Organizations.

424 Consume

https://w3id.org/class/redaktor/Consume

JSON

Inbox

Definition

The act of ingesting information/resources/food.

569 Contact Page

https://w3id.org/class/redaktor/ContactPage

JSON

Inbox

Definition

Web page type: Contact page.

860 Contact Point

https://w3id.org/class/redaktor/ContactPoint

JSON

Inbox

Definition

A contact point&#x2014;for example, a Customer Complaints department.

1358 Contact Point Option

https://w3id.org/class/redaktor/ContactPointOption

JSON

Inbox

Definition

Enumerated options related to a ContactPoint.

921 Continent

https://w3id.org/class/redaktor/Continent

JSON

Inbox

Exact Match

1107 Convenience Store

https://w3id.org/class/redaktor/ConvenienceStore

JSON

Inbox

1169 Copyshop

https://w3id.org/class/redaktor/Copyshop

JSON

Inbox

88 Corporation

https://w3id.org/class/redaktor/Corporation

JSON

Inbox

Definition

Organization: A business corporation.

1383 Correction Comment

https://w3id.org/class/redaktor/CorrectionComment

JSON

Inbox

Definition

A [[comment]] that corrects [[CreativeWork]].

887 Country

https://w3id.org/class/redaktor/Country

JSON

Inbox

Exact Match

564 Course

https://w3id.org/class/redaktor/Course

JSON

Inbox

Definition

A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.

Exact Match

709 Course Event

https://w3id.org/class/redaktor/CourseInstance

JSON

Inbox

927 Courthouse

https://w3id.org/class/redaktor/Courthouse

JSON

Inbox

585 Cover Art

https://w3id.org/class/redaktor/CoverArt

JSON

Inbox

Definition

The artwork on the outer surface of a CreativeWork.

Exact Match

1092 Covid Testing Facility

https://w3id.org/class/redaktor/CovidTestingFacility

JSON

Inbox

712 Craft, Farmers, or Artisan markets

https://w3id.org/class/redaktor/Crafts

JSON

Inbox

200 Create

https://w3id.org/class/redaktor/Create

JSON

Inbox

Definition

Indicates that the actor has created the object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-create

Scope Note

: Activity

Example

Example 15

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally created a note",
  "type": "Create",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Note",
    "name": "A Simple Note",
    "content": "This is a simple note"
  }
}

303 Creative Work

https://w3id.org/class/redaktor/CreativeWork

JSON

Inbox

Definition

The most generic kind of creative work, including books, movies, photographs, software programs, etc.

323 Season

https://w3id.org/class/redaktor/CreativeWorkSeason

JSON

Inbox

Definition

A media season e.g. tv, radio, video game etc.

324 Series

https://w3id.org/class/redaktor/CreativeWorkSeries

JSON

Inbox

Definition

A CreativeWorkSeries is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are organized into some order, often chronological.

899 Crematorium

https://w3id.org/class/redaktor/Crematorium

JSON

Inbox

1384 Css Selector Type

https://w3id.org/class/redaktor/CssSelectorType

JSON

Inbox

Definition

Text representing a CSS selector.

955 Currency exchange

https://w3id.org/class/redaktor/CurrencyConversionService

JSON

Inbox

Alt Label

  • Currency Conversion Service

352 Current Events

https://w3id.org/class/redaktor/Current

JSON

Inbox

Definition

Content about events taking place at the time of the report

353 Curtain Raiser

https://w3id.org/class/redaktor/CurtainRaiser

JSON

Inbox

Definition

Information or kickoff piece for a live event that is about to take place

1181 Dairy

https://w3id.org/class/redaktor/Dairy

JSON

Inbox

1253 Damaged Condition

https://w3id.org/class/redaktor/DamagedCondition

JSON

Inbox

Definition

Indicates that the item is damaged.

1165 Dance

https://w3id.org/class/redaktor/Dance

JSON

Inbox

713 Dance Event

https://w3id.org/class/redaktor/DanceEvent

JSON

Inbox

1720 Dance Group

https://w3id.org/class/redaktor/DanceGroup

JSON

Inbox

Definition

A dance group—for example, the Alvin Ailey Dance Theater or Riverdance.

1198 Dangerous Good Consideration

https://w3id.org/class/redaktor/DangerousGoodConsideration

JSON

Inbox

Definition

The item is dangerous and requires careful handling and/or special training of the user. See also the UN Model Classification defining the 9 classes of dangerous goods such as explosives, gases, flammables, and more.

108 Data Catalog

https://w3id.org/class/redaktor/DataCatalog

JSON

Inbox

Definition

A collection of datasets.

1405 Data Feed

https://w3id.org/class/redaktor/DataFeed

JSON

Inbox

Definition

A single feed providing structured information about one or more entities or topics.

Exact Match

107 Data Feed Item

https://w3id.org/class/redaktor/DataFeedItem

JSON

Inbox

Definition

A single item within a larger data feed.

1392 Dataset

https://w3id.org/class/redaktor/Dataset

JSON

Inbox

Definition

A body of structured information describing some topic(s) of interest.

Exact Match

1359 Day Of Week

https://w3id.org/class/redaktor/DayOfWeek

JSON

Inbox

Definition

The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer. Originally, URLs from GoodRelations were used (for [[Monday]], [[Tuesday]], [[Wednesday]], [[Thursday]], [[Friday]], [[Saturday]], [[Sunday]] plus a special entry for [[PublicHolidays]]); these have now been integrated directly into schema.org.

Exact Match

1035 Day Spa

https://w3id.org/class/redaktor/DaySpa

JSON

Inbox

Exact Match

313 Planner

https://w3id.org/class/redaktor/Daybook

JSON

Inbox

Definition

Items filed on a regular basis that are lists of upcoming events with time and place, designed to inform others of events for planning purposes, also known as daybook or agenda

928 Defence establishment

https://w3id.org/class/redaktor/DefenceEstablishment

JSON

Inbox

33 Definition

https://w3id.org/class/redaktor/DefinedTerm

JSON

Inbox

Definition

A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term.

Alt Label

  • Defined Term

1410 Defined Term Set

https://w3id.org/class/redaktor/DefinedTermSet

JSON

Inbox

Definition

A set of defined terms for example a set of categories or a classification scheme, a glossary, dictionary or enumeration.

205 Delete

https://w3id.org/class/redaktor/Delete

JSON

Inbox

Definition

Indicates that the actor has deleted the object. If specified, the origin indicates the context from which the object was deleted.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-delete

Scope Note

: Activity

Example

Example 16

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally deleted a note",
  "type": "Delete",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": "http://example.org/notes/1",
  "origin": {
    "type": "Collection",
    "name": "Sally's Notes"
  }
}

1180 Deli

https://w3id.org/class/redaktor/Deli

JSON

Inbox

714 Delivery Event

https://w3id.org/class/redaktor/DeliveryEvent

JSON

Inbox

Alt Label

  • Shipping Event

1360 Delivery Method

https://w3id.org/class/redaktor/DeliveryMethod

JSON

Inbox

Definition

A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.

Commonly used values:

982 Dentist

https://w3id.org/class/redaktor/Dentist

JSON

Inbox

Exact Match

1303 Dentistry

https://w3id.org/class/redaktor/Dentistry

JSON

Inbox

Definition

A branch of medicine that is involved in the dental care.

Exact Match

1108 Department Store

https://w3id.org/class/redaktor/DepartmentStore

JSON

Inbox

1064 Dermatology

https://w3id.org/class/redaktor/Dermatology

JSON

Inbox

Definition

A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.

1267 Diabetic Diet

https://w3id.org/class/redaktor/DiabeticDiet

JSON

Inbox

Definition

A diet appropriate for people with diabetes.

1718 Diagnostic Lab

https://w3id.org/class/redaktor/DiagnosticLab

JSON

Inbox

Definition

A medical Diagnostic Lab.

1065 Diet Nutrition

https://w3id.org/class/redaktor/DietNutrition

JSON

Inbox

Definition

Dietetic and nutrition as a medical specialty.

1229 Disability Support

https://w3id.org/class/redaktor/DisabilitySupport

JSON

Inbox

Definition

DisabilitySupport: this is a benefit for disability support.

1237 Discontinued

https://w3id.org/class/redaktor/Discontinued

JSON

Inbox

Definition

Indicates that the item has been discontinued.

999 Community Discussion

https://w3id.org/class/redaktor/Discussion

JSON

Inbox

Definition

Extensions defined by ActivityPub implementations but interpreted differently.

Scope Note

ActivityPub Community

309 Discussion Forum Posting

https://w3id.org/class/redaktor/DiscussionForumPosting

JSON

Inbox

Definition

A posting to a discussion forum

206 Dislike

https://w3id.org/class/redaktor/Dislike

JSON

Inbox

Definition

Indicates that the actor dislikes the object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-dislike

Scope Note

: Activity

Example

Example 39

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally disliked a post",
  "type": "Dislike",
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1"
}

48 Distance

https://w3id.org/class/redaktor/Distance

JSON

Inbox

Definition

Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'.

Exact Match

1027 Distillery

https://w3id.org/class/redaktor/Distillery

JSON

Inbox

1137 Dive Centre

https://w3id.org/class/redaktor/DiveCentre

JSON

Inbox

10 Document

https://w3id.org/class/redaktor/Document

JSON

Inbox

Definition

Represents a document of any kind.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-document

Scope Note

: Object

Example

Example 49

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Document",
  "name": "4Q Sales Forecast",
  "url": "http://example.org/4q-sales-forecast.pdf"
}

1138 Dog Park

https://w3id.org/class/redaktor/DogPark

JSON

Inbox

401 Drama

https://w3id.org/class/redaktor/Drama

JSON

Inbox

Definition

The object contains material relating to a fictional drama program and/or event.

Note

Example: A news item or program discussing or showing a fictional drama such as BBC’s “Poldark” or the program itself.

515 Drawing

https://w3id.org/class/redaktor/Drawing

JSON

Inbox

Definition

A picture or diagram made with a pencil, pen, or crayon rather than paint.

Exact Match

437 Drink

https://w3id.org/class/redaktor/Drink

JSON

Inbox

1375 Drive Wheel Configuration Value

https://w3id.org/class/redaktor/DriveWheelConfigurationValue

JSON

Inbox

Definition

A value indicating which roadwheels will receive torque.

1139 Driving School

https://w3id.org/class/redaktor/DrivingSchool

JSON

Inbox

1208 Driving School Vehicle Usage

https://w3id.org/class/redaktor/DrivingSchoolVehicleUsage

JSON

Inbox

Definition

Indicates the usage of the vehicle for driving school.

983 Dry Cleaning or Laundry

https://w3id.org/class/redaktor/DryCleaningOrLaundry

JSON

Inbox

1206 E Book

https://w3id.org/class/redaktor/EBook

JSON

Inbox

Definition

Book format: Ebook.

Exact Match

438 Eat

https://w3id.org/class/redaktor/Eat

JSON

Inbox

Exact Match

715 Learning, Seminar or Educational Event

https://w3id.org/class/redaktor/EducationEvent

JSON

Inbox

591 Educational Occupational Credential

https://w3id.org/class/redaktor/EducationalOccupationalCredential

JSON

Inbox

Definition

An educational or occupational credential. A diploma, academic degree, certification, qualification, badge, etc., that may be awarded to a person or other entity that meets the requirements defined by the credentialer.

85 Educational Organization

https://w3id.org/class/redaktor/EducationalOrganization

JSON

Inbox

1132 Electric Scooter

https://w3id.org/class/redaktor/ElectricScooter

JSON

Inbox

1042 Electrician

https://w3id.org/class/redaktor/Electrician

JSON

Inbox

1109 Electronics Store

https://w3id.org/class/redaktor/ElectronicsStore

JSON

Inbox

970 Elementary School

https://w3id.org/class/redaktor/ElementarySchool

JSON

Inbox

929 Embassy

https://w3id.org/class/redaktor/Embassy

JSON

Inbox

Exact Match

1066 Emergency

https://w3id.org/class/redaktor/Emergency

JSON

Inbox

Definition

A specific branch of medical science that deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness.

Exact Match

984 Emergency Service

https://w3id.org/class/redaktor/EmergencyService

JSON

Inbox

22 Custom Emoji

https://w3id.org/class/redaktor/Emoji

JSON

Inbox

Definition

Mastodon supports arbitrary emojis, that is, small images uploaded by admins and invokable via shortcodes. For this, an Emoji type is used. These emojis are listed in the tag property just like Mention and Hashtag objects, since they are entities that affect how the text is rendered.
see mastodon documentation 'Custom emojis'

Scope Note

ActivityPub Community

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "toot": "http://joinmastodon.org/ns#",
      "Emoji": ":Emoji"
    }
  ],

  "id": "https://example.com/@alice/hello-world",
  "type": "Note",
  "content": "Hello world :kappa:",
  "tag": [
    {
      "id": "https://example.com/emoji/123",
      "type": "Emoji",
      "name": ":kappa:",
      "icon": {
        "type": "Image",
        "mediaType": "image/png",
        "url": "https://example.com/files/kappa.png"
      }
    }
  ]
}

985 Employment Agency

https://w3id.org/class/redaktor/EmploymentAgency

JSON

Inbox

1291 Endocrine

https://w3id.org/class/redaktor/Endocrine

JSON

Inbox

Definition

A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions.

Exact Match

Endpoints

https://w3id.org/class/redaktor/Endpoints

JSON

Inbox

Definition

A Class describing the properties for Actors' endpoints.

44 Energy

https://w3id.org/class/redaktor/Energy

JSON

Inbox

Definition

Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'.

Exact Match

310 Entertainment

https://w3id.org/class/redaktor/Entertainment

JSON

Inbox

Definition

The object contains material relating to an entertainment program and/or event

Note

Example: A news item or program covering general entertainment, such as a film premier.

986 Entertainment Business

https://w3id.org/class/redaktor/EntertainmentBusiness

JSON

Inbox

Definition

To broad for OSM. Please select a more specific entry.

40 Enumeration

https://w3id.org/class/redaktor/Enumeration

JSON

Inbox

325 Episode

https://w3id.org/class/redaktor/Episode

JSON

Inbox

Definition

A media episode (e.g. TV, radio, video game) which can be part of a series or season.

Exact Match

13 Event

https://w3id.org/class/redaktor/Event

JSON

Inbox

Definition

Represents any kind of event.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-event

Scope Note

: Object

Example

Example 55

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Event",
  "name": "Going-Away Party for Jim",
  "startTime": "2014-12-31T23:00:00-08:00",
  "endTime": "2015-01-01T06:00:00-08:00"
}

716 Event Series

https://w3id.org/class/redaktor/EventSeries

JSON

Inbox

958 Event Venue

https://w3id.org/class/redaktor/EventVenue

JSON

Inbox

590 Exclusive

https://w3id.org/class/redaktor/Exclusive

JSON

Inbox

Definition

News reported by one journalist or news organisation before others, and of exceptional originality or importance

717 Exhibition Event

https://w3id.org/class/redaktor/ExhibitionEvent

JSON

Inbox

570 FAQ Page

https://w3id.org/class/redaktor/FAQPage

JSON

Inbox

Definition

A FAQPage is a WebPage presenting one or more "Frequently asked questions" (see also QAPage).

Exact Match

354 Fact Check

https://w3id.org/class/redaktor/FactCheck

JSON

Inbox

Definition

The news item looks into the truth or falsehood of another reported news item or assertion (for example a statement on social media by a public figure)

300 Factual

https://w3id.org/class/redaktor/Factual

JSON

Inbox

Definition

The object contains material relating to a factual program and/or event

Note

Example: A news item or program covering a documentary, such as David Attenborough’s “Life on Earth”

Alt Label

  • Subject-related

718 Family & Education

https://w3id.org/class/redaktor/FamilyEducation

JSON

Inbox

1182 Farm

https://w3id.org/class/redaktor/Farm

JSON

Inbox

719 Fashion & Beauty

https://w3id.org/class/redaktor/FashionBeauty

JSON

Inbox

1028 Fast Food Restaurant

https://w3id.org/class/redaktor/FastFoodRestaurant

JSON

Inbox

355 Feature

https://w3id.org/class/redaktor/Feature

JSON

Inbox

Definition

Content about a particular event or individual that may not be significant to current breaking news

1235 Female

https://w3id.org/class/redaktor/Female

JSON

Inbox

Definition

The female gender.

Exact Match

722 Festival

https://w3id.org/class/redaktor/Festival

JSON

Inbox

Exact Match

720 Fetes or fairs

https://w3id.org/class/redaktor/FeteOrFair

JSON

Inbox

301 Fictional

https://w3id.org/class/redaktor/Fictional

JSON

Inbox

Definition

A person or thing with a fictional meaning. For example a Novel or Character.

723 Film & Media

https://w3id.org/class/redaktor/FilmMedia

JSON

Inbox

987 Financial Service

https://w3id.org/class/redaktor/FinancialService

JSON

Inbox

425 Find

https://w3id.org/class/redaktor/Find

JSON

Inbox

Definition

The act of finding an object.

112 Fire station

https://w3id.org/class/redaktor/FireStation

JSON

Inbox

1140 Firepit

https://w3id.org/class/redaktor/Firepit

JSON

Inbox

724 Fireworks

https://w3id.org/class/redaktor/Fireworks

JSON

Inbox

1183 Fish and Seafood

https://w3id.org/class/redaktor/FishSeafood

JSON

Inbox

1141 Fishing

https://w3id.org/class/redaktor/Fishing

JSON

Inbox

356 Fixture

https://w3id.org/class/redaktor/Fixture

JSON

Inbox

Definition

Items published on a regular schedule, such as columns, cartoons, stock prices and weather forecasts

207 Flag

https://w3id.org/class/redaktor/Flag

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-flag

Scope Note

: Activity

Example

Example 38

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally flagged an inappropriate note",
  "type": "Flag",
  "actor": "http://sally.example.org",
  "object": {
    "type": "Note",
    "content": "An inappropriate note"
  }
}

721 Flea market or Night market

https://w3id.org/class/redaktor/FleaMarket

JSON

Inbox

553 Flight

https://w3id.org/class/redaktor/Flight

JSON

Inbox

Definition

An airline flight.

Exact Match

32 Floor Plan

https://w3id.org/class/redaktor/FloorPlan

JSON

Inbox

Definition

A FloorPlan is an explicit representation of a collection of similar accommodations, allowing the provision of common information (room counts, sizes, layout diagrams) and offers for events, rental or sale. In typical use, some ApartmentComplex has an accommodationFloorPlan which is a FloorPlan. A FloorPlan is always in the context of a particular place, either a larger ApartmentComplex or a single Apartment. The visual/spatial aspects of a floor plan (i.e. room layout, see wikipedia) can be indicated using Image.

Alt Label

  • Layout

Exact Match

1110 Florist

https://w3id.org/class/redaktor/Florist

JSON

Inbox

Exact Match

208 Follow

https://w3id.org/class/redaktor/Follow

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-follow

Scope Note

: Activity

Example

Example 17

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally followed John",
  "type": "Follow",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Person",
    "name": "John"
  }
}

1029 Food Court

https://w3id.org/class/redaktor/FoodCourt

JSON

Inbox

988 Food Establishment

https://w3id.org/class/redaktor/FoodEstablishment

JSON

Inbox

Definition

To broad for OSM. Please select a more specific entry.

725 Food & Drink

https://w3id.org/class/redaktor/FoodEvent

JSON

Inbox

Exact Match

311 Forecast

https://w3id.org/class/redaktor/Forecast

JSON

Inbox

Definition

Opinion as to the outcome of a future event

1185 Forest

https://w3id.org/class/redaktor/Forest

JSON

Inbox

1324 Four Wheel Drive Configuration

https://w3id.org/class/redaktor/FourWheelDriveConfiguration

JSON

Inbox

Definition

Four-wheel drive is a transmission layout where the engine primarily drives two wheels with a part-time four-wheel drive capability.

1215 Friday

https://w3id.org/class/redaktor/Friday

JSON

Inbox

Definition

The day of the week between Thursday and Saturday.

Exact Match

357 From the Scene

https://w3id.org/class/redaktor/FromTheScene

JSON

Inbox

Definition

Report from the location of an event

1323 Front Wheel Drive Configuration

https://w3id.org/class/redaktor/FrontWheelDriveConfiguration

JSON

Inbox

Definition

Front-wheel drive is a transmission layout where the engine drives the front wheels.

763 Fun run

https://w3id.org/class/redaktor/FunRun

JSON

Inbox

1716 Funding Agency

https://w3id.org/class/redaktor/FundingAgency

JSON

Inbox

Definition

A FundingAgency is an organization that implements one or more FundingSchemes and manages the granting process (via Grants, typically MonetaryGrants). A funding agency is not always required for grant funding, e.g. philanthropic giving, corporate sponsorship etc.

89 Funding Scheme

https://w3id.org/class/redaktor/FundingScheme

JSON

Inbox

Definition

A FundingScheme combines organizational, project and policy aspects of grant-based funding that sets guidelines, principles and mechanisms to support other kinds of projects and activities. Funding is typically organized via Grant funding. Examples of funding schemes: Swiss Priority Programmes (SPPs); EU Framework 7 (FP7); Horizon 2020;

1111 Furniture Store

https://w3id.org/class/redaktor/FurnitureStore

JSON

Inbox

516 Game

https://w3id.org/class/redaktor/Game

JSON

Inbox

Definition

The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting.

Exact Match

1361 Game Play Mode

https://w3id.org/class/redaktor/GamePlayMode

JSON

Inbox

Definition

Indicates whether this game is multi-player, co-op or single-player.

61 Game Server

https://w3id.org/class/redaktor/GameServer

JSON

Inbox

Definition

Server that provides game interaction in a multiplayer game.

1371 Game Server Status

https://w3id.org/class/redaktor/GameServerStatus

JSON

Inbox

Definition

Status of a game server.

726 Games

https://w3id.org/class/redaktor/Games

JSON

Inbox

1133 Botanical Garden

https://w3id.org/class/redaktor/GardenBotanical

JSON

Inbox

1134 Community Garden

https://w3id.org/class/redaktor/GardenCommunity

JSON

Inbox

1112 Garden Store

https://w3id.org/class/redaktor/GardenStore

JSON

Inbox

1012 Gas Station

https://w3id.org/class/redaktor/GasStation

JSON

Inbox

Alt Label

  • Petrol Station

1304 Gastroenterologic

https://w3id.org/class/redaktor/Gastroenterologic

JSON

Inbox

Definition

A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.

1067 Gastroenterology

https://w3id.org/class/redaktor/Gastroenterology

JSON

Inbox

1363 Gender Type

https://w3id.org/class/redaktor/GenderType

JSON

Inbox

Definition

An enumeration of genders.

1043 General Contractor

https://w3id.org/class/redaktor/GeneralContractor

JSON

Inbox

1294 Genetic

https://w3id.org/class/redaktor/Genetic

JSON

Inbox

Definition

A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders.

Exact Match

34 Geo Shape

https://w3id.org/class/redaktor/GeoShape

JSON

Inbox

Definition

The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points.

Exact Match

1068 Geriatric

https://w3id.org/class/redaktor/Geriatric

JSON

Inbox

Definition

A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.

Exact Match

1142 Give Box Or Exchange Network

https://w3id.org/class/redaktor/GiveBoxOrExchangeNetwork

JSON

Inbox

1266 Gluten Free Diet

https://w3id.org/class/redaktor/GlutenFreeDiet

JSON

Inbox

Definition

A diet exclusive of gluten.

1095 Golf Course

https://w3id.org/class/redaktor/GolfCourse

JSON

Inbox

727 Government Event

https://w3id.org/class/redaktor/Government

JSON

Inbox

1362 Government Benefits Type

https://w3id.org/class/redaktor/GovernmentBenefitsType

JSON

Inbox

Definition

GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered.

902 Government building

https://w3id.org/class/redaktor/GovernmentBuilding

JSON

Inbox

989 Government Office

https://w3id.org/class/redaktor/GovernmentOffice

JSON

Inbox

90 Government Organization

https://w3id.org/class/redaktor/GovernmentOrganization

JSON

Inbox

Definition

A governmental organization or agency.

1417 Government Service

https://w3id.org/class/redaktor/GovernmentService

JSON

Inbox

Definition

A service provided by a government organization, e.g. food stamps, veterans benefits, etc.

35 Grant

https://w3id.org/class/redaktor/Grant

JSON

Inbox

Definition

A grant, typically financial or otherwise quantifiable, of resources. Typically a funder (role) sponsors some MonetaryAmount to an :Organization or :Person,
sometimes not necessarily via a dedicated or long-lived Project, resulting in one or more outputs, or funded items (Relation). For financial sponsorship, indicate the funder of a MonetaryGrant. For non-financial support, indicate sponsor of [Grant](https://schema.org/Grant)s of resources (e.g. office space).<br><br>Grants support activities directed towards some agreed collective goals, often but not always organized as [Project](https://schema.org/Project)s. Long-lived projects are sometimes sponsored by a variety of grants over time, but it is also common for a project to be associated with a single grant.<br/><br/>The amount of a [Grant](https://schema.org/Grant) is represented usingamountas aMonetaryAmount`.

Exact Match

1203 Graphic Novel

https://w3id.org/class/redaktor/GraphicNovel

JSON

Inbox

Definition

Book format: GraphicNovel. May represent a bound collection of ComicIssue instances.

1184 Greengrocer or Organic Food

https://w3id.org/class/redaktor/Greengrocer

JSON

Inbox

1113 Grocery Store

https://w3id.org/class/redaktor/GroceryStore

JSON

Inbox

79 Group

https://w3id.org/class/redaktor/Group

JSON

Inbox

Definition

Represents a formal or informal collective of Actors.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-group

Scope Note

: Actor

Example

Example 43

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Group",
  "name": "Big Beards of Austin"
}

1200 Group Boarding Policy

https://w3id.org/class/redaktor/GroupBoardingPolicy

JSON

Inbox

Definition

The airline boards by groups based on check-in time, priority, etc.

1069 Gynecologic

https://w3id.org/class/redaktor/Gynecologic

JSON

Inbox

Definition

A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.

1044 HVAC Business

https://w3id.org/class/redaktor/HVACBusiness

JSON

Inbox

728 Hackathon or Barcamp

https://w3id.org/class/redaktor/Hackathon

JSON

Inbox

Exact Match

1143 Hackerspace

https://w3id.org/class/redaktor/Hackerspace

JSON

Inbox

1036 Hair Salon

https://w3id.org/class/redaktor/HairSalon

JSON

Inbox

Exact Match

1261 Halal Diet

https://w3id.org/class/redaktor/HalalDiet

JSON

Inbox

Definition

A diet conforming to Islamic dietary practices.

Exact Match

1205 Hardcover

https://w3id.org/class/redaktor/Hardcover

JSON

Inbox

Definition

Book format: Hardcover.

Exact Match

1114 Hardware Store

https://w3id.org/class/redaktor/HardwareStore

JSON

Inbox

25 Hashtag

https://w3id.org/class/redaktor/Hashtag

JSON

Inbox

Definition

The Hashtag is an object type, subclass of Object, which is used for hashtag-style tags under the tag property.
see w3 wiki or documentation

Scope Note

: Extension

762 Health

https://w3id.org/class/redaktor/Health

JSON

Inbox

990 Health and Beauty Business

https://w3id.org/class/redaktor/HealthAndBeautyBusiness

JSON

Inbox

Definition

To broad for OSM. Please select a more specific entry.

1226 Health Care

https://w3id.org/class/redaktor/HealthCare

JSON

Inbox

Definition

HealthCare: this is a benefit for health care.

1037 Fitness Centre

https://w3id.org/class/redaktor/HealthClub

JSON

Inbox

Alt Label

  • Health Club

729 Health and Wellness

https://w3id.org/class/redaktor/HealthWellness

JSON

Inbox

1193 Healthcare Consideration

https://w3id.org/class/redaktor/HealthcareConsideration

JSON

Inbox

Definition

Item is a pharmaceutical (e.g., a prescription or OTC drug) or a restricted medical device.

1038 Hearing Aids

https://w3id.org/class/redaktor/HearingAids

JSON

Inbox

1210 Hearing Impaired Supported

https://w3id.org/class/redaktor/HearingImpairedSupported

JSON

Inbox

Definition

Uses devices to support users with hearing impairments.

951 Helipad

https://w3id.org/class/redaktor/Helipad

JSON

Inbox

950 Heliport

https://w3id.org/class/redaktor/Heliport

JSON

Inbox

358 Help us to Report

https://w3id.org/class/redaktor/HelpUsToReport

JSON

Inbox

Definition

The news item is a call for readers to provide information that may help journalists to investigate a potential news story

1308 Hematologic

https://w3id.org/class/redaktor/Hematologic

JSON

Inbox

Definition

A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs.

1171 Herbalist

https://w3id.org/class/redaktor/Herbalist

JSON

Inbox

1172 Hifi

https://w3id.org/class/redaktor/Hifi

JSON

Inbox

971 High School

https://w3id.org/class/redaktor/HighSchool

JSON

Inbox

1260 Hindu Diet

https://w3id.org/class/redaktor/HinduDiet

JSON

Inbox

Definition

A diet conforming to Hindu dietary practices, in particular, beef-free.

Exact Match

933 Hindu Temple

https://w3id.org/class/redaktor/HinduTemple

JSON

Inbox

359 History

https://w3id.org/class/redaktor/History

JSON

Inbox

Definition

The object content is based on previous rather than current events.

730 Hobbies

https://w3id.org/class/redaktor/Hobbies

JSON

Inbox

1115 Hobby Shop

https://w3id.org/class/redaktor/HobbyShop

JSON

Inbox

Exact Match

731 Holiday

https://w3id.org/class/redaktor/Holiday

JSON

Inbox

991 Home and Construction Business

https://w3id.org/class/redaktor/HomeAndConstructionBusiness

JSON

Inbox

Definition

To broad for OSM. Please select a more specific entry.

1116 Home Goods Store

https://w3id.org/class/redaktor/HomeGoodsStore

JSON

Inbox

732 Home & Lifestyle

https://w3id.org/class/redaktor/HomeLifestyle

JSON

Inbox

402 Horoscope

https://w3id.org/class/redaktor/Horoscope

JSON

Inbox

Definition

Astrological forecasts

1144 Horse Riding

https://w3id.org/class/redaktor/HorseRiding

JSON

Inbox

903 Hospital

https://w3id.org/class/redaktor/Hospital

JSON

Inbox

Exact Match

576 Hospitality or Couchsurfing Listing

https://w3id.org/class/redaktor/HospitalityListing

JSON

Inbox

Definition

Hospitality exchange platforms help to connect travellers with those who want to host them.
This lists offers and demands.
TODO check https://openhospitality.network for CV.

1053 Hostel

https://w3id.org/class/redaktor/Hostel

JSON

Inbox

Exact Match

1054 Hotel

https://w3id.org/class/redaktor/Hotel

JSON

Inbox

Exact Match

924 Hotel room

https://w3id.org/class/redaktor/HotelRoom

JSON

Inbox

Exact Match

882 House

https://w3id.org/class/redaktor/House

JSON

Inbox

Exact Match

1045 House Painter

https://w3id.org/class/redaktor/HousePainter

JSON

Inbox

517 How To

https://w3id.org/class/redaktor/HowTo

JSON

Inbox

Definition

Instructions that explain how to achieve a result by performing a sequence of steps.

Exact Match

188 How To Direction

https://w3id.org/class/redaktor/HowToDirection

JSON

Inbox

Definition

A direction indicating a single action to do in the instructions for how to achieve a result.

1388 How to Item

https://w3id.org/class/redaktor/HowToItem

JSON

Inbox

Definition

An item used as either a tool or supply when performing the instructions for how to to achieve a result.

Exact Match

592 How To Section

https://w3id.org/class/redaktor/HowToSection

JSON

Inbox

Definition

A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe).

593 How To Step

https://w3id.org/class/redaktor/HowToStep

JSON

Inbox

Definition

A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.

Exact Match

1404 How to Supply

https://w3id.org/class/redaktor/HowToSupply

JSON

Inbox

Definition

A supply consumed when performing the instructions for how to achieve a result.

1389 How to Tool

https://w3id.org/class/redaktor/HowToTool

JSON

Inbox

Definition

A tool used (but not consumed) when performing instructions for how to achieve a result.

Exact Match

518 Hyper Toc

https://w3id.org/class/redaktor/HyperToc

JSON

Inbox

Definition

A HyperToc represents a hypertext table of contents for complex media objects, such as :Video, :Audio. Items in the table of contents are indicated using the tocEntry property, and typed HyperTocEntry. For cases where the same larger work is split into multiple files, [schema:associatedMedia] attachments can be used on individual HyperTocEntry items.

Exact Match

519 Hyper Toc Entry

https://w3id.org/class/redaktor/HyperTocEntry

JSON

Inbox

Definition

A HyperToEntry is an item within a HyperToc, which represents a hypertext table of contents for complex media objects, such as VideoObject, AudioObject. The media object itself is indicated using associatedMedia. Each section of interest within that content can be described with a HyperTocEntry, with associated startOffset and endOffset. When several entries are all from the same file, associatedMedia is used on the overarching HyperTocEntry; if the content has been split into multiple files, they can be referenced using associatedMedia on each HyperTocEntry.

1030 Ice Cream Shop

https://w3id.org/class/redaktor/IceCreamShop

JSON

Inbox

26 Identity Proof

https://w3id.org/class/redaktor/IdentityProof

JSON

Inbox

Definition

Mastodon supports integration with identity providers to prove that a profile is linked to a certain identity. This is implemented using the attachment property on actor objects, with objects in the array having a type of IdentityProof from the Mastodon namespace. The object also includes signatureAlgorithm and signatureValue from the W3ID Security Vocabulary namespace.
see mastodon documentation 'Identity proofs'

Scope Note

ActivityPub Community

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://w3id.org/security/v1",
    {
      "toot": "http://joinmastodon.org/ns#",
      "IdentityProof": ":IdentityProof"
    }
  ],
  "id": "https://mastodon.social/users/Gargron",
  "type": "Person",
  "attachment": [
    {
      "type": "IdentityProof",
      "name": "gargron",
      "signatureAlgorithm": "keybase",
      "signatureValue": "5cfc20c7018f2beefb42a68836da59a792e55daa4d118498c9b1898de7e845690f"
    }
  ]
}

209 Ignore

https://w3id.org/class/redaktor/Ignore

JSON

Inbox

Definition

Indicates that the actor is ignoring the object. The target and origin typically have no defined meaning.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-ignore

Scope Note

: Activity

Example

Example 18

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally ignored a note",
  "type": "Ignore",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": "http://example.org/notes/1"
}

14 Image

https://w3id.org/class/redaktor/Image

JSON

Inbox

Definition

An image document of any kind.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image

Scope Note

: Object

Example

Example 51

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Image",
  "name": "Cat Jumping on Wagon",
  "url": [
    {
      "type": "Link",
      "href": "http://example.org/image.jpeg",
      "mediaType": "image/jpeg"
    },
    {
      "type": "Link",
      "href": "http://example.org/image.png",
      "mediaType": "image/png"
    }
  ]
}

70 Image Gallery

https://w3id.org/class/redaktor/ImageGallery

JSON

Inbox

Definition

Web page type: Image gallery page.

1239 In Stock

https://w3id.org/class/redaktor/InStock

JSON

Inbox

Definition

Indicates that the item is in stock.

Exact Match

1240 In Store Only

https://w3id.org/class/redaktor/InStoreOnly

JSON

Inbox

Definition

Indicates that the item is available only at physical locations.

1295 Infectious

https://w3id.org/class/redaktor/Infectious

JSON

Inbox

Definition

Something in medical science that pertains to infectious diseases i.e caused by bacterial, viral, fungal or parasitic infections.

1064 Infohash

https://w3id.org/class/redaktor/Infohash

JSON

Inbox

Definition

Infohashes (in :name ) for p2p-media-loader of every resolution.
see peertube documentation

Scope Note

ActivityPub Community

Example

{
  "type": "Video",
  "url": [
    // HLS playlist URL (only if HLS transcoding is enabled)
    {
      "type": "Link",
      "mediaType": "application/x-mpegURL",
      "tag": [
        // Infohashes for p2p-media-loader of every resolution
        {
          "type": "Infohash",
          "name": "d7844378e5a6b9af2d45267c0e413688e7839918"
        }
      ]
    }
  ]
}

439 Install

https://w3id.org/class/redaktor/Install

JSON

Inbox

Definition

The act of installing an application.

1021 Insurance Agency

https://w3id.org/class/redaktor/InsuranceAgency

JSON

Inbox

59 Interaction Counter

https://w3id.org/class/redaktor/InteractionCounter

JSON

Inbox

Definition

A summary of how users have interacted with this CreativeWork. In most cases, authors will use a subtype to specify the specific type of interaction.

992 Internet Cafe

https://w3id.org/class/redaktor/InternetCafe

JSON

Inbox

360 Interview

https://w3id.org/class/redaktor/Interview

JSON

Inbox

Definition

The report of a dialogue between a journalist and a news source or significant person

5 Intransitive Activity

https://w3id.org/class/redaktor/IntransitiveActivity

JSON

Inbox

Definition

Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The object property is therefore inappropriate for these activities.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-intransitiveactivity

Scope Note

: Activity

Example

Example 4

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Travel",
  "summary": "Sally went to work",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "target": {
    "type": "Place",
    "name": "Work"
  }
}

210 Invite

https://w3id.org/class/redaktor/Invite

JSON

Inbox

Definition

A specialization of Offer in which the actor is extending an invitation for the object to the target.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-invite

Scope Note

: Activity

Example

Example 24

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally invited John and Lisa to a party",
  "type": "Invite",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Event",
    "name": "A Party"
  },
  "target": [
    {
      "type": "Person",
      "name": "John"
    },
    {
      "type": "Person",
      "name": "Lisa"
    }
  ]
}

186 Invoice

https://w3id.org/class/redaktor/Invoice

JSON

Inbox

Definition

A statement of the money due for goods or services; a bill.

Exact Match

1364 Item Availability

https://w3id.org/class/redaktor/ItemAvailability

JSON

Inbox

Definition

A list of possible product availability options.

36 Item List

https://w3id.org/class/redaktor/ItemList

JSON

Inbox

Definition

A list of items of any sort&#x2014;for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.

Exact Match

1248 Item List Order Ascending

https://w3id.org/class/redaktor/ItemListOrderAscending

JSON

Inbox

Definition

An ItemList ordered with lower values listed first.

1247 Item List Order Descending

https://w3id.org/class/redaktor/ItemListOrderDescending

JSON

Inbox

Definition

An ItemList ordered with higher values listed first.

1365 Item List-Order Type

https://w3id.org/class/redaktor/ItemListOrderType

JSON

Inbox

Definition

Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.

1246 Item List Unordered

https://w3id.org/class/redaktor/ItemListUnordered

JSON

Inbox

Definition

An ItemList ordered with no explicit order.

571 Item Page

https://w3id.org/class/redaktor/ItemPage

JSON

Inbox

Definition

A page devoted to a single item, such as a particular product or hotel.

Exact Match

211 Join

https://w3id.org/class/redaktor/Join

JSON

Inbox

Definition

Indicates that the actor has joined the object. The target and origin typically have no defined meaning.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-join

Scope Note

: Activity

Example

Example 19

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally joined a group",
  "type": "Join",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Group",
    "name": "A Simple Group"
  }
}

1259 Kosher Diet

https://w3id.org/class/redaktor/KosherDiet

JSON

Inbox

Definition

A diet conforming to Jewish dietary practices.

736 LGBTQ

https://w3id.org/class/redaktor/LGBTQ

JSON

Inbox

1288 Laboratory Science

https://w3id.org/class/redaktor/LaboratoryScience

JSON

Inbox

Definition

A medical science pertaining to chemical, hematological, immunologic, microscopic, or bacteriological diagnostic analyses or research.

938 Lake

https://w3id.org/class/redaktor/LakeBodyOfWater

JSON

Inbox

873 Landform

https://w3id.org/class/redaktor/Landform

JSON

Inbox

Definition

A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.

Exact Match

874 Landmarks or Historical Buildings

https://w3id.org/class/redaktor/LandmarksOrHistoricalBuildings

JSON

Inbox

Definition

An historical landmark or building.

43 Language

https://w3id.org/class/redaktor/Language

JSON

Inbox

Definition

Natural languages such as Spanish, Tamil, Hindi, English, etc. Formal language code tags expressed in BCP 47 can be used via the [[alternateName]] property. The Language type previously also covered programming languages such as Scheme and Lisp, which are now best represented using [[ComputerLanguage]].

Exact Match

734 Language & Culture

https://w3id.org/class/redaktor/LanguageCulture

JSON

Inbox

1160 Language School

https://w3id.org/class/redaktor/LanguageSchool

JSON

Inbox

520 Learning Resource

https://w3id.org/class/redaktor/LearningResource

JSON

Inbox

Definition

The LearningResource type can be used to indicate CreativeWorks (whether physical or digital) that have a particular and explicit orientation towards learning, education, skill acquisition, and other educational purposes.

LearningResource is expected to be used as an addition to a primary type such as :Book, :Video etc.

EducationEvent serves a similar purpose for event-like things (e.g. a Trip). A LearningResource may be created as a result of an EducationEvent, for example by recording one.

Alt Label

  • Educational material

212 Leave

https://w3id.org/class/redaktor/Leave

JSON

Inbox

Definition

Indicates that the actor has left the object. The target and origin typically have no meaning.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-leave

Scope Note

: Activity

Example

Example 20

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally left work",
  "type": "Leave",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Place",
    "name": "Work"
  }
}

1188 Left Hand Driving

https://w3id.org/class/redaktor/LeftHandDriving

JSON

Inbox

Definition

The steering position is on the left side of the vehicle (viewed from the main direction of driving).

993 Legal Service

https://w3id.org/class/redaktor/LegalService

JSON

Inbox

Alt Label

  • Legal Service

930 Legislative building

https://w3id.org/class/redaktor/LegislativeBuilding

JSON

Inbox

968 Library

https://w3id.org/class/redaktor/Library

JSON

Inbox

Alt Label

  • athenaeum

Exact Match

91 Library System

https://w3id.org/class/redaktor/LibrarySystem

JSON

Inbox

Definition

A library.

213 Like

https://w3id.org/class/redaktor/Like

JSON

Inbox

Definition

Indicates that the actor likes, recommends or endorses the object. The target and origin typically have no defined meaning.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-like

Scope Note

: Activity

Example

Example 22

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally liked a note",
  "type": "Like",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": "http://example.org/notes/1"
}

1245 Limited Availability

https://w3id.org/class/redaktor/LimitedAvailability

JSON

Inbox

Definition

Indicates that the item has limited availability.

1117 Liquor Store

https://w3id.org/class/redaktor/LiquorStore

JSON

Inbox

37 List Item

https://w3id.org/class/redaktor/ListItem

JSON

Inbox

Definition

An list item, e.g. a step in a checklist or how-to description.

Exact Match

214 Listen

https://w3id.org/class/redaktor/Listen

JSON

Inbox

Definition

Indicates that the actor has listened to the object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-listen

Scope Note

: Activity

Example

Example 32

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally listened to a piece of music",
  "type": "Listen",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": "http://example.org/music.mp3"
}

361 Fact Box

https://w3id.org/class/redaktor/ListingOfFacts

JSON

Inbox

Definition

Usually a sidebar that lists facts related to a topic or story

735 Literature & Writing

https://w3id.org/class/redaktor/LiteraryEvent

JSON

Inbox

382 Live Coverage

https://w3id.org/class/redaktor/LiveCoverage

JSON

Inbox

Definition

News item containing ongoing, up to the minute coverage of a news event, such as a live blog or live video feed

84 Local Business

https://w3id.org/class/redaktor/LocalBusiness

JSON

Inbox

Definition

A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.

1379 Location Feature Specification

https://w3id.org/class/redaktor/LocationFeatureSpecification

JSON

Inbox

Definition

Specifies a location feature by providing a structured value representing a feature of an accommodation as a property-value pair of varying degrees of formality.

1222 Locker Delivery

https://w3id.org/class/redaktor/LockerDelivery

JSON

Inbox

Definition

A DeliveryMethod in which an item is made available via locker.

1046 Locksmith

https://w3id.org/class/redaktor/Locksmith

JSON

Inbox

Exact Match

994 Lodging Business

https://w3id.org/class/redaktor/LodgingBusiness

JSON

Inbox

431 Lose

https://w3id.org/class/redaktor/Lose

JSON

Inbox

Definition

The act of being defeated in a competitive activity.

1264 Low Calorie Diet

https://w3id.org/class/redaktor/LowCalorieDiet

JSON

Inbox

Definition

A diet focused on reduced calorie intake.

1258 Low Fat Diet

https://w3id.org/class/redaktor/LowFatDiet

JSON

Inbox

Definition

A diet focused on reduced fat and cholesterol intake.

1265 Low Lactose Diet

https://w3id.org/class/redaktor/LowLactoseDiet

JSON

Inbox

Definition

A diet appropriate for people with lactose intolerance.

1263 Low Salt Diet

https://w3id.org/class/redaktor/LowSaltDiet

JSON

Inbox

Definition

A diet focused on reduced sodium intake.

1234 Male

https://w3id.org/class/redaktor/Male

JSON

Inbox

Definition

The male gender.

Exact Match

521 Manuscript

https://w3id.org/class/redaktor/Manuscript

JSON

Inbox

Definition

A book, document, or piece of music written by hand rather than typed or printed.

522 Map

https://w3id.org/class/redaktor/Map

JSON

Inbox

Definition

A geographical map.

Exact Match

1366 Map Category Type

https://w3id.org/class/redaktor/MapCategoryType

JSON

Inbox

Definition

An enumeration of several kinds of Map.

45 Mass

https://w3id.org/class/redaktor/Mass

JSON

Inbox

Definition

Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.

Exact Match

1039 Massage

https://w3id.org/class/redaktor/Massage

JSON

Inbox

523 Math Solver

https://w3id.org/class/redaktor/MathSolver

JSON

Inbox

Definition

A math solver which is capable of solving a subset of mathematical problems.

1186 Meadow

https://w3id.org/class/redaktor/Meadow

JSON

Inbox

1396 Media Object

https://w3id.org/class/redaktor/MediaObject

JSON

Inbox

Definition

A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's).

109 Media Subscription

https://w3id.org/class/redaktor/MediaSubscription

JSON

Inbox

Definition

A subscription which allows a user to access media including audio, video, books, etc.

1386 Medical Audience

https://w3id.org/class/redaktor/MedicalAudience

JSON

Inbox

Definition

Target audiences for medical web pages.

1372 Medical Audience Type

https://w3id.org/class/redaktor/MedicalAudienceType

JSON

Inbox

Definition

Target audiences types for medical web pages. Enumerated type.

995 Medical Business

https://w3id.org/class/redaktor/MedicalBusiness

JSON

Inbox

1070 Medical Clinic

https://w3id.org/class/redaktor/MedicalClinic

JSON

Inbox

92 Medical Organization

https://w3id.org/class/redaktor/MedicalOrganization

JSON

Inbox

Definition

A medical organization (physical or not), such as hospital, institution or clinic.

572 Medical Page

https://w3id.org/class/redaktor/MedicalPage

JSON

Inbox

Definition

A page dealing with a medical topic.

1272 Medical Researcher

https://w3id.org/class/redaktor/MedicalResearcher

JSON

Inbox

Definition

Medical researchers.

395 Medical Scholarly

https://w3id.org/class/redaktor/MedicalScholarlyArticle

JSON

Inbox

Definition

A medical scholarly article

1373 Medical Specialty

https://w3id.org/class/redaktor/MedicalSpecialty

JSON

Inbox

Definition

Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.

925 Meeting Room

https://w3id.org/class/redaktor/MeetingRoom

JSON

Inbox

1118 Mens Clothing Store

https://w3id.org/class/redaktor/MensClothingStore

JSON

Inbox

23 Mention

https://w3id.org/class/redaktor/Mention

JSON

Inbox

Definition

A specialized Link that represents an @mention.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mention

Scope Note

: Object

Example

Example 58

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Mention of Joe by Carrie in her note",
  "type": "Mention",
  "href": "http://example.org/joe",
  "name": "Joe"
}

1400 Menu

https://w3id.org/class/redaktor/Menu

JSON

Inbox

Definition

A structured representation of food or drink items available from a FoodEstablishment.

Exact Match

54 Menu Item

https://w3id.org/class/redaktor/MenuItem

JSON

Inbox

Definition

A food or drink item listed in a menu or menu section.

Exact Match

1399 Menu Section

https://w3id.org/class/redaktor/MenuSection

JSON

Inbox

Definition

A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider.

77 Merchant Return Policy

https://w3id.org/class/redaktor/MerchantReturnPolicy

JSON

Inbox

Definition

A MerchantReturnPolicy provides information about product return policies associated with an [[Organization]], [[Product]], or [[Offer]].

972 Middle School

https://w3id.org/class/redaktor/MiddleSchool

JSON

Inbox

1071 Midwifery

https://w3id.org/class/redaktor/Midwifery

JSON

Inbox

Definition

A nurse-like health profession that deals with pregnancy, childbirth, and the postpartum period (including care of the newborn), besides sexual and reproductive health of women throughout their lives.

Exact Match

1145 Miniature Golf

https://w3id.org/class/redaktor/MiniatureGolf

JSON

Inbox

Alt Label

  • Mini Golf

1119 Mobile Phone Store

https://w3id.org/class/redaktor/MobilePhoneStore

JSON

Inbox

965 Monastery

https://w3id.org/class/redaktor/Monastery

JSON

Inbox

1216 Monday

https://w3id.org/class/redaktor/Monday

JSON

Inbox

Definition

The day of the week between Sunday and Tuesday.

Exact Match

55 Monetary Amount

https://w3id.org/class/redaktor/MonetaryAmount

JSON

Inbox

Definition

A monetary value or range. This type can be used to describe an amount of money such as $50 USD, or a range as in describing a bank account being suitable for a balance between £1,000 and £1,000,000 GBP, or the value of a salary, etc. It is recommended to use [[PriceSpecification]] Types to describe the price of an Offer, Invoice, etc.

550 Monetary Grant

https://w3id.org/class/redaktor/MonetaryGrant

JSON

Inbox

Definition

A monetary grant.
See Grant for details.

934 Mosque

https://w3id.org/class/redaktor/Mosque

JSON

Inbox

Exact Match

1055 Motel

https://w3id.org/class/redaktor/Motel

JSON

Inbox

Exact Match

1013 Motorcycle Dealer

https://w3id.org/class/redaktor/MotorcycleDealer

JSON

Inbox

963 Motorcycle Parking

https://w3id.org/class/redaktor/MotorcycleParking

JSON

Inbox

1014 Motorcycle Repair

https://w3id.org/class/redaktor/MotorcycleRepair

JSON

Inbox

922 Mountain

https://w3id.org/class/redaktor/Mountain

JSON

Inbox

Exact Match

215 Move

https://w3id.org/class/redaktor/Move

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-move

Scope Note

: Activity

Example

Example 34

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally moved a post from List A to List B",
  "type": "Move",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": "http://example.org/posts/1",
  "target": {
    "type": "Collection",
    "name": "List B"
  },
  "origin": {
    "type": "Collection",
    "name": "List A"
  }
}

737 Movements

https://w3id.org/class/redaktor/Movement

JSON

Inbox

326 Movie

https://w3id.org/class/redaktor/Movie

JSON

Inbox

Definition

A movie, e.g. cinema

Exact Match

557 Movie Clip

https://w3id.org/class/redaktor/MovieClip

JSON

Inbox

Definition

A short segment/part of a movie.

1120 Movie Rental Store

https://w3id.org/class/redaktor/MovieRentalStore

JSON

Inbox

337 Movie Series

https://w3id.org/class/redaktor/MovieSeries

JSON

Inbox

904 Movie theater

https://w3id.org/class/redaktor/MovieTheater

JSON

Inbox

Alt Label

  • Cinema

1047 Moving Company

https://w3id.org/class/redaktor/MovingCompany

JSON

Inbox

1223 Multi Player

https://w3id.org/class/redaktor/MultiPlayer

JSON

Inbox

Definition

Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.

1297 Musculoskeletal

https://w3id.org/class/redaktor/Musculoskeletal

JSON

Inbox

Definition

A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.

905 Museum

https://w3id.org/class/redaktor/Museum

JSON

Inbox

Exact Match

327 Music Album

https://w3id.org/class/redaktor/MusicAlbum

JSON

Inbox

Definition

A collection of music tracks.

524 Music Composition

https://w3id.org/class/redaktor/MusicComposition

JSON

Inbox

Definition

A musical composition.

738 Music

https://w3id.org/class/redaktor/MusicEvent

JSON

Inbox

1721 Music Group

https://w3id.org/class/redaktor/MusicGroup

JSON

Inbox

Definition

A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.

329 Music

https://w3id.org/class/redaktor/MusicOnly

JSON

Inbox

Definition

Content is solely music

525 Music Playlist

https://w3id.org/class/redaktor/MusicPlaylist

JSON

Inbox

Definition

A collection of music tracks in playlist form. Use :Playlist for Video-Playlists.

Alt Label

  • Music Tracklist

526 Music Recording

https://w3id.org/class/redaktor/MusicRecording

JSON

Inbox

Definition

A music recording (track), usually a single song.

328 Music Release

https://w3id.org/class/redaktor/MusicRelease

JSON

Inbox

Definition

A Music Release is a specific release of a music album.

1121 Music Store

https://w3id.org/class/redaktor/MusicStore

JSON

Inbox

906 Music venue

https://w3id.org/class/redaktor/MusicVenue

JSON

Inbox

1173 Musical Instruments

https://w3id.org/class/redaktor/MusicalInstruments

JSON

Inbox

93 NGO

https://w3id.org/class/redaktor/NGO

JSON

Inbox

Definition

Organization: Non-governmental Organization.

Exact Match

1040 Nail Salon

https://w3id.org/class/redaktor/NailSalon

JSON

Inbox

Exact Match

1194 Narcotic Consideration

https://w3id.org/class/redaktor/NarcoticConsideration

JSON

Inbox

Definition

Item is a narcotic as defined by the 1961 UN convention, for example marijuna or heroin.

739 Gardening

https://w3id.org/class/redaktor/NatureGardening

JSON

Inbox

Definition

Nature Events like Cherry Blossom and Gardening

1146 Nature Reserve

https://w3id.org/class/redaktor/NatureReserve

JSON

Inbox

740 Networking

https://w3id.org/class/redaktor/Networking

JSON

Inbox

1312 Neurologic

https://w3id.org/class/redaktor/Neurologic

JSON

Inbox

Definition

A specific branch of medical science that studies the nerves and nervous system and its respective disease states.

1256 New Condition

https://w3id.org/class/redaktor/NewCondition

JSON

Inbox

Definition

Indicates that the item is new.

343 News

https://w3id.org/class/redaktor/News

JSON

Inbox

Definition

The object contains material relating to general news program and/or event

Note

Example: A news item or program covering general news such as the 6pm News program (whole program) and individual items within that program.

1122 News Agent or Kiosk

https://w3id.org/class/redaktor/NewsAgentOrKiosk

JSON

Inbox

94 News Media Organization

https://w3id.org/class/redaktor/NewsMediaOrganization

JSON

Inbox

Definition

A News/Media organization such as a newspaper or TV station.

365 Profile

https://w3id.org/class/redaktor/NewsProfile

JSON

Inbox

Definition

Description of the life or activity of a news subject based on facts discovered through research and interviews

1020 Night Club

https://w3id.org/class/redaktor/NightClub

JSON

Inbox

Exact Match

1369 Nonprofit Type

https://w3id.org/class/redaktor/NonprofitType

JSON

Inbox

Definition

NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be.

1051 Notary

https://w3id.org/class/redaktor/Notary

JSON

Inbox

Exact Match

15 Note

https://w3id.org/class/redaktor/Note

JSON

Inbox

Definition

Represents a short written work typically less than a single paragraph in length.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-note

Scope Note

: Object

Example

Example 53

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Note",
  "name": "A Word of Warning",
  "content": "Looks like it is going to rain today. Bring an umbrella!"
}

1072 Nursing

https://w3id.org/class/redaktor/Nursing

JSON

Inbox

Definition

A health profession of a person formally educated and trained in the care of the sick or infirm person.

Exact Match

51 Nutrition Information

https://w3id.org/class/redaktor/NutritionInformation

JSON

Inbox

Definition

Nutritional information about the recipe.

362 Obituary

https://w3id.org/class/redaktor/Obituary

JSON

Inbox

Definition

A narrative about an individual's life and achievements for publication after death

0 Object

https://w3id.org/class/redaktor/Object

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object

Scope Note

: Core

Example

Example 1

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Object",
  "id": "http://www.test.example/object/1",
  "name": "A Simple, non-specific object"
}

52 Observation

https://w3id.org/class/redaktor/Observation

JSON

Inbox

Definition

Instances of the class [[Observation]] are used to specify observations about an entity (which may or may not be an instance of a [[StatisticalPopulation]]), at a particular time. The principal properties of an [[Observation]] are [[observedNode]], [[measuredProperty]], [[measuredValue]] (or [[median]], etc.) and [[observationDate]] ([[measuredProperty]] properties can, but need not always, be W3C RDF Data Cube "measure properties", as in the lifeExpectancy example). See also [[StatisticalPopulation]], and the data and datasets overview for more details.

1073 Obstetric

https://w3id.org/class/redaktor/Obstetric

JSON

Inbox

Definition

A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child.

Exact Match

103 Occupation

https://w3id.org/class/redaktor/Occupation

JSON

Inbox

Definition

A profession, may involve prolonged training and/or a formal qualification.

939 Ocean

https://w3id.org/class/redaktor/OceanBodyOfWater

JSON

Inbox

216 Offer

https://w3id.org/class/redaktor/Offer

JSON

Inbox

Definition

Indicates that the actor is offering the object. If specified, the target indicates the entity to which the object is being offered.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-offer

Scope Note

: Activity

Example

Example 23

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally offered 50% off to Lewis",
  "type": "Offer",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "http://www.types.example/ProductOffer",
    "name": "50% Off!"
  },
  "target": {
    "type": "Person",
    "name": "Lewis"
  }
}

1381 Offer Catalog

https://w3id.org/class/redaktor/OfferCatalog

JSON

Inbox

Definition

An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider.

1367 Offer Item Condition

https://w3id.org/class/redaktor/OfferItemCondition

JSON

Inbox

Definition

A list of possible conditions for the item.

105 Offer Shipping Details

https://w3id.org/class/redaktor/OfferShippingDetails

JSON

Inbox

Definition

OfferShippingDetails represents information about shipping destinations.Multiple of these entities can be used to represent different shipping rates for different destinations: One entity for Alaska/Hawaii. A different one for continental US.A different one for all France. Multiple of these entities can be used to represent different shipping costs and delivery times.

1123 Office Equipment Store

https://w3id.org/class/redaktor/OfficeEquipmentStore

JSON

Inbox

1269 Offline Permanently

https://w3id.org/class/redaktor/OfflinePermanently

JSON

Inbox

Definition

Game server status: OfflinePermanently. Server is offline and not available.

1271 Offline Temporarily

https://w3id.org/class/redaktor/OfflineTemporarily

JSON

Inbox

Definition

Game server status: OfflineTemporarily. Server is offline now but it can be online soon.

765 On Demand

https://w3id.org/class/redaktor/OnDemandEvent

JSON

Inbox

1221 On Site Pickup

https://w3id.org/class/redaktor/OnSitePickup

JSON

Inbox

Definition

A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.

1074 Oncologic

https://w3id.org/class/redaktor/Oncologic

JSON

Inbox

Definition

A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.

Exact Match

1228 One Time Payments

https://w3id.org/class/redaktor/OneTimePayments

JSON

Inbox

Definition

OneTimePayments: this is a benefit for one-time payments for individuals.

1270 Online

https://w3id.org/class/redaktor/Online

JSON

Inbox

Definition

Game server status: Online. Server is available.

Exact Match

95 Online Business

https://w3id.org/class/redaktor/OnlineBusiness

JSON

Inbox

Definition

A particular online business, either standalone or the online part of a broader organization. Examples include an eCommerce site, an online travel booking site, an online learning site, an online logistics and shipping provider, an online (virtual) doctor, etc.

1268 Online Full

https://w3id.org/class/redaktor/OnlineFull

JSON

Inbox

Definition

Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached.

1238 Online Only

https://w3id.org/class/redaktor/OnlineOnly

JSON

Inbox

Definition

Indicates that the item is available only online.

1719 Online Store

https://w3id.org/class/redaktor/OnlineStore

JSON

Inbox

Definition

An eCommerce site.

56 Opening Hours Specification

https://w3id.org/class/redaktor/OpeningHoursSpecification

JSON

Inbox

Definition

A structured value providing information about the opening hours of a place or a certain service inside a place.

The place is open if the [[opens]] property is specified, and closed otherwise.

If the value for the [[closes]] property is less than the value for the [[opens]] property then the hour range is assumed to span over the next day.

312 Opinion

https://w3id.org/class/redaktor/Opinion

JSON

Inbox

Definition

Editorial comment that reflects the views of the author

1075 Optician

https://w3id.org/class/redaktor/Optician

JSON

Inbox

Exact Match

1076 Optometric

https://w3id.org/class/redaktor/Optometric

JSON

Inbox

Definition

The science or practice of testing visual acuity and prescribing corrective lenses.

1187 Orchard

https://w3id.org/class/redaktor/Orchard

JSON

Inbox

184 Order

https://w3id.org/class/redaktor/Order

JSON

Inbox

Definition

An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.

Exact Match

1315 Order Cancelled

https://w3id.org/class/redaktor/OrderCancelled

JSON

Inbox

Definition

OrderStatus representing cancellation of an order.

1317 Order Delivered

https://w3id.org/class/redaktor/OrderDelivered

JSON

Inbox

Definition

OrderStatus representing successful delivery of an order.

1320 Order In Transit

https://w3id.org/class/redaktor/OrderInTransit

JSON

Inbox

Definition

OrderStatus representing that an order is in transit.

38 Item Order

https://w3id.org/class/redaktor/OrderItem

JSON

Inbox

Definition

An order item is a line of an order. It includes the quantity and shipping details of a bought offer.

1319 Order Payment Due

https://w3id.org/class/redaktor/OrderPaymentDue

JSON

Inbox

Definition

OrderStatus representing that payment is due on an order.

1322 Order Pickup Available

https://w3id.org/class/redaktor/OrderPickupAvailable

JSON

Inbox

Definition

OrderStatus representing availability of an order for pickup.

1316 Order Problem

https://w3id.org/class/redaktor/OrderProblem

JSON

Inbox

Definition

OrderStatus representing that there is a problem with the order.

1321 Order Processing

https://w3id.org/class/redaktor/OrderProcessing

JSON

Inbox

Definition

OrderStatus representing that an order is being processed.

1318 Order Returned

https://w3id.org/class/redaktor/OrderReturned

JSON

Inbox

Definition

OrderStatus representing that an order has been returned.

1374 Order Status

https://w3id.org/class/redaktor/OrderStatus

JSON

Inbox

Definition

Enumerated status values for Order.

8 Ordered Collection

https://w3id.org/class/redaktor/OrderedCollection

JSON

Inbox

Definition

A subtype of Collection in which members of the logical collection are assumed to always be strictly ordered.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollection

Scope Note

: Object

Example

Example 6

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally's notes",
  "type": "OrderedCollection",
  "totalItems": 2,
  "orderedItems": [
    {
      "type": "Note",
      "name": "A Simple Note"
    },
    {
      "type": "Note",
      "name": "Another Simple Note"
    }
  ]
}

9 Ordered Collection Page

https://w3id.org/class/redaktor/OrderedCollectionPage

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage

Scope Note

: Object

Example

Example 8

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Page 1 of Sally's notes",
  "type": "OrderedCollectionPage",
  "id": "http://example.org/foo?page=1",
  "partOf": "http://example.org/foo",
  "orderedItems": [
    {
      "type": "Note",
      "name": "A Simple Note"
    },
    {
      "type": "Note",
      "name": "Another Simple Note"
    }
  ]
}

80 Organization

https://w3id.org/class/redaktor/Organization

JSON

Inbox

Scope Note

: Actor

Example

Example 44

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Organization",
  "name": "Example Co."
}

426 Organize

https://w3id.org/class/redaktor/Organize

JSON

Inbox

Definition

The act of manipulating/administering/supervising/controlling one or more objects.

1077 Orthopaedics

https://w3id.org/class/redaktor/Orthopaedics

JSON

Inbox

760 Other

https://w3id.org/class/redaktor/Other

JSON

Inbox

1078 Otolaryngologic

https://w3id.org/class/redaktor/Otolaryngologic

JSON

Inbox

Definition

A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.

1236 Out Of Stock

https://w3id.org/class/redaktor/OutOfStock

JSON

Inbox

Definition

Indicates that the item is out of stock.

1174 Outdoor

https://w3id.org/class/redaktor/Outdoor

JSON

Inbox

741 Outdoors, Adventure, Travel or Picnic

https://w3id.org/class/redaktor/OutdoorsAdventure

JSON

Inbox

1124 Outlet Store

https://w3id.org/class/redaktor/OutletStore

JSON

Inbox

106 Ownership Info

https://w3id.org/class/redaktor/OwnershipInfo

JSON

Inbox

Definition

A structured value providing information about when a certain organization or person owned a certain product.

16 Page

https://w3id.org/class/redaktor/Page

JSON

Inbox

Definition

Represents a Web Page.
Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-page

Scope Note

: Object

Example

Example 54

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Page",
  "name": "Omaha Weather Report",
  "url": "http://example.org/weather-in-omaha.html"
}

1232 Paid Leave

https://w3id.org/class/redaktor/PaidLeave

JSON

Inbox

Definition

PaidLeave: this is a benefit for paid leave.

Exact Match

527 Painting

https://w3id.org/class/redaktor/Painting

JSON

Inbox

Definition

A painting.

Exact Match

1079 Palliative

https://w3id.org/class/redaktor/Palliative

JSON

Inbox

1204 Paperback

https://w3id.org/class/redaktor/Paperback

JSON

Inbox

Definition

Book format: Paperback.

Exact Match

742 Parade

https://w3id.org/class/redaktor/Parade

JSON

Inbox

104 Parcel Delivery

https://w3id.org/class/redaktor/ParcelDelivery

JSON

Inbox

Definition

The delivery of a parcel either via the postal service or a commercial service.

1147 Parcel Locker

https://w3id.org/class/redaktor/ParcelLocker

JSON

Inbox

1220 Parcel Service

https://w3id.org/class/redaktor/ParcelService

JSON

Inbox

Definition

A private parcel service as the delivery mode available for a certain offer.

Commonly used values:

1230 Parental Support

https://w3id.org/class/redaktor/ParentalSupport

JSON

Inbox

Definition

ParentalSupport: this is a benefit for parental support.

907 Park

https://w3id.org/class/redaktor/Park

JSON

Inbox

Exact Match

908 Parking facility

https://w3id.org/class/redaktor/ParkingFacility

JSON

Inbox

1251 Parking Map

https://w3id.org/class/redaktor/ParkingMap

JSON

Inbox

Definition

A parking map.

743 Party

https://w3id.org/class/redaktor/Party

JSON

Inbox

1175 Party

https://w3id.org/class/redaktor/PartyShop

JSON

Inbox

1300 Pathology

https://w3id.org/class/redaktor/Pathology

JSON

Inbox

Definition

A specific branch of medical science that is concerned with the study of the cause, origin and nature of a disease state, including its consequences as a result of manifestation of the disease. In clinical care, the term is used to designate a branch of medicine using laboratory tests to diagnose and determine the prognostic significance of illness.

Exact Match

1125 Pawn Shop

https://w3id.org/class/redaktor/PawnShop

JSON

Inbox

Exact Match

1351 Payment Method

https://w3id.org/class/redaktor/PaymentMethod

JSON

Inbox

Definition

1080 Pediatric

https://w3id.org/class/redaktor/Pediatric

JSON

Inbox

Definition

A specific branch of medical science that specializes in the care of infants, children and adolescents.

Exact Match

909 Performing arts theater

https://w3id.org/class/redaktor/PerformingArtsTheater

JSON

Inbox

96 Performing Group

https://w3id.org/class/redaktor/PerformingGroup

JSON

Inbox

Definition

A performance group, such as a band, an orchestra, or a circus.

189 Permit

https://w3id.org/class/redaktor/Permit

JSON

Inbox

Definition

A permit issued by an organization, e.g. a parking pass.

Exact Match

81 Person

https://w3id.org/class/redaktor/Person

JSON

Inbox

Definition

Represents an individual person.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-person

Scope Note

: Actor

Example

Example 45

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Person",
  "name": "Sally Smith"
}

1126 Pet Store

https://w3id.org/class/redaktor/PetStore

JSON

Inbox

Exact Match

744 Pets

https://w3id.org/class/redaktor/Pets

JSON

Inbox

1081 Pharmacy

https://w3id.org/class/redaktor/Pharmacy

JSON

Inbox

Exact Match

1307 Pharmacy Specialty

https://w3id.org/class/redaktor/PharmacySpecialty

JSON

Inbox

Definition

The practice or art and science of preparing and dispensing drugs and medicines.

1148 Photo Booth

https://w3id.org/class/redaktor/PhotoBooth

JSON

Inbox

71 Photo-essay

https://w3id.org/class/redaktor/PhotoEssay

JSON

Inbox

Definition

A photographic essay, or photo essay for short, is a form of visual storytelling, a way of presenting a narrative through a series of images.

Alt Label

  • Photostory

72 Photoreportage

https://w3id.org/class/redaktor/PhotoReportage

JSON

Inbox

Definition

A factual photographic story often with captions or text between the pictures.

528 Photograph

https://w3id.org/class/redaktor/Photograph

JSON

Inbox

Definition

A photograph.

745 Photography

https://w3id.org/class/redaktor/Photography

JSON

Inbox

1082 Physician

https://w3id.org/class/redaktor/Physician

JSON

Inbox

Exact Match

1083 Physiotherapy

https://w3id.org/class/redaktor/Physiotherapy

JSON

Inbox

Definition

The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery..

1149 Picnic Table

https://w3id.org/class/redaktor/PicnicTable

JSON

Inbox

1097 Pitch

https://w3id.org/class/redaktor/Pitch

JSON

Inbox

17 Place

https://w3id.org/class/redaktor/Place

JSON

Inbox

Definition

Represents a logical or physical location. See 5.3 Representing Places for additional information.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-place

Scope Note

: Object

Example

Example 56

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Place",
  "name": "Work"
}

910 Place of worship

https://w3id.org/class/redaktor/PlaceOfWorship

JSON

Inbox

1150 Planetarium

https://w3id.org/class/redaktor/Planetarium

JSON

Inbox

1084 Plastic Surgery

https://w3id.org/class/redaktor/PlasticSurgery

JSON

Inbox

Definition

A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means.

427 Play

https://w3id.org/class/redaktor/Play

JSON

Inbox

Definition

The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.

440 Play Game

https://w3id.org/class/redaktor/PlayGame

JSON

Inbox

911 Playground

https://w3id.org/class/redaktor/Playground

JSON

Inbox

76 Playlist

https://w3id.org/class/redaktor/Playlist

JSON

Inbox

Definition

The object is used to represent a video playlist. It extends OrderedCollectionPage and items are PlaylistElement.
see peertube documentation

Scope Note

ActivityPub Community

27 Playlist Element

https://w3id.org/class/redaktor/PlaylistElement

JSON

Inbox

Definition

The object is used to represent a video playlist element inside the Playlist collection.
see peertube documentation

Scope Note

ActivityPub Community

1048 Plumber

https://w3id.org/class/redaktor/Plumber

JSON

Inbox

Exact Match

336 Podcast Series

https://w3id.org/class/redaktor/PodcastSeries

JSON

Inbox

1085 Podiatric

https://w3id.org/class/redaktor/Podiatric

JSON

Inbox

Definition

Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders.

Exact Match

746 Podium, Discussion

https://w3id.org/class/redaktor/Podium

JSON

Inbox

110 Police station

https://w3id.org/class/redaktor/PoliceStation

JSON

Inbox

363 Polls and Surveys

https://w3id.org/class/redaktor/PollsAndSurveys

JSON

Inbox

Definition

Numeric or other information produced as a result of questionnaires or interviews

940 Pond

https://w3id.org/class/redaktor/Pond

JSON

Inbox

Exact Match

1033 Post Office

https://w3id.org/class/redaktor/PostOffice

JSON

Inbox

861 Postal address

https://w3id.org/class/redaktor/PostalAddress

JSON

Inbox

Definition

The mailing address of an item.

Example

see subproperties

1244 Pre Order

https://w3id.org/class/redaktor/PreOrder

JSON

Inbox

Definition

Indicates that the item is available for pre-order.

Exact Match

1242 Pre Sale

https://w3id.org/class/redaktor/PreSale

JSON

Inbox

Definition

Indicates that the item is available for ordering and delivery before general availability.

Exact Match

973 Preschool

https://w3id.org/class/redaktor/Preschool

JSON

Inbox

Exact Match

364 Press-Digest

https://w3id.org/class/redaktor/PressDigest

JSON

Inbox

Definition

Roundup of news or editorial content from other sources, published in whole or in part without significant journalistic changes

331 Press Release

https://w3id.org/class/redaktor/PressRelease

JSON

Inbox

Definition

Promotional material or information provided to a news organisation

314 Preview

https://w3id.org/class/redaktor/Preview

JSON

Inbox

Definition

Content written ahead of an event, such as a preview of an upcoming summer movie

50 Price Specification

https://w3id.org/class/redaktor/PriceSpecification

JSON

Inbox

Definition

A structured value representing a price or price range. Typically, only the subclasses of this type are used for markup. It is recommended to use [[MonetaryAmount]] to describe independent amounts of money such as a salary, credit card limits, etc.

1086 Primary Care

https://w3id.org/class/redaktor/PrimaryCare

JSON

Inbox

Definition

The medical care by a physician, or other health-care professional, who is the patient's first contact with the health-care system and who may recommend a specialist if necessary.

53 Product

https://w3id.org/class/redaktor/Product

JSON

Inbox

Definition

Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online.

Exact Match

18 Profile

https://w3id.org/class/redaktor/Profile

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-profile

Scope Note

: Object

Example

Example 59

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Profile",
  "summary": "Sally's Profile",
  "describes": {
    "type": "Person",
    "name": "Sally Smith"
  }
}

573 Profile Page

https://w3id.org/class/redaktor/ProfilePage

JSON

Inbox

Definition

Web page type: Profilseite.

39 Program Membership

https://w3id.org/class/redaktor/ProgramMembership

JSON

Inbox

Definition

Used to describe membership in a loyalty programs (e.g. “StarAliance”), traveler clubs (e.g. “AAA”), purchase clubs (“Safeway Club”), etc.

83 Project

https://w3id.org/class/redaktor/Project

JSON

Inbox

Definition

An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim. Use properties from Organization, subOrganization/parentOrganization to indicate project sub-structures.

Exact Match

42 Property-value pair

https://w3id.org/class/redaktor/PropertyValue

JSON

Inbox

Definition

Mastodon supports arbitrary profile fields containing name-value pairs. This is implemented using the attachment property on actor objects, with objects in the array having a type of PropertyValue and a value property, both from the schema.org namespace.
schema.org/PropertyValue

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "PropertyValue": "schema:PropertyValue",
      "value": "schema:value"
    }
  ],
  "id": "https://mastodon.social/users/Gargron",
  "type": "Person",
  "attachment": [
    {
      "type": "PropertyValue",
      "name": "Patreon",
      "value": "<a href="https://www.patreon.com/mastodon" rel="me nofollow noopener noreferrer" target="_blank"><span class="invisible">https://www.</span><span class="">patreon.com/mastodon</span><span class="invisible"></span}"
    },
    {
      "type": "PropertyValue",
      "name": "Homepage",
      "value": "<a href="https://zeonfederated.com" rel="me nofollow noopener noreferrer" target="_blank"><span class="invisible">https://</span><span class="">zeonfederated.com</span><span class="invisible"></span}"
    }
  ]
}

1087 Psychiatric

https://w3id.org/class/redaktor/Psychiatric

JSON

Inbox

1151 Public Bookcase

https://w3id.org/class/redaktor/PublicBookcase

JSON

Inbox

1088,1305 Public Health

https://w3id.org/class/redaktor/PublicHealth

JSON

Inbox

1218 Public Holidays

https://w3id.org/class/redaktor/PublicHolidays

JSON

Inbox

Definition

This stands for any day that is a public holiday; it is a placeholder for all official public holidays in some particular location. While not technically a "day of the week", it can be used with [[OpeningHoursSpecification]]. In the context of an opening hours specification it can be used to indicate opening hours on public holidays, overriding general opening hours for the day of the week on which a public holiday occurs.

1098 Public Swimming Pool

https://w3id.org/class/redaktor/PublicSwimmingPool

JSON

Inbox

913 Public Toilet

https://w3id.org/class/redaktor/PublicToilet

JSON

Inbox

747 Publication Event

https://w3id.org/class/redaktor/PublicationEvent

JSON

Inbox

529 Publication Issue

https://w3id.org/class/redaktor/PublicationIssue

JSON

Inbox

Definition

A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.

See also blog post.

Alt Label

  • Issue

530 Publication Volume

https://w3id.org/class/redaktor/PublicationVolume

JSON

Inbox

Definition

A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.

See also blog post.

Alt Label

  • Volume

1301 Pulmonary

https://w3id.org/class/redaktor/Pulmonary

JSON

Inbox

Definition

A specific branch of medical science that pertains to the study of the respiratory system and its respective disease states.

Exact Match

574 Q&A Page

https://w3id.org/class/redaktor/QAPage

JSON

Inbox

Definition

A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs).

Exact Match

49 Quantitative Value

https://w3id.org/class/redaktor/QuantitativeValue

JSON

Inbox

Definition

A point value or interval for product characteristics and other purposes.

65 Question

https://w3id.org/class/redaktor/Question

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-question

Scope Note

: Activity

Example

Example 40

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Question",
  "name": "What is the answer?",
  "oneOf": [
    {
      "type": "Note",
      "name": "Option A"
    },
    {
      "type": "Note",
      "name": "Option B"
    }
  ]
}

390 Question and Answer Session

https://w3id.org/class/redaktor/QuestionAndAnswer

JSON

Inbox

Definition

An interview portrayed as a sequence of questions and answers

565 Quiz

https://w3id.org/class/redaktor/Quiz

JSON

Inbox

Definition

Quiz: A test of knowledge, skills and abilities.

Exact Match

366 Quote

https://w3id.org/class/redaktor/Quote

JSON

Inbox

Definition

Direct quote from a person

914 RV Park

https://w3id.org/class/redaktor/RVPark

JSON

Inbox

Exact Match

558 Radio Clip

https://w3id.org/class/redaktor/RadioClip

JSON

Inbox

Definition

A short radio program or a segment/part of a radio program.

Exact Match

338 Radio Series

https://w3id.org/class/redaktor/RadioSeries

JSON

Inbox

996 Radio Station

https://w3id.org/class/redaktor/RadioStation

JSON

Inbox

1089 Radiology

https://w3id.org/class/redaktor/Radiology

JSON

Inbox

748 Rally or Protest

https://w3id.org/class/redaktor/RallyOrProtest

JSON

Inbox

960 Ranger Station

https://w3id.org/class/redaktor/RangerStation

JSON

Inbox

63 Rating

https://w3id.org/class/redaktor/Rating

JSON

Inbox

Definition

A rating is an evaluation on a numeric scale, such as 1 to 5 stars.

Exact Match

315 Raw Sound

https://w3id.org/class/redaktor/RawSound

JSON

Inbox

Definition

Content is unedited sound without voice

435 React

https://w3id.org/class/redaktor/React

JSON

Inbox

Definition

The act of responding instinctively and emotionally to an object, expressing a sentiment.

217 Read

https://w3id.org/class/redaktor/Read

JSON

Inbox

Definition

Indicates that the actor has read the object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-read

Scope Note

: Activity

Example

Example 33

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally read a blog post",
  "type": "Read",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": "http://example.org/posts/1"
}

575 Real Estate Listing

https://w3id.org/class/redaktor/RealEstateListing

JSON

Inbox

Definition

A RealEstateListing is a listing that describes one or more real-estate Offers (whose businessFunction is typically to lease out, or to sell).
The RealEstateListing type itself represents the overall listing, as manifested in some WebPage.

1326 Rear Wheel Drive Configuration

https://w3id.org/class/redaktor/RearWheelDriveConfiguration

JSON

Inbox

Definition

Real-wheel drive is a transmission layout where the engine drives the rear wheels.

563 Recipe

https://w3id.org/class/redaktor/Recipe

JSON

Inbox

Definition

A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via suitableForDiet. The keywords property can also be used to add more detail.

Exact Match

1436 :Object

https://w3id.org/class/redaktor/Recommendation

JSON

Inbox

Definition

[[Recommendation]] is a type of [[Review]] that suggests or proposes something as the best option or best course of action. Recommendations may be for products or services, or other concrete things, as in the case of a ranked list or product guide. A [[Guide]] may list multiple recommendations for different categories. For example, in a [[Guide]] about which TVs to buy, the author may have several [[Recommendation]]s.

997 Recycling Center

https://w3id.org/class/redaktor/RecyclingCenter

JSON

Inbox

1190 Reduced Relevance For Children Consideration

https://w3id.org/class/redaktor/ReducedRelevanceForChildrenConsideration

JSON

Inbox

Definition

A general code for cases where relevance to children is reduced, e.g. adult education, mortgages, retirement-related products, etc.

1152 Refugee Site

https://w3id.org/class/redaktor/RefugeeSite

JSON

Inbox

1254 Refurbished Condition

https://w3id.org/class/redaktor/RefurbishedCondition

JSON

Inbox

Definition

Indicates that the item is refurbished.

218 Reject

https://w3id.org/class/redaktor/Reject

JSON

Inbox

Definition

Indicates that the actor is rejecting the object. The target and origin typically have no defined meaning.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-reject

Scope Note

: Activity

Example

Example 25

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally rejected an invitation to a party",
  "type": "Reject",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Invite",
    "actor": "http://john.example.org",
    "object": {
      "type": "Event",
      "name": "Going-Away Party for Jim"
    }
  }
}

19 Relationship

https://w3id.org/class/redaktor/Relationship

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-relationship

Scope Note

: Object

Example

Example 47

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally is an acquaintance of John",
  "type": "Relationship",
  "subject": {
    "type": "Person",
    "name": "Sally"
  },
  "relationship": "http://purl.org/vocab/relationship/acquaintanceOf",
  "object": {
    "type": "Person",
    "name": "John"
  }
}

219 Remove

https://w3id.org/class/redaktor/Remove

JSON

Inbox

Definition

Indicates that the actor is removing the object. If specified, the origin indicates the context from which the object is being removed.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-remove

Scope Note

: Activity

Example

Example 27

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally removed a note from her notes folder",
  "type": "Remove",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": "http://example.org/notes/1",
  "target": {
    "type": "Collection",
    "name": "Notes Folder"
  }
}

1275 Renal

https://w3id.org/class/redaktor/Renal

JSON

Inbox

Definition

A specific branch of medical science that pertains to the study of the kidneys and its respective disease states.

Exact Match

1209 Rental Vehicle Usage

https://w3id.org/class/redaktor/RentalVehicleUsage

JSON

Inbox

Definition

Indicates the usage of the vehicle as a rental car.

367 Special Report

https://w3id.org/class/redaktor/Report

JSON

Inbox

Definition

In-depth examination of a single subject requiring extensive research, presented either as a single item or as a series of items

97 Research Organization

https://w3id.org/class/redaktor/ResearchOrganization

JSON

Inbox

Definition

A Research Organization (e.g. scientific institute, research company).

1717 Research Project

https://w3id.org/class/redaktor/ResearchProject

JSON

Inbox

Definition

A Research project.

185 Reservation

https://w3id.org/class/redaktor/Reservation

JSON

Inbox

Definition

Describes a reservation for travel, dining or an event. Some reservations require tickets.

Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]].

941 Reservoir

https://w3id.org/class/redaktor/Reservoir

JSON

Inbox

Exact Match

876 Residence

https://w3id.org/class/redaktor/Residence

JSON

Inbox

Definition

The place where a person lives.

Exact Match

1057 Resort

https://w3id.org/class/redaktor/Resort

JSON

Inbox

Exact Match

1292 Respiratory Therapy

https://w3id.org/class/redaktor/RespiratoryTherapy

JSON

Inbox

Definition

The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease).

316 Response to a Question

https://w3id.org/class/redaktor/ResponseToAQuestion

JSON

Inbox

Definition

An audio recording of an individual's response to a question

1031 Restaurant

https://w3id.org/class/redaktor/Restaurant

JSON

Inbox

1370 Restricted Diet

https://w3id.org/class/redaktor/RestrictedDiet

JSON

Inbox

Definition

A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons.

368 Results Listings and Statistics

https://w3id.org/class/redaktor/ResultsListingsAndStatistics

JSON

Inbox

Definition

Alphanumeric data suitable for presentation in tabular form

369 Retrospective

https://w3id.org/class/redaktor/Retrospective

JSON

Inbox

Definition

Material that looks back on a specific period of time, such as a season, quarter, year or decade

370 Review

https://w3id.org/class/redaktor/Review

JSON

Inbox

Definition

A critique of a creative activity or service (for example a book, a film or a restaurant)

436 Review

https://w3id.org/class/redaktor/ReviewAction

JSON

Inbox

Definition

The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.

1296 Rheumatologic

https://w3id.org/class/redaktor/Rheumatologic

JSON

Inbox

Definition

A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.

1189 Right Hand Driving

https://w3id.org/class/redaktor/RightHandDriving

JSON

Inbox

Definition

The steering position is on the right side of the vehicle (viewed from the main direction of driving).

942 River

https://w3id.org/class/redaktor/RiverBodyOfWater

JSON

Inbox

1049 Roofing Contractor

https://w3id.org/class/redaktor/RoofingContractor

JSON

Inbox

885 Room

https://w3id.org/class/redaktor/Room

JSON

Inbox

Exact Match

450 Rsvp

https://w3id.org/class/redaktor/Rsvp

JSON

Inbox

Definition

The act of public notifying as to whether you expect to attend the event.

750 Shopping or Sale Event

https://w3id.org/class/redaktor/SaleEvent

JSON

Inbox

Exact Match

404 Satire

https://w3id.org/class/redaktor/Satire

JSON

Inbox

Definition

Uses exaggeration, irony, or humour to make a point; not intended to be understood as factual

1213 Saturday

https://w3id.org/class/redaktor/Saturday

JSON

Inbox

Definition

The day of the week between Friday and Sunday.

Exact Match

1154 Sauna

https://w3id.org/class/redaktor/Sauna

JSON

Inbox

371 Scholarly

https://w3id.org/class/redaktor/ScholarlyArticle

JSON

Inbox

Definition

A scholarly article

974 School

https://w3id.org/class/redaktor/School

JSON

Inbox

Exact Match

888 School district

https://w3id.org/class/redaktor/SchoolDistrict

JSON

Inbox

749 Science & Tech

https://w3id.org/class/redaktor/ScienceTech

JSON

Inbox

751 Screening Event

https://w3id.org/class/redaktor/ScreeningEvent

JSON

Inbox

531 Sculpture

https://w3id.org/class/redaktor/Sculpture

JSON

Inbox

Definition

A piece of sculpture.

Exact Match

943 Sea

https://w3id.org/class/redaktor/SeaBodyOfWater

JSON

Inbox

451 Search

https://w3id.org/class/redaktor/Search

JSON

Inbox

Definition

The act of searching for an object.

98 Search Rescue Organization

https://w3id.org/class/redaktor/SearchRescueOrganization

JSON

Inbox

Definition

A Search and Rescue organization of some kind.

578 Search Results Page

https://w3id.org/class/redaktor/SearchResultsPage

JSON

Inbox

Definition

Web page type: Search results page.

58 Seat

https://w3id.org/class/redaktor/Seat

JSON

Inbox

Definition

Used to describe a seat, such as a reserved seat in an event reservation.

Exact Match

1249 Seating Map

https://w3id.org/class/redaktor/SeatingMap

JSON

Inbox

Definition

A seating map.

1170 Second Hand

https://w3id.org/class/redaktor/SecondHand

JSON

Inbox

428 Seek To

https://w3id.org/class/redaktor/SeekTo

JSON

Inbox

Definition

This is the Action of navigating to a specific startOffset timestamp within a VideoObject, typically represented with a URL template structure.

998 Self Storage

https://w3id.org/class/redaktor/SelfStorage

JSON

Inbox

82 Service

https://w3id.org/class/redaktor/Service

JSON

Inbox

Definition

Represents a service of any kind.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-service

Scope Note

: Actor

Example

Example 46

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Service",
  "name": "Acme Web Service"
}

64 Service Channel

https://w3id.org/class/redaktor/ServiceChannel

JSON

Inbox

Definition

A means for accessing a service, e.g. a government office location, web site, or phone number.

1191 Sexual Content Consideration

https://w3id.org/class/redaktor/SexualContentConsideration

JSON

Inbox

Definition

The item contains sexually oriented content such as nudity, suggestive or explicit material, or related online services, or is intended to enhance sexual activity. Examples: Erotic videos or magazine, sexual enhancement devices, sex toys.

1153 Shelter

https://w3id.org/class/redaktor/Shelter

JSON

Inbox

967 Shinto Shrine

https://w3id.org/class/redaktor/ShintoShrine

JSON

Inbox

1127 Shoe Store

https://w3id.org/class/redaktor/ShoeStore

JSON

Inbox

Exact Match

999 Shopping Center

https://w3id.org/class/redaktor/ShoppingCenter

JSON

Inbox

1155 Shower

https://w3id.org/class/redaktor/Shower

JSON

Inbox

372 Side bar and Supporting Information

https://w3id.org/class/redaktor/SideBarAndSupportingInformation

JSON

Inbox

Definition

Related content that provides additional context or insight into a news event

1161 Sign Language School

https://w3id.org/class/redaktor/SignLanguageSchool

JSON

Inbox

966 Sikh Temple

https://w3id.org/class/redaktor/SikhTemple

JSON

Inbox

1225 Single Player

https://w3id.org/class/redaktor/SinglePlayer

JSON

Inbox

Definition

Play mode: SinglePlayer. Which is played by a lone player.

579 Site Navigation Element

https://w3id.org/class/redaktor/SiteNavigationElement

JSON

Inbox

Definition

A navigation element of the page.

1058 Ski Resort

https://w3id.org/class/redaktor/SkiResort

JSON

Inbox

Exact Match

752 Social or Solidarity Event

https://w3id.org/class/redaktor/SocialEvent

JSON

Inbox

1156 Social Facility

https://w3id.org/class/redaktor/SocialFacility

JSON

Inbox

317 Social Media Posting

https://w3id.org/class/redaktor/SocialMediaPosting

JSON

Inbox

Definition

A post to a social media platform, including toots, tweets, posts, etc.

532 Software Application

https://w3id.org/class/redaktor/SoftwareApplication

JSON

Inbox

Definition

A Software Application of all kinds.

533 Software Source Code

https://w3id.org/class/redaktor/SoftwareSourceCode

JSON

Inbox

Definition

Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.

1241 Sold Out

https://w3id.org/class/redaktor/SoldOut

JSON

Inbox

Definition

Indicates that the item has sold out.

Exact Match

452 Solve Math

https://w3id.org/class/redaktor/SolveMath

JSON

Inbox

Definition

The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression.

949 Spaceport

https://w3id.org/class/redaktor/Spaceport

JSON

Inbox

46 Speakable Specification

https://w3id.org/class/redaktor/SpeakableSpecification

JSON

Inbox

Definition

A SpeakableSpecification indicates (typically via [[xpath]] or [[cssSelector]]) sections of a document that are highlighted as particularly [[speakable]]. Instances of this type are expected to be used primarily as values of the [[speakable]] property.

534 Special Announcement

https://w3id.org/class/redaktor/SpecialAnnouncement

JSON

Inbox

Definition

A SpecialAnnouncement combines a simple date-stamped textual information update with contextualized Web links and other structured data. It represents an information update made by a locally-oriented organization, for example schools, pharmacies, healthcare providers, community groups, local government.
SEE schema.org

1285 Speech Pathology

https://w3id.org/class/redaktor/SpeechPathology

JSON

Inbox

Definition

The scientific study and treatment of defects, disorders, and malfunctions of speech and voice, as stuttering, lisping, or lalling, and of language disturbances, as aphasia or delayed language acquisition.

754 Spirituality / Religion / Beliefs

https://w3id.org/class/redaktor/SpiritualityBeliefs

JSON

Inbox

332 Sponsored

https://w3id.org/class/redaktor/Sponsored

JSON

Inbox

Definition

Content is produced on behalf of an organisation or individual that has paid the news provider for production and may approve content publication

344 Sport

https://w3id.org/class/redaktor/Sport

JSON

Inbox

Definition

The object contains material relating to a sport program and/or event

Note

Example: A news item or program covering a sports event or related news, such as an interview with a sports personality or Olympics results.

1128 Sporting Goods Store

https://w3id.org/class/redaktor/SportingGoodsStore

JSON

Inbox

1000 Sports Activity Location

https://w3id.org/class/redaktor/SportsActivityLocation

JSON

Inbox

1100 Sports Club

https://w3id.org/class/redaktor/SportsClub

JSON

Inbox

753 Sports & Fitness

https://w3id.org/class/redaktor/SportsEvent

JSON

Inbox

99 Sports Organization

https://w3id.org/class/redaktor/SportsOrganization

JSON

Inbox

Definition

Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.

1723 Sports Team

https://w3id.org/class/redaktor/SportsTeam

JSON

Inbox

Definition

Organization: Sports team.

915 Stadium or Arena

https://w3id.org/class/redaktor/StadiumOrArena

JSON

Inbox

889 State

https://w3id.org/class/redaktor/State

JSON

Inbox

Exact Match

1350 Steering Position Value

https://w3id.org/class/redaktor/SteeringPositionValue

JSON

Inbox

Definition

A value indicating a steering position.

1001 Store

https://w3id.org/class/redaktor/Store

JSON

Inbox

Exact Match

75 Storyboard

https://w3id.org/class/redaktor/Storyboard

JSON

Inbox

Definition

A storyboard or scene book is a mostly drawn version of a script or a visualisation of a concept or idea.
A special Collection to group images, textual descriptions or episodes of type Storyline.

Note

This is meta info for the creation of a story. Do not confuse with a Story.

318 Storyline

https://w3id.org/class/redaktor/Storyline

JSON

Inbox

Definition

A News Storyline is a generic model for describing and organising the stories news organisations tell mostly used in the editorial workflow.
The class can also be used to describe textual descriptions or episodes in a Storyboard Collection.
To consume it as an rnews Storyline, convert :name or :nameMap to rnews:name equivalents and :summary or :summaryMap to rnews:description equivalents.

Note

This is meta info for the creation of a story. Do not confuse with Creative Work Terms.

Alt Label

  • Plot

1157 Studio or Atelier

https://w3id.org/class/redaktor/Studio

JSON

Inbox

916 Subway Station

https://w3id.org/class/redaktor/SubwayStation

JSON

Inbox

Alt Label

  • Tube

883 Suite

https://w3id.org/class/redaktor/Suite

JSON

Inbox

Exact Match

351 Briefing

https://w3id.org/class/redaktor/Summary

JSON

Inbox

Definition

A summary of a number of news items

1219 Sunday

https://w3id.org/class/redaktor/Sunday

JSON

Inbox

Definition

The day of the week between Saturday and Monday.

Exact Match

333 Supported

https://w3id.org/class/redaktor/Supported

JSON

Inbox

Definition

Content is produced with financial support from an organisation or individual, yet not approved by the underwriter before or after publication

1314 Surgical

https://w3id.org/class/redaktor/Surgical

JSON

Inbox

Definition

A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.

Exact Match

935 Synagogue

https://w3id.org/class/redaktor/Synagogue

JSON

Inbox

Exact Match

383 Synopsis

https://w3id.org/class/redaktor/Synopsis

JSON

Inbox

Definition

A condensed version of a single news item

559 TV Clip

https://w3id.org/class/redaktor/TVClip

JSON

Inbox

Definition

A short TV program or a segment/part of a TV program.

Exact Match

340 TV Episode

https://w3id.org/class/redaktor/TVEpisode

JSON

Inbox

Exact Match

187 T V Season

https://w3id.org/class/redaktor/TVSeason

JSON

Inbox

Definition

Season dedicated to TV broadcast and associated online delivery.

Exact Match

339 TV Series

https://w3id.org/class/redaktor/TVSeries

JSON

Inbox

Exact Match

580 Table

https://w3id.org/class/redaktor/Table

JSON

Inbox

Definition

A table on a Web page.

Exact Match

1041 Tattoo Parlor

https://w3id.org/class/redaktor/TattooParlor

JSON

Inbox

917 Taxi stand

https://w3id.org/class/redaktor/TaxiStand

JSON

Inbox

Exact Match

1207 Taxi Vehicle Usage

https://w3id.org/class/redaktor/TaxiVehicleUsage

JSON

Inbox

Definition

Indicates the usage of the car as a taxi.

373 Tech Article

https://w3id.org/class/redaktor/TechArticle

JSON

Inbox

Definition

A technical article

1002 Television Station

https://w3id.org/class/redaktor/TelevisionStation

JSON

Inbox

1101 Tennis Complex

https://w3id.org/class/redaktor/TennisComplex

JSON

Inbox

220 Tentative Accept

https://w3id.org/class/redaktor/TentativeAccept

JSON

Inbox

Definition

A specialization of Accept indicating that the acceptance is tentative.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tentativeaccept

Scope Note

: Activity

Example

Example 11

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally tentatively accepted an invitation to a party",
  "type": "TentativeAccept",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Invite",
    "actor": "http://john.example.org",
    "object": {
      "type": "Event",
      "name": "Going-Away Party for Jim"
    }
  }
}

221 Tentative Reject

https://w3id.org/class/redaktor/TentativeReject

JSON

Inbox

Definition

A specialization of Reject in which the rejection is considered tentative.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tentativereject

Scope Note

: Activity

Example

Example 26

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally tentatively rejected an invitation to a party",
  "type": "TentativeReject",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Invite",
    "actor": "http://john.example.org",
    "object": {
      "type": "Event",
      "name": "Going-Away Party for Jim"
    }
  }
}

304 Text only

https://w3id.org/class/redaktor/TextOnly

JSON

Inbox

Definition

The object contains a transcription of text.

756 Theater

https://w3id.org/class/redaktor/TheaterEvent

JSON

Inbox

1722 Theater Group

https://w3id.org/class/redaktor/TheaterGroup

JSON

Inbox

Definition

A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.

535 Thesis

https://w3id.org/class/redaktor/Thesis

JSON

Inbox

Definition

A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification.

Exact Match

1212 Thursday

https://w3id.org/class/redaktor/Thursday

JSON

Inbox

Definition

The day of the week between Wednesday and Friday.

Exact Match

41 Ticket

https://w3id.org/class/redaktor/Ticket

JSON

Inbox

Definition

Used to describe a ticket to an event, a flight, a bus ride, etc.

Exact Match

432 Tie

https://w3id.org/class/redaktor/Tie

JSON

Inbox

Definition

The act of reaching a draw in a competitive activity.

Exact Match

1129 Tire Shop

https://w3id.org/class/redaktor/TireShop

JSON

Inbox

Exact Match

1196 Tobacco Nicotine Consideration

https://w3id.org/class/redaktor/TobaccoNicotineConsideration

JSON

Inbox

Definition

Item contains tobacco and/or nicotine, for example cigars, cigarettes, chewing tobacco, e-cigarettes, or hookahs.

1211 Toll Free

https://w3id.org/class/redaktor/TollFree

JSON

Inbox

Definition

The associated telephone number is toll free.

Exact Match

21 Tombstone

https://w3id.org/class/redaktor/Tombstone

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone

Scope Note

: Object

Example

Example 60

{
  "type": "OrderedCollection",
  "totalItems": 3,
  "name": "Vacation photos 2016",
  "orderedItems": [
    {
      "type": "Image",
      "id": "http://image.example/1"
    },
    {
      "type": "Tombstone",
      "formerType": "Image",
      "id": "http://image.example/2",
      "deleted": "2016-03-17T00:00:00Z"
    },
    {
      "type": "Image",
      "id": "http://image.example/3"
    }
  ]
}

878 Tourist Attraction

https://w3id.org/class/redaktor/TouristAttraction

JSON

Inbox

Definition

A tourist attraction. In principle any Thing can be a TouristAttraction, from a Mountain and LandmarksOrHistoricalBuildings to a LocalBusiness. This Type can be used on its own to describe a general TouristAttraction, or be used as an additionalType to add tourist attraction properties to any other type.

880 Tourist Destination

https://w3id.org/class/redaktor/TouristDestination

JSON

Inbox

Definition

A tourist destination. In principle any Place can be a TouristDestination from a City, Region or Country to an AmusementPark or Hotel. This Type can be used on its own to describe a general TouristDestination, or be used as an additionalType to add tourist relevant properties to any other Place. A TouristDestination is defined as a Place that contains, or is colocated with, one or more TouristAttractions, often linked by a similar theme or interest to a particular touristType. The UNWTO defines Destination (main destination of a tourism trip) as the place visited that is central to the decision to take the trip.

1003 Tourist Information Center

https://w3id.org/class/redaktor/TouristInformationCenter

JSON

Inbox

554 Tourist Trip

https://w3id.org/class/redaktor/TouristTrip

JSON

Inbox

Definition

A tourist trip. A created itinerary of visits to one or more places of interest (TouristAttraction/TouristDestination) often linked by a similar theme, geographic area, or interest to a particular touristType. The UNWTO defines tourism trip as the Trip taken by visitors.
(See examples below).

1309 Toxicologic

https://w3id.org/class/redaktor/Toxicologic

JSON

Inbox

Definition

A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning.

1130 Toy Store

https://w3id.org/class/redaktor/ToyStore

JSON

Inbox

Exact Match

430 Trade

https://w3id.org/class/redaktor/Trade

JSON

Inbox

Definition

The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment.

918 Train station

https://w3id.org/class/redaktor/TrainStation

JSON

Inbox

555 Train Trip

https://w3id.org/class/redaktor/TrainTrip

JSON

Inbox

Definition

A trip on a commercial train line.

Exact Match

319 Transcript or Verbatim

https://w3id.org/class/redaktor/TranscriptAndVerbatim

JSON

Inbox

Definition

A word-for-word account of a discussion or briefing

453 Transfer

https://w3id.org/class/redaktor/Transfer

JSON

Inbox

Definition

The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.

1252 Transit Map

https://w3id.org/class/redaktor/TransitMap

JSON

Inbox

Definition

A transit map.

66 Travel

https://w3id.org/class/redaktor/Travel

JSON

Inbox

Definition

Indicates that the actor is traveling to target from origin. Travel is an IntransitiveObject whose actor specifies the direct object. If the target or origin are not specified, either can be determined by context.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-travel

Scope Note

: Activity

Example

Example 35

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally went home from work",
  "type": "Travel",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "target": {
    "type": "Place",
    "name": "Home"
  },
  "origin": {
    "type": "Place",
    "name": "Work"
  }
}

1004 Travel Agency

https://w3id.org/class/redaktor/TravelAgency

JSON

Inbox

320 Travel

https://w3id.org/class/redaktor/TravelStory

JSON

Inbox

Definition

The object contains material relating to a travel program and/or event

Note

Example: A news item or program covering a travel item or event, such as delays due to a strike action or a program reviewing holiday destinations.

74 Trip

https://w3id.org/class/redaktor/Trip

JSON

Inbox

Definition

A trip or journey. An itinerary of visits to one or more places.

Alt Label

  • Tour or trip

Exact Match

733 Facts-based trip or tour

https://w3id.org/class/redaktor/TripFacts

JSON

Inbox

755 Faith-based trip or tour

https://w3id.org/class/redaktor/TripFaith

JSON

Inbox

1091 Tropical

https://w3id.org/class/redaktor/Tropical

JSON

Inbox

1214 Tuesday

https://w3id.org/class/redaktor/Tuesday

JSON

Inbox

Definition

The day of the week between Monday and Wednesday.

Exact Match

60 Type And Quantity Node

https://w3id.org/class/redaktor/TypeAndQuantityNode

JSON

Inbox

Definition

A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.

1192 Unclassified Adult Consideration

https://w3id.org/class/redaktor/UnclassifiedAdultConsideration

JSON

Inbox

Definition

The item is suitable only for adults, without indicating why. Due to widespread use of "adult" as a euphemism for "sexual", many such items are likely suited also for the SexualContentConsideration code.

222 Undo

https://w3id.org/class/redaktor/Undo

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-undo

Scope Note

: Activity

Example

Example 29

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally retracted her offer to John",
  "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"
  }
}

1231 Unemployment Support

https://w3id.org/class/redaktor/UnemploymentSupport

JSON

Inbox

Definition

UnemploymentSupport: this is a benefit for unemployment support.

223 Update

https://w3id.org/class/redaktor/Update

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-update

Scope Note

: Activity

Example

Example 30

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally updated her note",
  "type": "Update",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": "http://example.org/notes/1"
}

1311 Urologic

https://w3id.org/class/redaktor/Urologic

JSON

Inbox

Definition

A specific branch of medical science that is concerned with the diagnosis and treatment of diseases pertaining to the urinary tract and the urogenital system.

Exact Match

441 Use

https://w3id.org/class/redaktor/Use

JSON

Inbox

Definition

The act of applying an object to its intended purpose.

Exact Match

1255 Used Condition

https://w3id.org/class/redaktor/UsedCondition

JSON

Inbox

Definition

Indicates that the item is used.

1257 Vegan Diet

https://w3id.org/class/redaktor/VeganDiet

JSON

Inbox

Definition

A diet exclusive of all animal products.

Exact Match

1262 Vegetarian Diet

https://w3id.org/class/redaktor/VegetarianDiet

JSON

Inbox

Definition

A diet exclusive of animal meat.

1415 Vehicle

https://w3id.org/class/redaktor/Vehicle

JSON

Inbox

Definition

A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.

Exact Match

962 Vehicle Inspection

https://w3id.org/class/redaktor/VehicleInspection

JSON

Inbox

1250 Venue Map

https://w3id.org/class/redaktor/VenueMap

JSON

Inbox

Definition

A venue map (e.g. for malls, auditoriums, museums, etc.).

Exact Match

1090 Veterinary Care

https://w3id.org/class/redaktor/VeterinaryCare

JSON

Inbox

20 Video

https://w3id.org/class/redaktor/Video

JSON

Inbox

Definition

Represents a video document of any kind.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-video

Scope Note

: Object

Example

Example 52

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Video",
  "name": "Puppy Plays With Ball",
  "url": "http://example.org/video.mkv",
  "duration": "PT2H"
}

73 Video Gallery

https://w3id.org/class/redaktor/VideoGallery

JSON

Inbox

Definition

Web page type: Video gallery page. See also :Playlist

562 Video Game

https://w3id.org/class/redaktor/VideoGame

JSON

Inbox

Definition

A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.

Exact Match

560 Video Game Clip

https://w3id.org/class/redaktor/VideoGameClip

JSON

Inbox

Definition

A short segment/part of a video game.

335 Video Game Series

https://w3id.org/class/redaktor/VideoGameSeries

JSON

Inbox

224 View

https://w3id.org/class/redaktor/View

JSON

Inbox

Definition

Indicates that the actor has viewed the object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-view

Scope Note

: Activity

Example

Example 31

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally read an article",
  "type": "View",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Article",
    "name": "What You Should Know About Activity Streams"
  }
}

1199 Violence Consideration

https://w3id.org/class/redaktor/ViolenceConsideration

JSON

Inbox

Definition

Item shows or promotes violence.

703 Art Event, Performing & Visual

https://w3id.org/class/redaktor/VisualArtsEvent

JSON

Inbox

1162 Visually Impaired School

https://w3id.org/class/redaktor/VisuallyImpairedSchool

JSON

Inbox

321 Voicer

https://w3id.org/class/redaktor/Voicer

JSON

Inbox

Definition

Content is only voice

923 Volcano

https://w3id.org/class/redaktor/Volcano

JSON

Inbox

Exact Match

757 Volunteering days

https://w3id.org/class/redaktor/VolunteeringDays

JSON

Inbox

581 WP Ad Block

https://w3id.org/class/redaktor/WPAdBlock

JSON

Inbox

Definition

An advertising section of the page.

Exact Match

582 WP Footer

https://w3id.org/class/redaktor/WPFooter

JSON

Inbox

Definition

The footer section of the page.

Exact Match

583 WP Header

https://w3id.org/class/redaktor/WPHeader

JSON

Inbox

Definition

The header section of the page.

Exact Match

584 WP Side Bar

https://w3id.org/class/redaktor/WPSideBar

JSON

Inbox

Definition

A sidebar section of the page.

Exact Match

57 Warranty Promise

https://w3id.org/class/redaktor/WarrantyPromise

JSON

Inbox

Definition

A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.

1368 Warranty Scope

https://w3id.org/class/redaktor/WarrantyScope

JSON

Inbox

Definition

A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.

Commonly used values:

442 Watch

https://w3id.org/class/redaktor/Watch

JSON

Inbox

Definition

The act of consuming dynamic/moving visual content.

944 Waterfall

https://w3id.org/class/redaktor/Waterfall

JSON

Inbox

Exact Match

1195 Weapon Consideration

https://w3id.org/class/redaktor/WeaponConsideration

JSON

Inbox

Definition

The item is intended to induce bodily harm, for example guns, mace, combat knives, brass knuckles, nail or other bombs, and spears.

322 Weather

https://w3id.org/class/redaktor/Weather

JSON

Inbox

Definition

The object contains material relating to a weather program and/or event

Note

Example: A news item or program covering the weather, such as an exceptionally hot or wet summer or a program about a storm.

1387 Web Content

https://w3id.org/class/redaktor/WebContent

JSON

Inbox

Definition

WebContent is a type representing all [[WebPage]], [[WebSite]] and [[WebPageElement]] content. It is sometimes the case that detailed distinctions between Web pages, sites and their parts is not always important or obvious. The [[WebContent]] type makes it easier to describe Web-addressable content without requiring such distinctions to always be stated. (The intent is that the existing types [[WebPage]], [[WebSite]] and [[WebPageElement]] will eventually be declared as subtypes of [[WebContent]]).

536 Web Page Element

https://w3id.org/class/redaktor/WebPageElement

JSON

Inbox

Definition

A web page element, like a table or an image.

537 Web Site

https://w3id.org/class/redaktor/WebSite

JSON

Inbox

Definition

A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.

Exact Match

758 Webinar

https://w3id.org/class/redaktor/Webinar

JSON

Inbox

1217 Wednesday

https://w3id.org/class/redaktor/Wednesday

JSON

Inbox

Definition

The day of the week between Tuesday and Thursday.

Exact Match

1131 Wholesale Store

https://w3id.org/class/redaktor/WholesaleStore

JSON

Inbox

1158 Wildlife or Bird Hide

https://w3id.org/class/redaktor/WildlifeHide

JSON

Inbox

433 Win

https://w3id.org/class/redaktor/Win

JSON

Inbox

Definition

The act of achieving victory in a competitive activity.

Exact Match

1032 Winery

https://w3id.org/class/redaktor/Winery

JSON

Inbox

Exact Match

100 Workers Union

https://w3id.org/class/redaktor/WorkersUnion

JSON

Inbox

Definition

A Workers Union (also known as a Labor Union, Labour Union, or Trade Union) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying.

759 Workshop

https://w3id.org/class/redaktor/Workshop

JSON

Inbox

1390 XPath Type

https://w3id.org/class/redaktor/XPathType

JSON

Inbox

Definition

Text representing an XPath (typically but not necessarily version 1.0).

Exact Match

1201 Zone Boarding Policy

https://w3id.org/class/redaktor/ZoneBoardingPolicy

JSON

Inbox

Definition

The airline boards by zones of the plane.

919 Zoo

https://w3id.org/class/redaktor/Zoo

JSON

Inbox

Exact Match

1737 about

https://w3id.org/class/redaktor/about

JSON

Inbox

Definition

The subject matter of the content.

Exact Match

1738 abridged

https://w3id.org/class/redaktor/abridged

JSON

Inbox

Definition

Indicates whether the book is an abridged edition.

Exact Match

1739 abstract

https://w3id.org/class/redaktor/abstract

JSON

Inbox

Definition

An abstract is a short description that summarizes a [[CreativeWork]].

Exact Match

2408 acceleration time

https://w3id.org/class/redaktor/accelerationTime

JSON

Inbox

Definition

The time needed to accelerate the vehicle from a given start velocity to a given target velocity.

Typical unit code(s): SEC for seconds

  • Note: There are unfortunately no standard unit codes for seconds/0..100 km/h or seconds/0..60 mph. Simply use "SEC" for seconds and indicate the velocities in the [[name]] of the [[QuantitativeValue]], or use [[valueReference]] with a [[QuantitativeValue]] of 0..60 mph or 0..100 km/h to specify the reference speeds.

1740 accepted payment method

https://w3id.org/class/redaktor/acceptedPaymentMethod

JSON

Inbox

Definition

The payment method(s) accepted by seller for this offer.

1741 accepts reservations

https://w3id.org/class/redaktor/acceptsReservations

JSON

Inbox

Definition

Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings Yes or No.

1742 access code

https://w3id.org/class/redaktor/accessCode

JSON

Inbox

Definition

Password, PIN, or access code needed for delivery (e.g. from a locker).

1743 access mode

https://w3id.org/class/redaktor/accessMode

JSON

Inbox

Definition

The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Values should be drawn from the approved vocabulary.

1744 access mode sufficient

https://w3id.org/class/redaktor/accessModeSufficient

JSON

Inbox

Definition

A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Values should be drawn from the approved vocabulary.

1745 accessibility API

https://w3id.org/class/redaktor/accessibilityAPI

JSON

Inbox

Definition

Indicates that the resource is compatible with the referenced accessibility API. Values should be drawn from the approved vocabulary.

1746 accessibility control

https://w3id.org/class/redaktor/accessibilityControl

JSON

Inbox

Definition

Identifies input methods that are sufficient to fully control the described resource. Values should be drawn from the approved vocabulary.

1747 accessibility feature

https://w3id.org/class/redaktor/accessibilityFeature

JSON

Inbox

Definition

Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility. Values should be drawn from the approved vocabulary.

1748 accessibility hazard

https://w3id.org/class/redaktor/accessibilityHazard

JSON

Inbox

Definition

A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3. Values should be drawn from the approved vocabulary.

1749 accessibility summary

https://w3id.org/class/redaktor/accessibilitySummary

JSON

Inbox

Definition

A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as “short descriptions are present but long descriptions will be needed for non-visual users” or “short descriptions are present and no long descriptions are needed.”

1750 accommodation category

https://w3id.org/class/redaktor/accommodationCategory

JSON

Inbox

Definition

Category of an [[Accommodation]], following real estate conventions e.g. RESO (see PropertySubType, and PropertyType fields for suggested values).

1751 accommodation floor plan

https://w3id.org/class/redaktor/accommodationFloorPlan

JSON

Inbox

Definition

A floorplan of some [[Accommodation]].

1752 accountable person

https://w3id.org/class/redaktor/accountablePerson

JSON

Inbox

Definition

Specifies the Person that is legally accountable for the CreativeWork.

3191 accuracy

https://w3id.org/class/redaktor/accuracy

JSON

Inbox

Definition

Indicates the accuracy of position coordinates on a Place objects. Expressed in properties of percentage. e.g. "94.0" means "94.0% accurate".
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-accuracy

Scope Note

: Property

Example

Example 112

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "name": "Liu Gu Lu Cun, Pingdu, Qingdao, Shandong, China",
  "type": "Place",
  "latitude": 36.75,
  "longitude": 119.7667,
  "accuracy": 94.5
}

1753 acquire license page

https://w3id.org/class/redaktor/acquireLicensePage

JSON

Inbox

Definition

URL for free/libre open source use policy or guideline of an entity

2512 acquired From

https://w3id.org/class/redaktor/acquiredFrom

JSON

Inbox

Definition

The organization or person from which the product was acquired.

1754 actionable feedback policy

https://w3id.org/class/redaktor/actionableFeedbackPolicy

JSON

Inbox

Definition

For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.

250 actor

https://w3id.org/class/redaktor/actor

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-actor

Scope Note

: Property

Example

Example 63

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally offered the Foo object",
  "type": "Offer",
  "actor": "http://sally.example.org",
  "object": "http://example.org/foo"
}

1755 actor

https://w3id.org/class/redaktor/actorPerforming

JSON

Inbox

Definition

Darsteller einer Haupt- oder Nebenrolle vor der Kamera oder vor Publikum (für reine Sprechrollen verwende „Sprecher“ (P725)). An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.

1757 add on

https://w3id.org/class/redaktor/addOn

JSON

Inbox

Definition

An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).

Exact Match

1758 additional name

https://w3id.org/class/redaktor/additionalName

JSON

Inbox

Definition

An additional name for a Person, can be used for a middle name.

2316 additional property

https://w3id.org/class/redaktor/additionalProperty

JSON

Inbox

Definition

A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.

Note: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.

1562 address

https://w3id.org/class/redaktor/address

JSON

Inbox

Definition

Physical address of the item. E.g. used by mobilizon.

Example

see properties

Exact Match

1563 country

https://w3id.org/class/redaktor/addressCountry

JSON

Inbox

Definition

The country. You can also provide the two-letter ISO 3166-1 alpha-2 country code.

Example

France

1564 locality

https://w3id.org/class/redaktor/addressLocality

JSON

Inbox

Definition

The city or place. The locality in which the street address is, and which is in the region.

Example

Perpignan

1565 region

https://w3id.org/class/redaktor/addressRegion

JSON

Inbox

Definition

The region in which the locality is, and which is in the country.

Example

Occitània, Catalunya

1761 advance booking requirement

https://w3id.org/class/redaktor/advanceBookingRequirement

JSON

Inbox

Definition

The amount of time that is required between accepting the offer and the actual usage of the resource or service.

1762 affiliation

https://w3id.org/class/redaktor/affiliation

JSON

Inbox

Definition

An organization that this person is affiliated with. For example, a school/university, a club, or a team.

1589 aggregate rating

https://w3id.org/class/redaktor/aggregateRating

JSON

Inbox

Definition

The overall rating, based on a collection of reviews or ratings, of the item.

1764 aircraft

https://w3id.org/class/redaktor/aircraft

JSON

Inbox

Definition

The kind of aircraft (e.g., “Boeing 747”).

Exact Match

1765 album

https://w3id.org/class/redaktor/album

JSON

Inbox

Definition

A music album.

Exact Match

1766 albums

https://w3id.org/class/redaktor/albums

JSON

Inbox

Definition

A collection of music albums.

Exact Match

1767 alignment type

https://w3id.org/class/redaktor/alignmentType

JSON

Inbox

Definition

A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.

10521 allow_all

https://w3id.org/class/redaktor/allow_all

JSON

Inbox

156 also known as

https://w3id.org/class/redaktor/alsoKnownAs

JSON

Inbox

Definition

The alsoKnownAs relationship indicates that two Actor objects are shared by the same underlying user. However, care should be taken when consuming a document to make sure that the relationship is authorized by all actors involved. For example, if https://example.org/cat has "alsoKnownAs": "https://example.org/dog", then processing systems should also make sure that https://example.org/dog has "alsoKnownAs": "https://example.org/cat" before treating the relationship as valid. If the relationship is reciprocated, then the two actors may be treated as the same person for certain security-sensitive operations.
see socialhub or documentation

Scope Note

: Extension

Example

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Person",
  "id": "https://example.org/cat",
  "name": "Catrina on dot-org"
  "alsoKnownAs": "https://example.com/cat",
}

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Person",
  "id": "https://example.com/cat",
  "name": "Catrina on dot-com"
  "alsoKnownAs": "https://example.org/cat",
}

1768 alternative headline

https://w3id.org/class/redaktor/alternativeHeadline

JSON

Inbox

Definition

A secondary title of the CreativeWork.

3192 altitude

https://w3id.org/class/redaktor/altitude

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-altitude

Scope Note

: Property

Example

Example 113

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Place",
  "name": "Fresno Area",
  "altitude": 15.0,
  "latitude": 36.75,
  "longitude": 119.7667,
  "units": "miles"
}

1769 alumni

https://w3id.org/class/redaktor/alumni

JSON

Inbox

Definition

Alumni of an organization.

Exact Match

1770 alumni of

https://w3id.org/class/redaktor/alumniOf

JSON

Inbox

Definition

An organization that the person is an alumni of.

Exact Match

1590 amenity feature

https://w3id.org/class/redaktor/amenityFeature

JSON

Inbox

Definition

An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs. We suggest to use OSM as a Controlled Vocabulary, as here for Place.
see also OSM amenity

Alt Label

  • service feature

1772 amount

https://w3id.org/class/redaktor/amount

JSON

Inbox

Definition

The amount of money.

Exact Match

2393 amount of this good

https://w3id.org/class/redaktor/amountOfThisGood

JSON

Inbox

Definition

The quantity of the goods included in the offer.

1773 announcement location

https://w3id.org/class/redaktor/announcementLocation

JSON

Inbox

Definition

Indicates a specific [[CivicStructure]] or [[LocalBusiness]] associated with the SpecialAnnouncement. For example, a specific testing facility or business with special opening hours. For a larger geographic region like a quarantine of an entire region, use [[spatialCoverage]].

5121 any of

https://w3id.org/class/redaktor/anyOf

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-anyof

Scope Note

: Property

Example

Example 92

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Question",
  "name": "What is the answer?",
  "anyOf": [
    {
      "type": "Note",
      "name": "Option A"
    },
    {
      "type": "Note",
      "name": "Option B"
    }
  ]
}

1774 appearance

https://w3id.org/class/redaktor/appearance

JSON

Inbox

Definition

Indicates an occurence of a [[Claim]] in some [[CreativeWork]].

2477 applicable country

https://w3id.org/class/redaktor/applicableCountry

JSON

Inbox

Definition

A country where a particular merchant return policy applies to, for example the two-letter ISO 3166-1 alpha-2 country code.

1775 application category

https://w3id.org/class/redaktor/applicationCategory

JSON

Inbox

Definition

Type of software application, e.g. 'Game, Multimedia'.

1776 application sub category

https://w3id.org/class/redaktor/applicationSubCategory

JSON

Inbox

Definition

Subcategory of the application, e.g. 'Arcade Game'.

1777 application suite

https://w3id.org/class/redaktor/applicationSuite

JSON

Inbox

Definition

The name of the application suite to which the application belongs (e.g. Excel belongs to Office).

1778 archive held

https://w3id.org/class/redaktor/archiveHeld

JSON

Inbox

Definition

:Object

1779 archived at

https://w3id.org/class/redaktor/archivedAt

JSON

Inbox

Definition

Indicates a page or other link involved in archival of a [[CreativeWork]]. In the case of [[MediaReview]], the items in a [[MediaReviewItem]] may often become inaccessible, but be archived by archival, journalistic, activist, or law enforcement organizations. In such cases, the referenced page may not directly publish the content.

2459 area

https://w3id.org/class/redaktor/area

JSON

Inbox

Definition

The area within which users can expect to reach the broadcast service.

Exact Match

1780 area served

https://w3id.org/class/redaktor/areaServed

JSON

Inbox

Definition

The geographic area where a service or offered item is provided.

1781 arrival airport

https://w3id.org/class/redaktor/arrivalAirport

JSON

Inbox

Definition

The airport where the flight terminates.

1782 arrival boat terminal

https://w3id.org/class/redaktor/arrivalBoatTerminal

JSON

Inbox

Definition

The terminal or port from which the boat arrives.

1783 arrival bus stop

https://w3id.org/class/redaktor/arrivalBusStop

JSON

Inbox

Definition

The stop or station from which the bus arrives.

1784 arrival gate

https://w3id.org/class/redaktor/arrivalGate

JSON

Inbox

Definition

Identifier of the flight's arrival gate.

1785 arrival platform

https://w3id.org/class/redaktor/arrivalPlatform

JSON

Inbox

Definition

The platform where the train arrives.

1786 arrival station

https://w3id.org/class/redaktor/arrivalStation

JSON

Inbox

Definition

The station where the train trip ends.

1787 arrival terminal

https://w3id.org/class/redaktor/arrivalTerminal

JSON

Inbox

Definition

Identifier of the flight's arrival terminal.

1788 arrival time

https://w3id.org/class/redaktor/arrivalTime

JSON

Inbox

Definition

The expected arrival time.

1789 article body

https://w3id.org/class/redaktor/articleBody

JSON

Inbox

Definition

The actual body of the article.

1790 article section

https://w3id.org/class/redaktor/articleSection

JSON

Inbox

Definition

Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.

1791 artist

https://w3id.org/class/redaktor/artist

JSON

Inbox

Definition

The primary artist for a work
in a medium other than pencils or digital line art--for example, if the
primary artwork is done in watercolors or digital paints.

Exact Match

1792 aspect

https://w3id.org/class/redaktor/aspect

JSON

Inbox

Definition

An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.

Exact Match

1793 assembly

https://w3id.org/class/redaktor/assembly

JSON

Inbox

Definition

Library file name e.g., mscorlib.dll, system.web.dll.

Exact Match

1794 assembly version

https://w3id.org/class/redaktor/assemblyVersion

JSON

Inbox

Definition

Associated product/technology version. e.g., .NET Framework 4.5.

1795 assesses

https://w3id.org/class/redaktor/assesses

JSON

Inbox

Definition

The item being described is intended to assess the competency or learning outcome defined by the referenced term.

Exact Match

2347 associated article

https://w3id.org/class/redaktor/associatedArticle

JSON

Inbox

Definition

A NewsArticle associated with the Media Object.

2498 associated ClaimReview

https://w3id.org/class/redaktor/associatedClaimReview

JSON

Inbox

Definition

An associated [[ClaimReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].

1796 associated media

https://w3id.org/class/redaktor/associatedMedia

JSON

Inbox

Definition

A media object that encodes this CreativeWork. This property is a synonym for encoding.

2501 associated MediaReview

https://w3id.org/class/redaktor/associatedMediaReview

JSON

Inbox

Definition

An associated [[MediaReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].

2500 associated Review

https://w3id.org/class/redaktor/associatedReview

JSON

Inbox

Definition

An associated [[Review]].

1797 athlete

https://w3id.org/class/redaktor/athlete

JSON

Inbox

Definition

A person that acts as performing member of a sports team; a player as opposed to a coach.

Exact Match

125 attachment

https://w3id.org/class/redaktor/attachment

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-attachment

Scope Note

: Property

Example

Example 66

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Note",
  "name": "Have you seen my cat?",
  "attachment": [
    {
      "type": "Image",
      "content": "This is what he looks like.",
      "url": "http://example.org/cat.jpeg"
    }
  ]
}

126 attributed to

https://w3id.org/class/redaktor/attributedTo

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-attributedto

Scope Note

: Property

Example

Example 67

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Image",
  "name": "My cat taking a nap",
  "url": "http://example.org/cat.jpeg",
  "attributedTo": [
    {
      "type": "Person",
      "name": "Sally"
    }
  ]
}

127 audience

https://w3id.org/class/redaktor/audience

JSON

Inbox

Definition

Identifies one or more entities that represent the total population of entities for which the object can considered to be relevant.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-audience

Scope Note

: Property

Alt Label

  • audience

Example

Example 69

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "name": "Holiday announcement",
  "type": "Note",
  "content": "Thursday will be a company-wide holiday. Enjoy your day off!",
  "audience": {
    "type": "http://example.org/Organization",
    "name": "ExampleCo LLC"
  }
}

1799 audience type

https://w3id.org/class/redaktor/audienceType

JSON

Inbox

Definition

The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).

1800 audio

https://w3id.org/class/redaktor/audio

JSON

Inbox

Definition

An embedded audio object.

Exact Match

2515 authenticator

https://w3id.org/class/redaktor/authenticator

JSON

Inbox

Definition

The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media.

1801 author

https://w3id.org/class/redaktor/author

JSON

Inbox

Definition

Person(en), die ein schriftliches Werk verfasst hat bzw. haben; Für wd P2093 verwenden, falls der Autor in Wikidata nicht bekannt ist. The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.

1802 availability

https://w3id.org/class/redaktor/availability

JSON

Inbox

Definition

The availability of this item&#x2014;for example In stock, Out of stock, Pre-order, etc.

1803 availability ends

https://w3id.org/class/redaktor/availabilityEnds

JSON

Inbox

Definition

The end of the availability of the product or service included in the offer.

1804 availability starts

https://w3id.org/class/redaktor/availabilityStarts

JSON

Inbox

Definition

The beginning of the availability of the product or service included in the offer.

1805 available at or from

https://w3id.org/class/redaktor/availableAtOrFrom

JSON

Inbox

Definition

The place(s) from which the offer can be obtained (e.g. store locations).

1806 available channel

https://w3id.org/class/redaktor/availableChannel

JSON

Inbox

Definition

A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).

1807 available delivery method

https://w3id.org/class/redaktor/availableDeliveryMethod

JSON

Inbox

Definition

The delivery method(s) available for this offer.

1808 available from

https://w3id.org/class/redaktor/availableFrom

JSON

Inbox

Definition

When the item is available for pickup from the store, locker, etc.

1809 available language

https://w3id.org/class/redaktor/availableLanguage

JSON

Inbox

Definition

Eine Sprache, die jemand mit oder an dem Gegenstand, der Dienstleistung oder dem Ort verwenden kann. Bitte verwenden Sie einen der Sprachcodes aus dem IETF-Standard BCP 47.
Siehe auch :inLanguage

1810 available on device

https://w3id.org/class/redaktor/availableOnDevice

JSON

Inbox

Definition

Device required to run the application. Used in cases where a specific make/model is required to run the application.

1811 available service

https://w3id.org/class/redaktor/availableService

JSON

Inbox

Definition

A medical service available from this provider.

1812 available test

https://w3id.org/class/redaktor/availableTest

JSON

Inbox

Definition

A diagnostic test or procedure offered by this lab.

1813 available through

https://w3id.org/class/redaktor/availableThrough

JSON

Inbox

Definition

After this date, the item will no longer be available for pickup.

2357 award

https://w3id.org/class/redaktor/award

JSON

Inbox

Definition

An award won by or for this item.

Exact Match

1815 awards

https://w3id.org/class/redaktor/awards

JSON

Inbox

Definition

Awards won by or for this item.

Exact Match

1816 away team

https://w3id.org/class/redaktor/awayTeam

JSON

Inbox

Definition

The away team in a sports event.

Exact Match

1817 backstory

https://w3id.org/class/redaktor/backstory

JSON

Inbox

Definition

For an [[Article]], typically a [[NewsArticle]], the backstory property provides a textual summary giving a brief explanation of why and how an article was created. In a journalistic setting this could include information about reporting process, methods, interviews, data sources, etc.

Exact Match

115 bcc

https://w3id.org/class/redaktor/bcc

JSON

Inbox

Definition

Identifies one or more Objects that are part of the private secondary audience of this Object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-bcc

Scope Note

: Property

Example

Example 70

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally offered a post to John",
  "type": "Offer",
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "target": "http://john.example.org",
  "bcc": [ "http://joe.example.org" ]
}

1818 bed

https://w3id.org/class/redaktor/bed

JSON

Inbox

Definition

The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.
If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.

Exact Match

2404 best rating

https://w3id.org/class/redaktor/bestRating

JSON

Inbox

Definition

The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.

1819 birth date

https://w3id.org/class/redaktor/birthDate

JSON

Inbox

Definition

Date of birth.

Exact Match

1820 birth place

https://w3id.org/class/redaktor/birthPlace

JSON

Inbox

Definition

The place where the person was born.

2353 bitrate

https://w3id.org/class/redaktor/bitrate

JSON

Inbox

Definition

The bitrate of the media object.

Exact Match

1821 blog post

https://w3id.org/class/redaktor/blogPost

JSON

Inbox

Definition

A posting that is part of this blog.

Exact Match

1513 blurhash

https://w3id.org/class/redaktor/blurhash

JSON

Inbox

Definition

Mastodon generates colorful preview thumbnails for attachments. This is implemented using an extra property blurhash on Image objects. The property is a string generated by the BlurHash algorithm.
see mastodon documentation

Scope Note

ActivityPub Community

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "toot": "http://joinmastodon.org/ns#",
      "blurhash": ":blurhash"
    }
  ],

  "id": "https://example.com/@alice/hello-world",
  "type": "Note",
  "content": "A picture attached!",
  "attachment": [
    {
      "type": "Image",
      "mediaType": "image/png",
      "url": "https://example.com/files/cats.png",
      "blurhash": "UBL_:rOpGG-oBUNG,qRj2so|=eE1w^n4S5NH"
    }
  ]
}

1823 boarding policy

https://w3id.org/class/redaktor/boardingPolicy

JSON

Inbox

Definition

The type of boarding policy used by the airline (e.g. zone-based or group-based).

2438 body type

https://w3id.org/class/redaktor/bodyType

JSON

Inbox

Definition

Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.).

Exact Match

1824 book edition

https://w3id.org/class/redaktor/bookEdition

JSON

Inbox

Definition

Ausgabe (Werk) der Publikation.

Alt Label

  • edition or translation of

1825 book format

https://w3id.org/class/redaktor/bookFormat

JSON

Inbox

Definition

The format of the book.

1826 box

https://w3id.org/class/redaktor/box

JSON

Inbox

Definition

A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.

Exact Match

1827 branch of

https://w3id.org/class/redaktor/branchOf

JSON

Inbox

Definition

The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)[[branch]].

Exact Match

1828 brand

https://w3id.org/class/redaktor/brand

JSON

Inbox

Definition

The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.

Exact Match

2458 broadcast affiliate of

https://w3id.org/class/redaktor/broadcastAffiliateOf

JSON

Inbox

Definition

The media network(s) whose content is broadcast on this station.

2453 broadcast display name

https://w3id.org/class/redaktor/broadcastDisplayName

JSON

Inbox

Definition

The name displayed in the channel guide. For many US affiliates, it is the network name.

2455 broadcast frequency

https://w3id.org/class/redaktor/broadcastFrequency

JSON

Inbox

Definition

The frequency used for over-the-air broadcasts. Numeric values or simple ranges e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. "87 FM".

2517 broadcast Frequency Value

https://w3id.org/class/redaktor/broadcastFrequencyValue

JSON

Inbox

Definition

The frequency in MHz for a particular broadcast.

1829 broadcast of event

https://w3id.org/class/redaktor/broadcastOfEvent

JSON

Inbox

Definition

The event being broadcast such as a sporting event or awards ceremony.

2518 broadcast Signal Modulation

https://w3id.org/class/redaktor/broadcastSignalModulation

JSON

Inbox

Definition

The modulation (e.g. FM, AM, etc) used by a particular broadcast service.

2519 broadcast subchannel

https://w3id.org/class/redaktor/broadcastSubChannel

JSON

Inbox

Definition

The subchannel used for the broadcast.

2454 broadcast timezone

https://w3id.org/class/redaktor/broadcastTimezone

JSON

Inbox

Definition

The timezone in ISO 8601 format for which the service bases its broadcasts

2457 broadcaster

https://w3id.org/class/redaktor/broadcaster

JSON

Inbox

Definition

The organization owning or operating the broadcast service.

1830 broker

https://w3id.org/class/redaktor/broker

JSON

Inbox

Definition

An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.

Exact Match

116 bto

https://w3id.org/class/redaktor/bto

JSON

Inbox

Definition

Identifies an Object that is part of the private primary audience of this Object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-bto

Scope Note

: Property

Example

Example 71

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally offered a post to John",
  "type": "Offer",
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "target": "http://john.example.org",
  "bto": [ "http://joe.example.org" ]
}

1831 bus name

https://w3id.org/class/redaktor/busName

JSON

Inbox

Definition

The name of the bus (e.g. Bolt Express).

Exact Match

1832 bus number

https://w3id.org/class/redaktor/busNumber

JSON

Inbox

Definition

The unique identifier for the bus.

Exact Match

1833 business function

https://w3id.org/class/redaktor/businessFunction

JSON

Inbox

Definition

The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.

1834 by artist

https://w3id.org/class/redaktor/byArtist

JSON

Inbox

Definition

Darbieter/-in oder Darsteller/-in, der/die bei der Aufführung oder bei der Aufnahme eines Werks involviert war.

1835 call sign

https://w3id.org/class/redaktor/callSign

JSON

Inbox

Definition

A callsign, as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.

Exact Match

2330 calories

https://w3id.org/class/redaktor/calories

JSON

Inbox

Definition

The number of calories.

Exact Match

2334 carbohydrate content

https://w3id.org/class/redaktor/carbohydrateContent

JSON

Inbox

Definition

The number of grams of carbohydrates.

2421 cargo volume

https://w3id.org/class/redaktor/cargoVolume

JSON

Inbox

Definition

The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.

Typical unit code(s): LTR for liters, FTQ for cubic foot/feet

Note: You can use [[minValue]] and [[maxValue]] to indicate ranges.

1836 carrier

https://w3id.org/class/redaktor/carrier

JSON

Inbox

Definition

'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights.

Exact Match

2317 catalog

https://w3id.org/class/redaktor/catalog

JSON

Inbox

Definition

A data catalog which contains this dataset.

Exact Match

1545 category

https://w3id.org/class/redaktor/category

JSON

Inbox

Definition

Used by PeerTube with the Video Object. In PeerTube can be one of:
{ "identifier": "1", "name": "Music" },
{ "identifier": "2", "name": "Films" },
{ "identifier": "3", "name": "Vehicles" },
{ "identifier": "4", "name": "Art" },
{ "identifier": "5", "name": "Sports" },
{ "identifier": "6", "name": "Travels" },
{ "identifier": "7", "name": "Gaming" },
{ "identifier": "8", "name": "People" },
{ "identifier": "9", "name": "Comedy" },
{ "identifier": "10", "name": "Entertainment" },
{ "identifier": "11", "name": "News & Politics" },
{ "identifier": "12", "name": "How To" },
{ "identifier": "13", "name": "Education" },
{ "identifier": "14", "name": "Activism" },
{ "identifier": "15", "name": "Science & Technology" },
{ "identifier": "16", "name": "Animals" },
{ "identifier": "17", "name": "Kids" },
{ "identifier": "18", "name": "Food" }
Otherwise: A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.
schema.org/category

Example

{
  "type": "Video",
  "id": "https://peertube2.cpy.re/videos/watch/...",
  "name": "HLS test 1",
  "category": {
    "identifier": "2", // Internal PeerTube ID
    "name": "Films"
  },
  "license": {
    "identifier": "5", // Internal PeerTube ID
    "name": "Attribution - Non Commercial - Share Alike"
  }
}

Exact Match

114 cc

https://w3id.org/class/redaktor/cc

JSON

Inbox

Definition

Identifies an Object that is part of the public secondary audience of this Object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-cc

Scope Note

: Property

Example

Example 72

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally offered a post to John",
  "type": "Offer",
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "target": "http://john.example.org",
  "cc": [ "http://joe.example.org" ]
}

1838 character

https://w3id.org/class/redaktor/character

JSON

Inbox

Definition

Fictional person connected with a creative work.

Exact Match

1839 character attribute

https://w3id.org/class/redaktor/characterAttribute

JSON

Inbox

Definition

A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).

1840 cheat code

https://w3id.org/class/redaktor/cheatCode

JSON

Inbox

Definition

Cheat codes to the game.

Exact Match

1841 checkin time

https://w3id.org/class/redaktor/checkinTime

JSON

Inbox

Definition

The earliest someone may check into a lodging establishment.

1842 checkout time

https://w3id.org/class/redaktor/checkoutTime

JSON

Inbox

Definition

The latest someone may check out of a lodging establishment.

1843 children

https://w3id.org/class/redaktor/children

JSON

Inbox

Definition

A child of the person.

Exact Match

2332 cholesterol content

https://w3id.org/class/redaktor/cholesterolContent

JSON

Inbox

Definition

The number of milligrams of cholesterol.

1844 circle

https://w3id.org/class/redaktor/circle

JSON

Inbox

Definition

A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.

Exact Match

1845 citation

https://w3id.org/class/redaktor/citation

JSON

Inbox

Definition

Verweis von einem Dokument auf ein anderes. Z. B. eine andere Publikation, Webseite, wissenschaftliche Referenz, etc.

1846 claim interpreter

https://w3id.org/class/redaktor/claimInterpreter

JSON

Inbox

Definition

For a [[Claim]] interpreted from [[MediaObject]] content
sed to indicate a claim contained, implied or refined from the content of a [[MediaObject]].

1847 clip number

https://w3id.org/class/redaktor/clipNumber

JSON

Inbox

Definition

Position of the clip within an ordered group of clips.

5122,10522 closed

https://w3id.org/class/redaktor/closed

JSON

Inbox

Definition

Indicates that a question has been closed, and answers are no longer accepted.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-closed

Scope Note

: Property

Example

Example 93

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Question",
  "name": "What is the answer?",
  "closed": "2016-05-10T00:00:00Z"
}

2379 closes

https://w3id.org/class/redaktor/closes

JSON

Inbox

Definition

The closing hour of the place or service on the given day(s) of the week.

Exact Match

1848 coach

https://w3id.org/class/redaktor/coach

JSON

Inbox

Definition

A person that acts in a coaching role for a sports team.

Exact Match

1849 code repository

https://w3id.org/class/redaktor/codeRepository

JSON

Inbox

Definition

Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).

1850 code sample type

https://w3id.org/class/redaktor/codeSampleType

JSON

Inbox

Definition

What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.

1851 colleague

https://w3id.org/class/redaktor/colleague

JSON

Inbox

Definition

A colleague of the person.

Exact Match

1852 colleagues

https://w3id.org/class/redaktor/colleagues

JSON

Inbox

Definition

A colleague of the person.

2363 color

https://w3id.org/class/redaktor/color

JSON

Inbox

Definition

The color of the product.

Exact Match

1853 colorist

https://w3id.org/class/redaktor/colorist

JSON

Inbox

Definition

The individual who adds color to inked drawings.

Exact Match

1854 comment

https://w3id.org/class/redaktor/comment

JSON

Inbox

Definition

Comments, typically from users.

Exact Match

1855 comment count

https://w3id.org/class/redaktor/commentCount

JSON

Inbox

Definition

The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.

1523 comments enabled

https://w3id.org/class/redaktor/commentsEnabled

JSON

Inbox

Definition

Enable or disable comments for this video.
see peertube documentation - fallback for mobilizon

Scope Note

ActivityPub Community

Example

{
  "type": "Video",
  "commentsEnabled": true,
  "downloadEnabled": true
}

1856 competency required

https://w3id.org/class/redaktor/competencyRequired

JSON

Inbox

Definition

Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource.

1857 competitor

https://w3id.org/class/redaktor/competitor

JSON

Inbox

Definition

A competitor in a sports event.

1858 composer

https://w3id.org/class/redaktor/composer

JSON

Inbox

Definition

Künstler, der musikalische Werke schafft. The person or organization who wrote a composition, or who is the composer of a work performed at some event.

1859 conditions of access

https://w3id.org/class/redaktor/conditionsOfAccess

JSON

Inbox

Definition

Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language. For example “Available by appointment from the Reading Room” or “Accessible only from logged-in accounts”.

1860 contact option

https://w3id.org/class/redaktor/contactOption

JSON

Inbox

Definition

An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers).

1861 contact point

https://w3id.org/class/redaktor/contactPoint

JSON

Inbox

Definition

A contact point for a person or organization.

1862 contact points

https://w3id.org/class/redaktor/contactPoints

JSON

Inbox

Definition

A contact point for a person or organization.

1863 contact type

https://w3id.org/class/redaktor/contactType

JSON

Inbox

Definition

A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.

2310 contains season

https://w3id.org/class/redaktor/containsSeason

JSON

Inbox

Definition

A season that is part of the media series.

121 content

https://w3id.org/class/redaktor/content

JSON

Inbox

Definition

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 (see "contentMap").
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-content

Scope Note

: Property

Example

Example 114

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "A simple note",
  "type": "Note",
  "content": "A <em>simple</em> note"
}

1864 content location

https://w3id.org/class/redaktor/contentLocation

JSON

Inbox

Definition

The location depicted or described in the content. For example, the location in a photograph or painting.

122 content map

https://w3id.org/class/redaktor/contentMap

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-content

Scope Note

: Property

Alt Label

  • multi-language content

Example

[Example 115](https://www.w3.org/TR/activitystreams-vocabulary/#ex131-jsonld) [Example 116](https://www.w3.org/TR/activitystreams-vocabulary/#ex130b-jsonld)
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "A simple note",
  "type": "Note",
  "contentMap": {
    "en": "A <em>simple</em> note",
    "es": "Una nota <em>sencilla</em>",
    "zh-Hans": "一段<em>简单的</em>笔记"
  }
}

Related

1865 content rating

https://w3id.org/class/redaktor/contentRating

JSON

Inbox

Definition

Official rating of a piece of content&#x2014;for example,'MPAA PG-13'.

1866 content reference time

https://w3id.org/class/redaktor/contentReferenceTime

JSON

Inbox

Definition

The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event.

2344 content size

https://w3id.org/class/redaktor/contentSize

JSON

Inbox

Definition

File size in (mega/kilo) bytes.

2345 content Url

https://w3id.org/class/redaktor/contentUrl

JSON

Inbox

Definition

Actual bytes of the media object, for example the image file or video file.

128 context

https://w3id.org/class/redaktor/context

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context

Scope Note

: Property

Example

Example 73

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Activities in context 1",
  "type": "Collection",
  "items": [
    {
      "type": "Offer",
      "actor": "http://sally.example.org",
      "object": "http://example.org/posts/1",
      "target": "http://john.example.org",
      "context": "http://example.org/contexts/1"
    },
    {
      "type": "Like",
      "actor": "http://joe.example.org",
      "object": "http://example.org/posts/2",
      "context": "http://example.org/contexts/1"
    }
  ]
}

1867 contributor

https://w3id.org/class/redaktor/contributor

JSON

Inbox

Definition

Person oder Organisation, die zur Erstellung des Werks beigetragen hat.

1868 cook time

https://w3id.org/class/redaktor/cookTime

JSON

Inbox

Definition

The time it takes to actually cook the dish, in ISO 8601 duration format.

Exact Match

1869 cooking method

https://w3id.org/class/redaktor/cookingMethod

JSON

Inbox

Definition

The method of cooking, such as Frying, Steaming, ...

1870 copyright holder

https://w3id.org/class/redaktor/copyrightHolder

JSON

Inbox

Definition

Person oder Organisation die nach der Berner Konvention das Urheberrecht eines Werkes innehält. The party holding the legal copyright to the CreativeWork.

1871 copyright notice

https://w3id.org/class/redaktor/copyrightNotice

JSON

Inbox

Definition

Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.

1872 copyright year

https://w3id.org/class/redaktor/copyrightYear

JSON

Inbox

Definition

The year during which the claimed copyright for the CreativeWork was first asserted.

1873 correction

https://w3id.org/class/redaktor/correction

JSON

Inbox

Definition

Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.

1874 corrections policy

https://w3id.org/class/redaktor/correctionsPolicy

JSON

Inbox

Definition

For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.

1875 countries not supported

https://w3id.org/class/redaktor/countriesNotSupported

JSON

Inbox

Definition

Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.

1876 countries supported

https://w3id.org/class/redaktor/countriesSupported

JSON

Inbox

Definition

Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.

2362 country of assembly

https://w3id.org/class/redaktor/countryOfAssembly

JSON

Inbox

Definition

The place where the product was assembled.

2365 country of last processing

https://w3id.org/class/redaktor/countryOfLastProcessing

JSON

Inbox

Definition

The place where the item (typically [[Product]]) was last processed and tested before importation.

1877 country of origin

https://w3id.org/class/redaktor/countryOfOrigin

JSON

Inbox

Definition

The country of origin of something, including products as well as creative works such as movie and TV content.

In the case of TV and movie, this would be the country of the principle offices of the production company or individual responsible for the movie. For other kinds of [[CreativeWork]] it is difficult to provide fully general guidance, and properties such as [[contentLocation]] and [[locationCreated]] may be more applicable.

In the case of products, the country of origin of the product. The exact interpretation of this may vary by context and product type, and cannot be fully enumerated here.

1878 course code

https://w3id.org/class/redaktor/courseCode

JSON

Inbox

Definition

The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001).

1879 course mode

https://w3id.org/class/redaktor/courseMode

JSON

Inbox

Definition

The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. “online”, “onsite” or “blended”; “synchronous” or “asynchronous”; “full-time” or “part-time”) or as a URL reference to a term from a controlled vocabulary ( e.g. https://ceds.ed.gov/element/001311#Asynchronous ).

1880 course prerequisites

https://w3id.org/class/redaktor/coursePrerequisites

JSON

Inbox

Definition

Requirements for taking the Course. May be completion of another [[Course]] or a textual description like “permission of instructor”. Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]].

1881 course workload

https://w3id.org/class/redaktor/courseWorkload

JSON

Inbox

Definition

The amount of work expected of students taking the course, often provided as a figure per week or per month, and may be broken down by type. For example, “2 hours of lectures, 1 hour of lab work and 3 hours of independent study per week”.

1541 created

https://w3id.org/class/redaktor/created

JSON

Inbox

Definition

Introduced by mastodon for Linked Data Signatures. Creation date of Signature.
see mastodon Security

Example

"signature": {
    "type": "RsaSignature2017",
    "creator": "https://mastodon.example/users/username#main-key",
    "created": "2019-12-08T03:48:33.901Z",
    "signatureValue": "s69F3mfddd99dGjmvjdjjs81e12jn121Gkm1"
}

Exact Match

1882 creative work status

https://w3id.org/class/redaktor/creativeWorkStatus

JSON

Inbox

Definition

The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.

1540 creator

https://w3id.org/class/redaktor/creator

JSON

Inbox

Definition

Introduced by mastodon for Linked Data Signatures. Creator of Signature.
see mastodon Security - Maker of this creative work or other object (where no more specific property exists).

Example

"signature": {
    "type": "RsaSignature2017",
    "creator": "https://mastodon.example/users/username#main-key",
    "created": "2019-12-08T03:48:33.901Z",
    "signatureValue": "s69F3mfddd99dGjmvjdjjs81e12jn121Gkm1"
}

1884 credential category

https://w3id.org/class/redaktor/credentialCategory

JSON

Inbox

Definition

The category or type of credential being described, for example “degree”, “certificate”, “badge”, or more specific term.

1885 credit text

https://w3id.org/class/redaktor/creditText

JSON

Inbox

Definition

Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.

1886 css selector

https://w3id.org/class/redaktor/cssSelector

JSON

Inbox

Definition

A CSS selector, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual “Web page element”.

1887 currencies accepted

https://w3id.org/class/redaktor/currenciesAccepted

JSON

Inbox

Definition

The currency accepted. Use standard formats: ISO 4217 currency format e.g. “USD”; Ticker symbol for cryptocurrencies e.g. “BTC”; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. “Ithaca HOUR”.

2375 currency

https://w3id.org/class/redaktor/currency

JSON

Inbox

Definition

The currency in which the monetary amount is expressed.

Use standard formats: ISO 4217 currency format e.g. "USD"; Ticker symbol for cryptocurrencies e.g. "BTC"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. "Ithaca HOUR".

Exact Match

611 current

https://w3id.org/class/redaktor/current

JSON

Inbox

Definition

In a paged Collection, indicates the page that contains the most recently updated member items.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-current

Scope Note

: Property

Example

Example 74

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally's blog posts",
  "type": "Collection",
  "totalItems": 3,
  "current": "http://example.org/collection",
  "items": [
    "http://example.org/posts/1",
    "http://example.org/posts/2",
    "http://example.org/posts/3"
  ]
}

2475 customer remorse return fees

https://w3id.org/class/redaktor/customerRemorseReturnFees

JSON

Inbox

Definition

The type of return fees if the product is returned due to customer remorse.

2474 customer remorse return label source

https://w3id.org/class/redaktor/customerRemorseReturnLabelSource

JSON

Inbox

Definition

The method (from an enumeration) by which the customer obtains a return shipping label for a product returned due to customer remorse.

2469 customer remorse return shipping fees amount

https://w3id.org/class/redaktor/customerRemorseReturnShippingFeesAmount

JSON

Inbox

Definition

The amount of shipping costs if a product is returned due to customer remorse. Applicable when property [[customerRemorseReturnFees]] equals [[ReturnShippingFees]].

2382 data feed element

https://w3id.org/class/redaktor/dataFeedElement

JSON

Inbox

Definition

An item within in a data feed. Data feeds may have many elements.

2514 dataset

https://w3id.org/class/redaktor/dataset

JSON

Inbox

Definition

A dataset contained in this catalog.

Exact Match

2321 dataset time interval

https://w3id.org/class/redaktor/datasetTimeInterval

JSON

Inbox

Definition

The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).

1888 date created

https://w3id.org/class/redaktor/dateCreated

JSON

Inbox

Definition

The date on which the CreativeWork was created or the item was added to a DataFeed.

1892 date deleted

https://w3id.org/class/redaktor/dateDeleted

JSON

Inbox

Definition

The datetime the item was removed from the DataFeed.

1889 date issued

https://w3id.org/class/redaktor/dateIssued

JSON

Inbox

Definition

The date the ticket was issued.

1890 date modified

https://w3id.org/class/redaktor/dateModified

JSON

Inbox

Definition

The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.

1891 date posted

https://w3id.org/class/redaktor/datePosted

JSON

Inbox

Definition

Publication date of an online listing.

1550 date published

https://w3id.org/class/redaktor/datePublished

JSON

Inbox

Definition

Used by PeerTube. Date of first broadcast/publication.

2439 date first registered

https://w3id.org/class/redaktor/dateVehicleFirstRegistered

JSON

Inbox

Definition

The date of the first registration of the vehicle with the respective public authorities.

2380 day of week

https://w3id.org/class/redaktor/dayOfWeek

JSON

Inbox

Definition

The day of the week for which these opening hours are valid.

Exact Match

1893 death date

https://w3id.org/class/redaktor/deathDate

JSON

Inbox

Definition

Date of death.

Exact Match

1894 death place

https://w3id.org/class/redaktor/deathPlace

JSON

Inbox

Definition

The place where the person died.

3221 deleted

https://w3id.org/class/redaktor/deleted

JSON

Inbox

Definition

On a Tombstone object, the deleted property is a timestamp for when the object was deleted.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-deleted

Scope Note

: Property

Example

Example 143

{
"@context": "https://www.w3.org/ns/activitystreams",
"summary": "This image has been deleted",
"type": "Tombstone",
"deleted": "2016-05-03T00:00:00Z"
}

2491 delivery address

https://w3id.org/class/redaktor/deliveryAddress

JSON

Inbox

Definition

Destination address.

1895 delivery lead time

https://w3id.org/class/redaktor/deliveryLeadTime

JSON

Inbox

Definition

The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup.

2493 delivery status

https://w3id.org/class/redaktor/deliveryStatus

JSON

Inbox

Definition

New entry added as the package passes through each leg of its journey (from shipment to final delivery).

2508 delivery time

https://w3id.org/class/redaktor/deliveryTime

JSON

Inbox

Definition

The total delay between the receipt of the order and the goods reaching the final customer.

1896 department

https://w3id.org/class/redaktor/department

JSON

Inbox

Definition

A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.

1897 departure airport

https://w3id.org/class/redaktor/departureAirport

JSON

Inbox

Definition

The airport where the flight originates.

1898 departure boat terminal

https://w3id.org/class/redaktor/departureBoatTerminal

JSON

Inbox

Definition

The terminal or port from which the boat departs.

1899 departure bus stop

https://w3id.org/class/redaktor/departureBusStop

JSON

Inbox

Definition

The stop or station from which the bus departs.

1900 departure gate

https://w3id.org/class/redaktor/departureGate

JSON

Inbox

Definition

Identifier of the flight's departure gate.

1901 departure platform

https://w3id.org/class/redaktor/departurePlatform

JSON

Inbox

Definition

The platform from which the train departs.

1902 departure station

https://w3id.org/class/redaktor/departureStation

JSON

Inbox

Definition

The station from which the train departs.

1903 departure terminal

https://w3id.org/class/redaktor/departureTerminal

JSON

Inbox

Definition

Identifier of the flight's departure terminal.

1904 departure time

https://w3id.org/class/redaktor/departureTime

JSON

Inbox

Definition

The expected departure time.

1905 dependencies

https://w3id.org/class/redaktor/dependencies

JSON

Inbox

Definition

Prerequisites needed to fulfill steps in article.

2364 depth

https://w3id.org/class/redaktor/depth

JSON

Inbox

Definition

The depth of the item.

Exact Match

129 describes

https://w3id.org/class/redaktor/describes

JSON

Inbox

Definition

On a Profile object, the describes property identifies the object described by the Profile.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-describes

Scope Note

: Property

Example

Example 141

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally's profile",
  "type": "Profile",
  "describes": {
    "type": "Person",
    "name": "Sally"
  },
  "url": "http://sally.example.org"
}

1906 device

https://w3id.org/class/redaktor/device

JSON

Inbox

Definition

Device required to run the application. Used in cases where a specific make/model is required to run the application.

Exact Match

1907 director

https://w3id.org/class/redaktor/director

JSON

Inbox

Definition

Regisseur eines Films oder ähnlichem.

1517 discoverable

https://w3id.org/class/redaktor/discoverable

JSON

Inbox

Definition

User will be shown in the profile directory. Mastodon allows users to opt-in or opt-out of discoverability features like the profile directory. This flag may also be used as an indicator of the user's preferences toward being included in external discovery services, such as search engines or other indexing tools. If you are implementing such a tool, it is recommended that you respect this property if it is present. This is implemented using an extra property discoverable on objects.
see mastodon documentation

Scope Note

ActivityPub Community

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "toot": "http://joinmastodon.org/ns#",
      "discoverable": ":discoverable"
    }
  ],
  "id": "https://mastodon.social/users/Gargron",
  "type": "Person",
  "discoverable": true
}

1909 discussion url

https://w3id.org/class/redaktor/discussionUrl

JSON

Inbox

Definition

A link to the page containing the comments of the CreativeWork.

1910 disease prevention info

https://w3id.org/class/redaktor/diseasePreventionInfo

JSON

Inbox

Definition

Information about disease prevention.

1911 disease spread statistics

https://w3id.org/class/redaktor/diseaseSpreadStatistics

JSON

Inbox

Definition

Statistical information about the spread of a disease, either as [[WebContent]], or
described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is
provided, the page indicated might also contain more such markup.

1912 dissolution date

https://w3id.org/class/redaktor/dissolutionDate

JSON

Inbox

Definition

The date that this organization was dissolved.

2322 distribution

https://w3id.org/class/redaktor/distribution

JSON

Inbox

Definition

A downloadable form of this dataset, at a specific location, in a specific format.

1913 diversity policy

https://w3id.org/class/redaktor/diversityPolicy

JSON

Inbox

Definition

Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.

1914 diversity staffing report

https://w3id.org/class/redaktor/diversityStaffingReport

JSON

Inbox

Definition

For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.

2504 does not ship

https://w3id.org/class/redaktor/doesNotShip

JSON

Inbox

Definition

Indicates when shipping to a particular [[shippingDestination]] is not available.

1524 download enabled

https://w3id.org/class/redaktor/downloadEnabled

JSON

Inbox

Definition

Enable or disable downloading for this video.
see peertube documentation

Scope Note

ActivityPub Community

Example

{
  "type": "Video",
  "commentsEnabled": true,
  "downloadEnabled": true
}

1915 download url

https://w3id.org/class/redaktor/downloadUrl

JSON

Inbox

Definition

If the file can be downloaded, URL to download the binary.

2424 drive wheel configuration

https://w3id.org/class/redaktor/driveWheelConfiguration

JSON

Inbox

Definition

The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain.

1916 DUNS

https://w3id.org/class/redaktor/duns

JSON

Inbox

Definition

The Dun & Bradstreet DUNS number for identifying an organization or business person.

Exact Match

130 duration

https://w3id.org/class/redaktor/duration

JSON

Inbox

Definition

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").
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration

Scope Note

: Property

Example

Example 119

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Video",
  "name": "Birds Flying",
  "url": "http://example.org/video.mkv",
  "duration": "PT2H"
}

2384 duration of warranty

https://w3id.org/class/redaktor/durationOfWarranty

JSON

Inbox

Definition

The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.

1918 edit EIDR

https://w3id.org/class/redaktor/editEIDR

JSON

Inbox

Definition

An EIDR (Entertainment Identifier Registry) [[identifier]] representing a specific edit / edition for a work of film or television.

For example, the motion picture known as “Ghostbusters” whose [[titleEIDR]] is “10.5240/7EC7-228A-510A-053E-CBB8-J”, has several edits e.g. “10.5240/1F2A-E1C5-680A-14C6-E76B-I” and “10.5240/8A35-3BEE-6497-5D12-9E4F-3”.

Since schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.

Exact Match

1919 editor

https://w3id.org/class/redaktor/editor

JSON

Inbox

Definition

editor of a compiled work such as a book or a periodical (newspaper or an academic journal)

2483 education requirements

https://w3id.org/class/redaktor/educationRequirements

JSON

Inbox

Definition

Educational background needed for the position or Occupation.

1920 educational alignment

https://w3id.org/class/redaktor/educationalAlignment

JSON

Inbox

Definition

An alignment to an established educational framework.

This property should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.

1921 educational credential awarded

https://w3id.org/class/redaktor/educationalCredentialAwarded

JSON

Inbox

Definition

A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.

1922 educational framework

https://w3id.org/class/redaktor/educationalFramework

JSON

Inbox

Definition

The framework to which the resource being described is aligned.

1923 educational level

https://w3id.org/class/redaktor/educationalLevel

JSON

Inbox

Definition

The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.

1924 educational use

https://w3id.org/class/redaktor/educationalUse

JSON

Inbox

Definition

The purpose of a work in the context of education; for example, 'assignment', 'group work'.

1925 elevation

https://w3id.org/class/redaktor/elevation

JSON

Inbox

Definition

The elevation of a location (WGS 84). Values may be of the form 'NUMBER UNIT_OF_MEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters.

Exact Match

1926 eligible customer type

https://w3id.org/class/redaktor/eligibleCustomerType

JSON

Inbox

Definition

The type(s) of customers for which the given offer is valid.

1927 eligible duration

https://w3id.org/class/redaktor/eligibleDuration

JSON

Inbox

Definition

The duration for which the given offer is valid.

1928 eligible quantity

https://w3id.org/class/redaktor/eligibleQuantity

JSON

Inbox

Definition

The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.

1929 eligible region

https://w3id.org/class/redaktor/eligibleRegion

JSON

Inbox

Definition

The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid. See also [[ineligibleRegion]].

1930 eligible transaction volume

https://w3id.org/class/redaktor/eligibleTransactionVolume

JSON

Inbox

Definition

The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.

1931 email

https://w3id.org/class/redaktor/email

JSON

Inbox

Definition

Email address.

Exact Match

2352 embed Url

https://w3id.org/class/redaktor/embedUrl

JSON

Inbox

Definition

A URL pointing to a player for a specific video. In general, this is the information in the src element of an embed tag and should not be the same as the content of the loc tag.

Exact Match

2412 emissions CO2

https://w3id.org/class/redaktor/emissionsCO2

JSON

Inbox

Definition

The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put "g/km" into the unitText property of that value, since there is no UN/CEFACT Common Code for "g/km".

1932 employee

https://w3id.org/class/redaktor/employee

JSON

Inbox

Definition

Someone working for this organization.

Exact Match

1933 employees

https://w3id.org/class/redaktor/employees

JSON

Inbox

Definition

People working for this organization.

Exact Match

2350 encodes CreativeWork

https://w3id.org/class/redaktor/encodesCreativeWork

JSON

Inbox

Definition

The CreativeWork encoded by this media object.

1934 encoding

https://w3id.org/class/redaktor/encoding

JSON

Inbox

Definition

A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.

Exact Match

1935 encoding format

https://w3id.org/class/redaktor/encodingFormat

JSON

Inbox

Definition

Media type typically expressed using a MIME format (see IANA site and MDN reference) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.).

In cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.

Unregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.

1937 end offset

https://w3id.org/class/redaktor/endOffset

JSON

Inbox

Definition

The end time of the clip expressed as the number of seconds from the beginning of the work.

Exact Match

132 end time

https://w3id.org/class/redaktor/endTime

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-endtime

Scope Note

: Property

Example

Example 127

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Event",
  "name": "Going-Away Party for Jim",
  "startTime": "2014-12-31T23:00:00-08:00",
  "endTime": "2015-01-01T06:00:00-08:00"
}

155 endpoints

https://w3id.org/class/redaktor/endpoints

JSON

Inbox

Definition

A JSON object which maps additional (typically server/domain-wide) endpoints which may be useful either for this actor or someone referencing this actor. This mapping may be nested inside the actor document as the value or may be a link to a JSON-LD document with these properties.
The endpoints mapping MAY include the following properties:

- proxyUrl
Endpoint URI so this actor's clients may access remote ActivityStreams objects which require authentication to access. To use this endpoint, the client posts an x-www-form-urlencoded id parameter with the value being the id of the requested ActivityStreams object.
- oauthAuthorizationEndpoint
If OAuth 2.0 bearer tokens [RFC6749] [RFC6750] are being used for authenticating client to server interactions, this endpoint specifies a URI at which a browser-authenticated user may obtain a new authorization grant.
- oauthTokenEndpoint
If OAuth 2.0 bearer tokens [RFC6749] [RFC6750] are being used for authenticating client to server interactions, this endpoint specifies a URI at which a client may acquire an access token.
- provideClientKey
If Linked Data Signatures and HTTP Signatures are being used for authentication and authorization, this endpoint specifies a URI at which browser-authenticated users may authorize a client's public key for client to server interactions.
- signClientKey
If Linked Data Signatures and HTTP Signatures are being used for authentication and authorization, this endpoint specifies a URI at which a client key may be signed by the actor's key for a time window to act on behalf of the actor in interacting with foreign servers.
- sharedInbox
An optional endpoint used for wide delivery of publicly addressed activities and activities sent to followers. sharedInbox endpoints SHOULD also be publicly readable OrderedCollection objects containing objects addressed to the Public special collection. Reading from the sharedInbox endpoint MUST NOT present objects which are not addressed to the Public endpoint.

Scope Note

ActivityPub Property

2304 episode

https://w3id.org/class/redaktor/episode

JSON

Inbox

Definition

An episode of a tv, radio or game media within a series or season.

Exact Match

2309 episode number

https://w3id.org/class/redaktor/episodeNumber

JSON

Inbox

Definition

Position of the episode within an ordered group of episodes.

1938 estimated cost

https://w3id.org/class/redaktor/estimatedCost

JSON

Inbox

Definition

The estimated cost of the supply or supplies consumed when performing instructions.

1939 estimated flight duration

https://w3id.org/class/redaktor/estimatedFlightDuration

JSON

Inbox

Definition

The estimated time the flight will take.

2479 estimated salary

https://w3id.org/class/redaktor/estimatedSalary

JSON

Inbox

Definition

An estimated salary for a job posting or occupation, based on a variety of variables including, but not limited to industry, job title, and location. Estimated salaries are often computed by outside organizations rather than the hiring organization, who may not have committed to the estimated value.

1940 ethics policy

https://w3id.org/class/redaktor/ethicsPolicy

JSON

Inbox

Definition

Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.

1599 Eventbrite Category ID

https://w3id.org/class/redaktor/eventbriteId

JSON

Inbox

1591 events

https://w3id.org/class/redaktor/events

JSON

Inbox

Definition

Upcoming (usually) or past events associated with this place, organization, or action.

Exact Match

1943 example of work

https://w3id.org/class/redaktor/exampleOfWork

JSON

Inbox

Definition

A creative work that this work is an example/instance/realization/derivation of.

1944 executable library name

https://w3id.org/class/redaktor/executableLibraryName

JSON

Inbox

Definition

Library file name e.g., mscorlib.dll, system.web.dll.

2494 expected arrival from

https://w3id.org/class/redaktor/expectedArrivalFrom

JSON

Inbox

Definition

The earliest date the package may arrive.

2492 expected arrival until

https://w3id.org/class/redaktor/expectedArrivalUntil

JSON

Inbox

Definition

The latest date the package may arrive.

2516 expects Acceptance Of

https://w3id.org/class/redaktor/expectsAcceptanceOf

JSON

Inbox

Definition

An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.

2482 experience requirements

https://w3id.org/class/redaktor/experienceRequirements

JSON

Inbox

Definition

Description of skills and experience needed for the position or Occupation.

1945 expires

https://w3id.org/class/redaktor/expires

JSON

Inbox

Definition

Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.

Exact Match

1946 family name

https://w3id.org/class/redaktor/familyName

JSON

Inbox

Definition

Family name. In the U.S., the last name of a Person.

2327 fat content

https://w3id.org/class/redaktor/fatContent

JSON

Inbox

Definition

The number of grams of fat.

1947 fax number

https://w3id.org/class/redaktor/faxNumber

JSON

Inbox

Definition

The fax number.

Exact Match

1948 feature list

https://w3id.org/class/redaktor/featureList

JSON

Inbox

Definition

Features or modules provided by this application (and possibly required by other applications).

1515 featured

https://w3id.org/class/redaktor/featured

JSON

Inbox

Definition

What is known in Mastodon as “pinned toots”, or statuses that are always featured at the top of people’s profiles, is implemented using an extra property featured on the actor object that points to a Collection of objects.
see mastodon documentation

Scope Note

ActivityPub Community

Alt Label

  • Pinned posts

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "toot": "http://joinmastodon.org/ns#",
      "featured": {
        "@id": ":featured",
        "@type": "@id"
      }
    }
  ],

  "id": "https://example.com/@alice",
  "type": "Person",
  "featured": "https://example.com/@alice/collections/featured"
}

1516 featured tags

https://w3id.org/class/redaktor/featuredTags

JSON

Inbox

Definition

Mastodon allows users to feature specific hashtags on their profile for easy browsing, as a discoverability mechanism. This is implemented using an extra property featuredTags on the actor object that points to a Collection of Hashtag objects specifically.
see mastodon documentation

Scope Note

ActivityPub Community

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "toot": "http://joinmastodon.org/ns#",
      "featuredTags": {
        "@id": ":featuredTags",
        "@type": "@id"
      }
    }
  ],

  "id": "https://example.com/@alice",
  "type": "Person",
  "featuredTags": "https://example.com/@alice/collections/tags"
}

1949 fees and commissions specification

https://w3id.org/class/redaktor/feesAndCommissionsSpecification

JSON

Inbox

Definition

Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.

2336 fiber content

https://w3id.org/class/redaktor/fiberContent

JSON

Inbox

Definition

The number of grams of fiber.

1950 file format

https://w3id.org/class/redaktor/fileFormat

JSON

Inbox

Definition

Media type, typically MIME format (see IANA site) of the content e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.

1951 file size

https://w3id.org/class/redaktor/fileSize

JSON

Inbox

Definition

Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.

Exact Match

612 first

https://w3id.org/class/redaktor/first

JSON

Inbox

Definition

In a paged Collection, indicates the furthest preceeding page of items in the collection.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-first

Scope Note

: Property

Example

Example 76

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally's blog posts",
  "type": "Collection",
  "totalItems": 3,
  "first": "http://example.org/collection?page=0"
}

1952 first appearance

https://w3id.org/class/redaktor/firstAppearance

JSON

Inbox

Definition

Indicates the first known occurence of a [[Claim]] in some [[CreativeWork]].

1953 first performance

https://w3id.org/class/redaktor/firstPerformance

JSON

Inbox

Definition

The date and place the work was first performed.

1954 flight distance

https://w3id.org/class/redaktor/flightDistance

JSON

Inbox

Definition

The distance of the flight.

1955 flight number

https://w3id.org/class/redaktor/flightNumber

JSON

Inbox

Definition

The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.

1956 floor level

https://w3id.org/class/redaktor/floorLevel

JSON

Inbox

Definition

The floor level for an [[Accommodation]] in a multi-storey building. Since counting
systems vary internationally, the local system should be used where possible.

1957 floor size

https://w3id.org/class/redaktor/floorSize

JSON

Inbox

Definition

The size of the accommodation, e.g. in square meter or squarefoot.
Typical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard

Exact Match

1514 focal point

https://w3id.org/class/redaktor/focalPoint

JSON

Inbox

Definition

Mastodon supports setting a focal point on uploaded images, so that wherever that image is displayed, the focal point stays in view. This is implemented using an extra property focalPoint on Image objects. The property is simply an array of two floating points between -1.0 and 1.0, with 0,0 being the center of the image, the first value being x (-1.0 is the left edge, +1.0 is the right edge) and the second value being y (-1.0 is the bottom edge, +1.0 is the top edge). Siehe Focal points for more information.
mastodon documentation

Scope Note

ActivityPub Community

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "toot": "http://joinmastodon.org/ns#",
      "focalPoint": {
        "@container": "@list",
        "@id": ":focalPoint"
      }
    }
  ],

  "id": "https://example.com/@alice/hello-world",
  "type": "Note",
  "content": "A picture attached!",
  "attachment": [
    {
      "type": "Image",
      "mediaType": "image/png",
      "url": "https://example.com/files/cats.png",
      "focalPoint": [
        -0.55,
        0.43
      ]
    }
  ]
}

165 followers

https://w3id.org/class/redaktor/followers

JSON

Inbox

Definition

Every actor SHOULD have a followers collection. This is a list of everyone who has sent a Follow activity for the actor, added as a side effect. This is where one would find a list of all the actors that are following the actor. The followers collection MUST be either an OrderedCollection or a Collection and MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given.

NOTE: Default for notification targeting
The follow activity generally is a request to see the objects an actor creates. This makes the Followers collection an appropriate default target for delivery of notifications.
see https://www.w3.org/TR/activitypub/#followers

Scope Note

ActivityPub Property

Example

Example 9

{
  "@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/31987aklre4"
  ]
}

166 following

https://w3id.org/class/redaktor/following

JSON

Inbox

Definition

Every actor SHOULD have a following collection. This is a list of everybody that the actor has followed, added as a side effect. The following collection MUST be either an OrderedCollection or a Collection and MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given.
see https://www.w3.org/TR/activitypub/#following

Example

Example 9

{
  "@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/31987aklre4"
  ]
}

1958 follows

https://w3id.org/class/redaktor/follows

JSON

Inbox

Definition

The most generic uni-directional social relation.

Exact Match

c8 ForgeFed

https://w3id.org/class/redaktor/forgefed

JSON

Inbox

Definition

ForgeFed

399 former type

https://w3id.org/class/redaktor/formerType

JSON

Inbox

Definition

On a Tombstone object, the formerType property identifies the type of the object that was deleted.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-formertype

Scope Note

: Property

Example

Example 142

{
"@context": "https://www.w3.org/ns/activitystreams",
"summary": "This image has been deleted",
"type": "Tombstone",
"formerType": "Image",
"url": "http://example.org/image/2"
}

1959 founder

https://w3id.org/class/redaktor/founder

JSON

Inbox

Definition

A person who founded this organization.

Exact Match

1960 founders

https://w3id.org/class/redaktor/founders

JSON

Inbox

Definition

A person who founded this organization.

Exact Match

1961 founding date

https://w3id.org/class/redaktor/foundingDate

JSON

Inbox

Definition

The date that this organization was founded.

1962 founding location

https://w3id.org/class/redaktor/foundingLocation

JSON

Inbox

Definition

The place where the Organization was founded.

1525 frames per second

https://w3id.org/class/redaktor/fps

JSON

Inbox

Definition

Frames per second of the video file.
see peertube documentation

Scope Note

ActivityPub Community

Example

{
  "type": "Video",
  "url": [
    // Raw URL to the fragmented mp4 file used by the HLS playlist
    {
      "type": "Link",
      "mediaType": "video/mp4",
      "height": 536,
      "size": 135108145,
      "fps": 24}
  ]
}

10524 free

https://w3id.org/class/redaktor/free

JSON

Inbox

2407 fuel capacity

https://w3id.org/class/redaktor/fuelCapacity

JSON

Inbox

Definition

The capacity of the fuel tank or in the case of electric cars, the battery. If there are multiple components for storage, this should indicate the total of all storage of the same type.

Typical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles).

2426 fuel consumption

https://w3id.org/class/redaktor/fuelConsumption

JSON

Inbox

Definition

The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).

  • Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement, e.g. L/100 km.
  • Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.
  • Note 3: Often, the absolute value is useful only when related to driving speed ("at 80 km/h") or usage pattern ("city traffic"). You can use [[valueReference]] to link the value for the fuel consumption to another value.

2433 fuel efficiency

https://w3id.org/class/redaktor/fuelEfficiency

JSON

Inbox

Definition

The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).

  • Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement, e.g. mpg or km/L.
  • Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.
  • Note 3: Often, the absolute value is useful only when related to driving speed ("at 80 km/h") or usage pattern ("city traffic"). You can use [[valueReference]] to link the value for the fuel economy to another value.

2420 fuel type

https://w3id.org/class/redaktor/fuelType

JSON

Inbox

Definition

The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle.

Exact Match

1964 funded item

https://w3id.org/class/redaktor/fundedItem

JSON

Inbox

Definition

Indicates something directly or indirectly funded or sponsored through a [[Grant]]. See also [[ownershipFundingInfo]].

1965 funder

https://w3id.org/class/redaktor/funder

JSON

Inbox

Definition

A person or organization that supports (sponsors) something through some kind of financial contribution.

Exact Match

1966 funding

https://w3id.org/class/redaktor/funding

JSON

Inbox

Definition

A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].

Exact Match

2396 game

https://w3id.org/class/redaktor/game

JSON

Inbox

Definition

Video game which is played on this server.

Exact Match

1967 game edition

https://w3id.org/class/redaktor/gameEdition

JSON

Inbox

Definition

The edition of a video game.

1968 game item

https://w3id.org/class/redaktor/gameItem

JSON

Inbox

Definition

An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.

Exact Match

1969 game location

https://w3id.org/class/redaktor/gameLocation

JSON

Inbox

Definition

Real or fictional location of the game (or part of game).

1970 game platform

https://w3id.org/class/redaktor/gamePlatform

JSON

Inbox

Definition

The electronic systems used to play video games.

1971 game server

https://w3id.org/class/redaktor/gameServer

JSON

Inbox

Definition

The server on which it is possible to play the game.

1972 game tip

https://w3id.org/class/redaktor/gameTip

JSON

Inbox

Definition

Links to tips, tactics, etc.

Exact Match

1973 gender

https://w3id.org/class/redaktor/gender

JSON

Inbox

Definition

Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While https://schema.org/Male and https://schema.org/Female may be used, text strings are also acceptable for people who do not identify as a binary gender. The [[gender]] property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender [[SportsTeam]] can be indicated with a text value of “Mixed”.

Exact Match

133 generator

https://w3id.org/class/redaktor/generator

JSON

Inbox

Definition

Identifies the entity (e.g. an application) that generated the object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-generator

Scope Note

: Property

Example

Example 78

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "A simple note",
  "type": "Note",
  "content": "This is all there is.",
  "generator": {
    "type": "Application",
    "name": "Exampletron 3000"
  }
}

1974 genre

https://w3id.org/class/redaktor/genre

JSON

Inbox

Definition

Genre of the creative work, broadcast channel or group.

Exact Match

1975 geographic area

https://w3id.org/class/redaktor/geographicArea

JSON

Inbox

Definition

The geographic area associated with the audience.

1976 getting tested info

https://w3id.org/class/redaktor/gettingTestedInfo

JSON

Inbox

Definition

Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic.

1977 given name

https://w3id.org/class/redaktor/givenName

JSON

Inbox

Definition

Given name. In the U.S., the first name of a Person.

Exact Match

1978 global location number

https://w3id.org/class/redaktor/globalLocationNumber

JSON

Inbox

Definition

The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.

1979 government benefits info

https://w3id.org/class/redaktor/governmentBenefitsInfo

JSON

Inbox

Definition

governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement.

1980 GTIN

https://w3id.org/class/redaktor/gtin

JSON

Inbox

Definition

A Global Trade Item Number (GTIN). GTINs identify trade items, including products and services, using numeric identification codes. The [[gtin]] property generalizes the earlier [[gtin8]], [[gtin12]], [[gtin13]], and [[gtin14]] properties. The GS1 digital link specifications express GTINs as URLs. A correct [[gtin]] value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a “GS1 Digital Link” URL based on such a string. The numeric component should also have a valid GS1 check digit and meet the other rules for valid GTINs. See also GS1's GTIN Summary and Wikipedia for more details. Left-padding of the gtin values is not required or encouraged.

Exact Match

1981 GTIN12

https://w3id.org/class/redaktor/gtin12

JSON

Inbox

Definition

The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See GS1 GTIN Summary for more details.

Exact Match

1982 GTIN13

https://w3id.org/class/redaktor/gtin13

JSON

Inbox

Definition

The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceding zero. See GS1 GTIN Summary for more details.

Exact Match

1983 GTIN14

https://w3id.org/class/redaktor/gtin14

JSON

Inbox

Definition

The GTIN-14 code of the product, or the product to which the offer refers. See GS1 GTIN Summary for more details.

Exact Match

1984 GTIN8

https://w3id.org/class/redaktor/gtin8

JSON

Inbox

Definition

The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.

Exact Match

1985 has adult consideration

https://w3id.org/class/redaktor/hasAdultConsideration

JSON

Inbox

Definition

Used to tag an item to be intended or suitable for consumption or use by adults only.

2456 has broadcast channel

https://w3id.org/class/redaktor/hasBroadcastChannel

JSON

Inbox

Definition

A broadcast channel of a broadcast service.

1986 has course instance

https://w3id.org/class/redaktor/hasCourseInstance

JSON

Inbox

Definition

An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.

1987 has credential

https://w3id.org/class/redaktor/hasCredential

JSON

Inbox

Definition

A credential awarded to the Person or Organization.

2394 has Defined Term

https://w3id.org/class/redaktor/hasDefinedTerm

JSON

Inbox

Definition

A Defined Term contained in this term set.

1988 has delivery method

https://w3id.org/class/redaktor/hasDeliveryMethod

JSON

Inbox

Definition

Method used for delivery or shipping.

1592 has DriveThrough Service

https://w3id.org/class/redaktor/hasDriveThroughService

JSON

Inbox

Definition

Indicates whether some facility (e.g. CovidTestingFacility, FoodEstablishment) offers a service that can be used by driving through in a car. Testing facilities could potentially help with social distancing from other potentially-infected users.

2359 has energy consumption details

https://w3id.org/class/redaktor/hasEnergyConsumptionDetails

JSON

Inbox

Definition

Defines the energy efficiency Category (also known as "class" or "rating") for a product according to an international energy efficiency standard.

1989 has measurement

https://w3id.org/class/redaktor/hasMeasurement

JSON

Inbox

Definition

A product measurement, for example the inseam of pants, the wheel size of a bicycle, or the gauge of a screw. Usually an exact measurement, but can also be a range of measurements for adjustable products, for example belts and ski bindings.

1990 has menu

https://w3id.org/class/redaktor/hasMenu

JSON

Inbox

Definition

Either the actual menu as a structured representation, as text, or a URL of the menu.

Exact Match

2374 has menu item

https://w3id.org/class/redaktor/hasMenuItem

JSON

Inbox

Definition

A food or drink item contained in a menu or menu section.

2373 has menu section

https://w3id.org/class/redaktor/hasMenuSection

JSON

Inbox

Definition

A subgrouping of the menu (by dishes, course, serving time period, etc.).

1991 has merchant return policy

https://w3id.org/class/redaktor/hasMerchantReturnPolicy

JSON

Inbox

Definition

Specifies a MerchantReturnPolicy that may be applicable.

1992 has occupation

https://w3id.org/class/redaktor/hasOccupation

JSON

Inbox

Definition

The Person's occupation. For past professions, use Role for expressing dates.

1993 has offer catalog

https://w3id.org/class/redaktor/hasOfferCatalog

JSON

Inbox

Definition

Indicates an OfferCatalog listing for this Organization, Person, or Service.

1994 has POS

https://w3id.org/class/redaktor/hasPOS

JSON

Inbox

Definition

Points-of-Sales operated by the organization or person.

Exact Match

1995 has part

https://w3id.org/class/redaktor/hasPart

JSON

Inbox

Definition

Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).

Exact Match

1996 headline

https://w3id.org/class/redaktor/headline

JSON

Inbox

Definition

Headline of the article.

Exact Match

1997 health plan network id

https://w3id.org/class/redaktor/healthPlanNetworkId

JSON

Inbox

Definition

Name or unique ID of network. (Networks are often reused across different insurance plans).

1998 healthcare reporting data

https://w3id.org/class/redaktor/healthcareReportingData

JSON

Inbox

Definition

Indicates data describing a hospital or as some kind of [[Dataset]].

134 height

https://w3id.org/class/redaktor/height

JSON

Inbox

Definition

On a Link, specifies a hint as to the rendering height in device-independent pixels of the linked resource.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-height

Scope Note

: Property

Example

Example 120

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Link",
  "href": "http://example.org/image.png",
  "height": 100,
  "width": 100
}

2400 holding archive

https://w3id.org/class/redaktor/holdingArchive

JSON

Inbox

Definition

[[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]].

2000 home location

https://w3id.org/class/redaktor/homeLocation

JSON

Inbox

Definition

A contact location for a person's residence.

2001 home team

https://w3id.org/class/redaktor/homeTeam

JSON

Inbox

Definition

The home team in a sports event.

Exact Match

2002 honorific prefix

https://w3id.org/class/redaktor/honorificPrefix

JSON

Inbox

Definition

An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.

2003 honorific suffix

https://w3id.org/class/redaktor/honorificSuffix

JSON

Inbox

Definition

An honorific suffix following a Person's name such as M.D. /PhD/MSCSW.

2004 hospital affiliation

https://w3id.org/class/redaktor/hospitalAffiliation

JSON

Inbox

Definition

A hospital with which the physician or office is affiliated.

2005 hosting organization

https://w3id.org/class/redaktor/hostingOrganization

JSON

Inbox

Definition

The organization (airline, travelers' club, etc.) the membership is made with.

1593 hours available

https://w3id.org/class/redaktor/hoursAvailable

JSON

Inbox

Definition

The hours during which this service or contact is available.

497 href

https://w3id.org/class/redaktor/href

JSON

Inbox

Definition

The target resource pointed to by a Link.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-href

Scope Note

: Property

Example

Example 121

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Link",
  "href": "http://example.org/abc",
  "mediaType": "text/html",
  "name": "Previous"
}

498 hreflang

https://w3id.org/class/redaktor/hreflang

JSON

Inbox

Definition

Hints as to the language used by the target resource. Value MUST be a [BCP47] Language-Tag.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-hreflang

Scope Note

: Property

Example

Example 122

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Link",
  "href": "http://example.org/abc",
  "hreflang": "en",
  "mediaType": "text/html",
  "name": "Previous"
}

2007 IATA code

https://w3id.org/class/redaktor/iataCode

JSON

Inbox

Definition

IATA identifier for an airline or airport.

Exact Match

2008 icao code

https://w3id.org/class/redaktor/icaoCode

JSON

Inbox

Definition

ICAO identifier for an airport.

Exact Match

136 icon

https://w3id.org/class/redaktor/icon

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-icon

Scope Note

: Property

Example

Example 79

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "A simple note",
  "type": "Note",
  "content": "This is all there is.",
  "icon": {
    "type": "Image",
    "name": "Note icon",
    "url": "http://example.org/note.png",
    "width": 16,
    "height": 16
  }
}

101 id

https://w3id.org/class/redaktor/id

JSON

Inbox

Definition

Provides the globally unique identifier for an Object or Link.

Scope Note

: Property

Example

Example 61

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "name": "Foo",
  "id": "http://example.org/foo"
}

1544 identifier

https://w3id.org/class/redaktor/identifier

JSON

Inbox

Definition

Used by PeerTube with the Video Object as uuid and for other CV schema markup.
schema.org/identifier

Example

{
  "type": "Video",
  "id": "https://peertube2.cpy.re/videos/watch/...",
  "name": "HLS test 1",
  "duration": "PT730S",
  "uuid": "969bf103-7818-43b5-94a0-..."
}

2009 illustrator

https://w3id.org/class/redaktor/illustrator

JSON

Inbox

Definition

Illustrator eines Buches.

137 image

https://w3id.org/class/redaktor/image

JSON

Inbox

Definition

Indicates an entity that describes an image for this object. Unlike the icon property, there are no aspect ratio or display size limitations assumed.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image-term

Scope Note

: Property

Example

Example 81

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "name": "A simple note",
  "type": "Note",
  "content": "This is all there is.",
  "image": {
    "type": "Image",
    "name": "A Cat",
    "url": "http://example.org/cat.png"
  }
}

2010 in album

https://w3id.org/class/redaktor/inAlbum

JSON

Inbox

Definition

The album to which this recording belongs.

Exact Match

2011 in defined term set

https://w3id.org/class/redaktor/inDefinedTermSet

JSON

Inbox

Definition

A [[DefinedTermSet]] that contains this term.

1548 in language

https://w3id.org/class/redaktor/inLanguage

JSON

Inbox

Definition

Used by PeerTube with the Video Object. The language of the content or performance or used in an action. Please use one of the language codes from the IETF BCP 47 standard.
see schema.org/inLanguage - see also availableLanguage.

Example

{
  "type": "Video",
  "id": "https://peertube2.cpy.re/videos/watch/...",
  "name": "HLS test 1",
  "subtitleLanguage": [
    {
      "identifier": "ca",
      "name": "Catalan",
      "url": "https://peertube2.cpy.re/lazy-static/video-captions/...-ca.vtt"
    }
  ],

  // Optional
  "language": {
    "identifier": "en",
    "name": "English"
  }
}

2013 in playlist

https://w3id.org/class/redaktor/inPlaylist

JSON

Inbox

Definition

The playlist to which this recording belongs.

2369 in ProductGroup with ID

https://w3id.org/class/redaktor/inProductGroupWithID

JSON

Inbox

Definition

Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]].

138 in reply to

https://w3id.org/class/redaktor/inReplyTo

JSON

Inbox

Definition

Indicates one or more entities for which this object is considered a response.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-inreplyto

Scope Note

: Property

Example

Example 83

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "A simple note",
  "type": "Note",
  "content": "This is all there is.",
  "inReplyTo": {
    "summary": "Previous note",
    "type": "Note",
    "content": "What else is there?"
  }
}

inReplyToPolicy Proposal

https://w3id.org/class/redaktor/inReplyToPolicy

JSON

Inbox

Definition

TODO

2466 in store returns offered

https://w3id.org/class/redaktor/inStoreReturnsOffered

JSON

Inbox

Definition

Are in-store returns offered? (for more advanced return methods use the [[returnMethod]] property)

2014 in support of

https://w3id.org/class/redaktor/inSupportOf

JSON

Inbox

Definition

Qualification, candidature, degree, application that Thesis supports.

169 inbox

https://w3id.org/class/redaktor/inbox

JSON

Inbox

Definition

The inbox is discovered through the inbox property of an actor's profile. The inbox MUST be an OrderedCollection.

The inbox stream contains all activities received by the actor. The server SHOULD filter content according to the requester's permission. In general, the owner of an inbox is likely to be able to access all of their inbox contents. Depending on access control, some other content may be public, whereas other content may require authentication for non-owner users, if they can access the inbox at all.

The server MUST perform de-duplication of activities returned by the inbox. Duplication can occur if an activity is addressed both to an actor's followers, and a specific actor who also follows the recipient actor, and the server has failed to de-duplicate the recipients list. Such deduplication MUST be performed by comparing the id of the activities and dropping any activities already seen.
The inboxes of actors on federated servers accepts HTTP POST requests, with behaviour described in Delivery. Non-federated servers SHOULD return a 405 Method Not Allowed upon receipt of a POST request.
see https://www.w3.org/TR/activitypub/#inbox

Scope Note

ActivityPub Property

Example

Example 9

{
  "@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/31987aklre4"
  ]
}

2015 included composition

https://w3id.org/class/redaktor/includedComposition

JSON

Inbox

Definition

Smaller compositions included in this work (e.g. a movement in a symphony).

2318 included Data Catalog

https://w3id.org/class/redaktor/includedDataCatalog

JSON

Inbox

Definition

A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').

2323 included in Data Catalog

https://w3id.org/class/redaktor/includedInDataCatalog

JSON

Inbox

Definition

A data catalog which contains this dataset.

2016 includes attraction

https://w3id.org/class/redaktor/includesAttraction

JSON

Inbox

Definition

Attraction located at destination.

2017 includes object

https://w3id.org/class/redaktor/includesObject

JSON

Inbox

Definition

This links to a node or nodes indicating the exact quantity of the products included in an [[Offer]] or [[ProductCollection]].

2018 ineligible region

https://w3id.org/class/redaktor/ineligibleRegion

JSON

Inbox

Definition

The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed. See also [[eligibleRegion]].

2019 ingredients

https://w3id.org/class/redaktor/ingredients

JSON

Inbox

Definition

A single ingredient used in the recipe, e.g. sugar, flour or garlic.

2020 inker

https://w3id.org/class/redaktor/inker

JSON

Inbox

Definition

The individual who traces over the pencil drawings in ink after pencils are complete.

Exact Match

2021 install url

https://w3id.org/class/redaktor/installUrl

JSON

Inbox

Definition

URL at which the app may be installed, if different from the URL of the item.

2022 instructor

https://w3id.org/class/redaktor/instructor

JSON

Inbox

Definition

A person assigned to instruct or provide instructional assistance for the [[CourseInstance]].

252 instrument

https://w3id.org/class/redaktor/instrument

JSON

Inbox

Definition

Identifies one or more objects used (or to be used) in the completion of an Activity.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-instrument

Scope Note

: Property

Example

Example 85

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally listened to a piece of music on the Acme Music Service",
  "type": "Listen",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": "http://example.org/foo.mp3",
  "instrument": {
    "type": "Service",
    "name": "Acme Music Service"
  }
}

2391 interaction service

https://w3id.org/class/redaktor/interactionService

JSON

Inbox

Definition

The WebSite or SoftwareApplication where the interactions took place.

2023 interaction statistic

https://w3id.org/class/redaktor/interactionStatistic

JSON

Inbox

Definition

The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.

2390 interaction type

https://w3id.org/class/redaktor/interactionType

JSON

Inbox

Definition

The Action representing the type of interaction. For up votes, +1s, etc. use [[LikeAction]]. For down votes use [[DislikeAction]]. Otherwise, use the most specific Action.

2024 interactivity type

https://w3id.org/class/redaktor/interactivityType

JSON

Inbox

Definition

The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.

2025 interpreted as claim

https://w3id.org/class/redaktor/interpretedAsClaim

JSON

Inbox

Definition

Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]].

2026 inventory level

https://w3id.org/class/redaktor/inventoryLevel

JSON

Inbox

Definition

The current approximate inventory level for the item or items.

10526 invite

https://w3id.org/class/redaktor/invite

JSON

Inbox

2027 is accepting new patients

https://w3id.org/class/redaktor/isAcceptingNewPatients

JSON

Inbox

Definition

Whether the provider is accepting new patients.

1594 is accessible for free

https://w3id.org/class/redaktor/isAccessibleForFree

JSON

Inbox

Definition

A flag to signal that the item, event, or place is accessible for free.

2355 is accessory or spare part for

https://w3id.org/class/redaktor/isAccessoryOrSparePartFor

JSON

Inbox

Definition

A pointer to another product (or multiple products) for which this product is an accessory or spare part.

2029 is based on

https://w3id.org/class/redaktor/isBasedOn

JSON

Inbox

Definition

Werk(e), auf denen dieses Werk basiert. A resource from which this work is derived or from which it is a modification or adaption.

2030 is based on url

https://w3id.org/class/redaktor/isBasedOnUrl

JSON

Inbox

Definition

A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.

2368 is consumable for

https://w3id.org/class/redaktor/isConsumableFor

JSON

Inbox

Definition

A pointer to another product (or multiple products) for which this product is a consumable.

2031 is family friendly

https://w3id.org/class/redaktor/isFamilyFriendly

JSON

Inbox

Definition

Indicates whether this content is family friendly.

1549 is Live Broadcast

https://w3id.org/class/redaktor/isLiveBroadcast

JSON

Inbox

Definition

Used by PeerTube with the Video Object. True if the broadcast is of a live event.

2033 is part of

https://w3id.org/class/redaktor/isPartOf

JSON

Inbox

Definition

Serie oder Reihe (geordnete Folge gleichartiger Elemente), die das Subjekt enthält (TV-Serie, Buchreihe, Produktreihe etc.)

2034 is plan for apartment

https://w3id.org/class/redaktor/isPlanForApartment

JSON

Inbox

Definition

Indicates some accommodation that this floor plan describes.

2035 is related to

https://w3id.org/class/redaktor/isRelatedTo

JSON

Inbox

Definition

A pointer to another, somehow related product (or multiple products).

2036 is similar to

https://w3id.org/class/redaktor/isSimilarTo

JSON

Inbox

Definition

A pointer to another, functionally similar product (or multiple products).

2366 is variant of

https://w3id.org/class/redaktor/isVariantOf

JSON

Inbox

Definition

Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group.

2037 ISBN

https://w3id.org/class/redaktor/isbn

JSON

Inbox

Definition

The ISBN of the book.

Exact Match

2038 isic v4

https://w3id.org/class/redaktor/isicV4

JSON

Inbox

Definition

The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.

Exact Match

2039 iso6523 code

https://w3id.org/class/redaktor/iso6523Code

JSON

Inbox

Definition

An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as leiCode, duns and vatID can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly.

2040 ISRC code

https://w3id.org/class/redaktor/isrcCode

JSON

Inbox

Definition

The International Standard Recording Code for the recording.

Exact Match

2041 ISSN

https://w3id.org/class/redaktor/issn

JSON

Inbox

Definition

The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.

Exact Match

2042 issue number

https://w3id.org/class/redaktor/issueNumber

JSON

Inbox

Definition

Identifies the issue of publication; for example, “iii” or “2”.

2043 issued by

https://w3id.org/class/redaktor/issuedBy

JSON

Inbox

Definition

The organization issuing the ticket or permit.

Exact Match

2044 ISWC code

https://w3id.org/class/redaktor/iswcCode

JSON

Inbox

Definition

The International Standard Musical Work Code for the composition.

Exact Match

2045 item

https://w3id.org/class/redaktor/item

JSON

Inbox

Definition

An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')’.

Exact Match

2046 item condition

https://w3id.org/class/redaktor/itemCondition

JSON

Inbox

Definition

A predefined value from OfferItemCondition specifying the condition of the product or service, or the products or services included in the offer. Also used for product return policies to specify the condition of products accepted for returns.

2465 item defect return fees

https://w3id.org/class/redaktor/itemDefectReturnFees

JSON

Inbox

Definition

The type of return fees for returns of defect products.

2467 item defect return label source

https://w3id.org/class/redaktor/itemDefectReturnLabelSource

JSON

Inbox

Definition

The method (from an enumeration) by which the customer obtains a return shipping label for a defect product.

2464 item defect return shipping fees amount

https://w3id.org/class/redaktor/itemDefectReturnShippingFeesAmount

JSON

Inbox

Definition

Amount of shipping costs for defect product returns. Applicable when property [[itemDefectReturnFees]] equals [[ReturnShippingFees]].

2047 item list element

https://w3id.org/class/redaktor/itemListElement

JSON

Inbox

Definition

no label in language

2048 item list order

https://w3id.org/class/redaktor/itemListOrder

JSON

Inbox

Definition

Type of ordering (e.g. Ascending, Descending, Unordered).

2401 item location

https://w3id.org/class/redaktor/itemLocation

JSON

Inbox

Definition

Current location of the item.

2049 item offered

https://w3id.org/class/redaktor/itemOffered

JSON

Inbox

Definition

An item being offered (or demanded). The transactional nature of the offer or demand is documented using [[businessFunction]], e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.

2376 item reviewed

https://w3id.org/class/redaktor/itemReviewed

JSON

Inbox

Definition

The item that is being reviewed/rated.

2489 item shipped

https://w3id.org/class/redaktor/itemShipped

JSON

Inbox

Definition

Item(s) being shipped.

613 items

https://w3id.org/class/redaktor/items

JSON

Inbox

Definition

Identifies the items contained in a collection. The items might be ordered or unordered. For Ordered Collections use :orderedItems
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-items

Scope Note

: Property

Example

Example 89

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally's notes",
  "type": "Collection",
  "totalItems": 2,
  "items": [
    {
      "type": "Note",
      "name": "Reminder for Going-Away Party"
    },
    {
      "type": "Note",
      "name": "Meeting 2016-11-17"
    }
  ]
}

2050 itinerary

https://w3id.org/class/redaktor/itinerary

JSON

Inbox

Definition

Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is important use [[ItemList]] to specify that order (see examples).

Exact Match

2051 job title

https://w3id.org/class/redaktor/jobTitle

JSON

Inbox

Definition

The job title of the person (for example, Financial Manager).

Exact Match

2450 jurisdiction

https://w3id.org/class/redaktor/jurisdiction

JSON

Inbox

Definition

Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.

2052 keywords

https://w3id.org/class/redaktor/keywords

JSON

Inbox

Definition

Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.

Exact Match

2425 known vehicle damages

https://w3id.org/class/redaktor/knownVehicleDamages

JSON

Inbox

Definition

A textual description of known damages, both repaired and unrepaired.

2053 knows

https://w3id.org/class/redaktor/knows

JSON

Inbox

Definition

The most generic bi-directional social/work relation.

Exact Match

2054 knows about

https://w3id.org/class/redaktor/knowsAbout

JSON

Inbox

Definition

Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.

2055 knows language

https://w3id.org/class/redaktor/knowsLanguage

JSON

Inbox

Definition

Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the IETF BCP 47 standard.

614 last

https://w3id.org/class/redaktor/last

JSON

Inbox

Definition

In a paged Collection, indicates the furthest proceeding page of the collection.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-last

Scope Note

: Property

Example

Example 86

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "A collection",
  "type": "Collection",
  "totalItems": 3,
  "last": "http://example.org/collection?page=1"
}

3193 latitude

https://w3id.org/class/redaktor/latitude

JSON

Inbox

Scope Note

: Property

Example

Example 124

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Place",
  "name": "Fresno Area",
  "latitude": 36.75,
  "longitude": 119.7667,
  "radius": 15,
  "units": "miles"
}

2056 layout image

https://w3id.org/class/redaktor/layoutImage

JSON

Inbox

Definition

A schematic image showing the floorplan layout.

2057 learning resource type

https://w3id.org/class/redaktor/learningResourceType

JSON

Inbox

Definition

The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.

2058 lease length

https://w3id.org/class/redaktor/leaseLength

JSON

Inbox

Definition

Length of the lease for some [[Accommodation]], either particular to some [[Offer]] or in some cases intrinsic to the property.

2059 legal name

https://w3id.org/class/redaktor/legalName

JSON

Inbox

Definition

The official name of the organization, e.g. the registered company name.

Exact Match

2060 lei code

https://w3id.org/class/redaktor/leiCode

JSON

Inbox

Definition

An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.

Exact Match

c5 Lemmy

https://w3id.org/class/redaktor/lemmy

JSON

Inbox

Definition

Lemmy

2061 letterer

https://w3id.org/class/redaktor/letterer

JSON

Inbox

Definition

The individual who adds lettering, including speech balloons and sound effects, to artwork.

1546 license

https://w3id.org/class/redaktor/license

JSON

Inbox

Definition

Used by PeerTube with the Video Object as 'licence'. Possible value there:
{ "identifier": "1", "name": "Attribution" },
{ "identifier": "2", "name": "Attribution - Share Alike" },
{ "identifier": "3", "name": "Attribution - No Derivatives" },
{ "identifier": "4", "name": "Attribution - Non Commercial" },
{ "identifier": "5", "name": "Attribution - Non Commercial - Share Alike" },
{ "identifier": "6", "name": "Attribution - Non Commercial - No Derivatives" },
{ "identifier": "7", "name": "Public Domain Dedication" }
see also schema.org/license

Example

{
  "type": "Video",
  "id": "https://peertube2.cpy.re/videos/watch/...",
  "name": "HLS test 1",
  "category": {
    "identifier": "2", // Internal PeerTube ID
    "name": "Films"
  },
  "license": {
    "identifier": "5", // Internal PeerTube ID
    "name": "Attribution - Non Commercial - Share Alike"
  }
}

Exact Match

167 liked

https://w3id.org/class/redaktor/liked

JSON

Inbox

Definition

Every actor SHOULD have a liked collection. liked collection. This is a list of every object from all of the actor's Like activities, added as a side effect. The liked collection MUST be either an OrderedCollection or a Collection and MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given.
see https://www.w3.org/TR/activitypub/#liked

Scope Note

ActivityPub Property

Example

Example 9

{
  "@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/31987aklre4"
  ]
}

168 has likes

https://w3id.org/class/redaktor/likes

JSON

Inbox

Definition

Every object MAY have a likes collection. This is a list of all Like activities with this object as the object property, added as a side effect. The likes collection MUST be either an OrderedCollection or a Collection and MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given.

NOTE
Care should be taken to not confuse the the likes collection with the similarly named but different liked collection. In sum:
- liked: Specifically a property of actors. This is a collection of Like activities performed by the actor, added to the collection as a side effect of delivery to the outbox.
-likes: May be a property of any object. This is a collection of Like activities referencing this object, added to the collection as a side effect of delivery to the inbox.
see https://www.w3.org/TR/activitypub/#likes

Scope Note

ActivityPub Property

2063 line

https://w3id.org/class/redaktor/line

JSON

Inbox

Definition

A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.

Exact Match

c2 Pleroma

https://w3id.org/class/redaktor/litepubPleroma

JSON

Inbox

Definition

Pleroma

Alt Label

  • litepub

1526 live save replay

https://w3id.org/class/redaktor/liveSaveReplay

JSON

Inbox

Definition

If this is a live, tell if the user will save a replay or not.
see peertube documentation

Scope Note

ActivityPub Community

Example

{
  "type": "Video",
  "isLiveBroadcast": true,
  "liveSaveReplay": true,
  "permanentLive": true
}

139 location

https://w3id.org/class/redaktor/location

JSON

Inbox

Definition

Indicates one or more physical or logical locations associated with the object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-location

Scope Note

: Property

Example

Example 88

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Person",
  "name": "Sally",
  "location": {
    "name": "Over the Arabian Sea, east of Socotra Island Nature Sanctuary",
    "type": "Place",
    "longitude": 12.34,
    "latitude": 56.78,
    "altitude": 90,
    "units": "m"
  }
}

2065 location created

https://w3id.org/class/redaktor/locationCreated

JSON

Inbox

Definition

The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.

3194 longitude

https://w3id.org/class/redaktor/longitude

JSON

Inbox

Scope Note

: Property

Example

Example 125

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Place",
  "name": "Fresno Area",
  "latitude": 36.75,
  "longitude": 119.7667,
  "radius": 15,
  "units": "miles"
}

2067 lyricist

https://w3id.org/class/redaktor/lyricist

JSON

Inbox

Definition

The person who wrote the words.

Exact Match

2068 lyrics

https://w3id.org/class/redaktor/lyrics

JSON

Inbox

Definition

The words in the song.

Exact Match

2069 main entity

https://w3id.org/class/redaktor/mainEntity

JSON

Inbox

Definition

Indicates the primary entity described in some page or other CreativeWork.

2070 maintainer

https://w3id.org/class/redaktor/maintainer

JSON

Inbox

Definition

A maintainer of a [[Dataset]], software package ([[SoftwareApplication]]), or other [[Project]]. A maintainer is a [[Person]] or [[Organization]] that manages contributions to, and/or publication of, some (typically complex) artifact. It is common for distributions of software and data to be based on “upstream” sources. When [[maintainer]] is applied to a specific version of something e.g. a particular version or packaging of a [[Dataset]], it is always possible that the upstream source has a different maintainer. The [[isBasedOn]] property can be used to indicate such relationships between datasets to make the different maintenance roles clear. Similarly in the case of software, a package may have dedicated maintainers working on integration into software distributions such as Ubuntu, as well as upstream maintainers of the underlying work.

2071 makes offer

https://w3id.org/class/redaktor/makesOffer

JSON

Inbox

Definition

A pointer to products or services offered by the organization or person.

157 manually approves followers

https://w3id.org/class/redaktor/manuallyApprovesFollowers

JSON

Inbox

Definition

When true, conveys that for this actor, follow requests are not usually automatically approved, but instead are examined by a person who may accept or reject the request, at some time in the future. Setting of false conveys no information and may be ignored. This information is typically used to affect display of accounts, such as showing an account as private or locked.
see w3 wiki or documentation

Scope Note

: Extension

2367 manufacturer

https://w3id.org/class/redaktor/manufacturer

JSON

Inbox

Definition

The manufacturer of the product.

2072 map type

https://w3id.org/class/redaktor/mapType

JSON

Inbox

Definition

Indicates the kind of Map, from the MapCategoryType Enumeration.

Exact Match

2343 margin OfError

https://w3id.org/class/redaktor/marginOfError

JSON

Inbox

Definition

A marginOfError for an [[Observation]].

2073 masthead

https://w3id.org/class/redaktor/masthead

JSON

Inbox

Definition

For a [[NewsMediaOrganization]], a link to the masthead page or a page listing top editorial management.

Exact Match

c1 Mastodon

https://w3id.org/class/redaktor/mastodon

JSON

Inbox

Definition

Mastodon

2074 material

https://w3id.org/class/redaktor/material

JSON

Inbox

Definition

A material that something is made from, e.g. leather, wool, cotton, paper.

Exact Match

2075 material extent

https://w3id.org/class/redaktor/materialExtent

JSON

Inbox

Definition

The quantity of the materials being described or an expression of the physical space they occupy.

2076 math expression

https://w3id.org/class/redaktor/mathExpression

JSON

Inbox

Definition

A mathematical expression (e.g. 'x^2-3x=0') that may be solved for a specific variable, simplified, or transformed. This can take many formats, e.g. LaTeX, Ascii-Math, or math as you would write with a keyboard.

2325 max. Price

https://w3id.org/class/redaktor/maxPrice

JSON

Inbox

Definition

The highest price if the price is a range.

Exact Match

2312 max value

https://w3id.org/class/redaktor/maxValue

JSON

Inbox

Definition

The upper value of some characteristic or property.

Exact Match

1569 maximum attendee capacity

https://w3id.org/class/redaktor/maximumAttendeeCapacity

JSON

Inbox

Definition

The total number of individuals that may attend an event or venue.

1497 maximum physical attendee capacity

https://w3id.org/class/redaktor/maximumPhysicalAttendeeCapacity

JSON

Inbox

1498 maximum virtual attendee capacity

https://w3id.org/class/redaktor/maximumVirtualAttendeeCapacity

JSON

Inbox

2077 meal service

https://w3id.org/class/redaktor/mealService

JSON

Inbox

Definition

Description of the meals that will be provided or available for purchase.

2341 measured property

https://w3id.org/class/redaktor/measuredProperty

JSON

Inbox

Definition

The measuredProperty of an [[Observation]], either a schema.org property, a property from other RDF-compatible systems e.g. W3C RDF Data Cube, or schema.org extensions such as GS1's.

2339 measured value

https://w3id.org/class/redaktor/measuredValue

JSON

Inbox

Definition

The measuredValue of an [[Observation]].

2320 measurement technique

https://w3id.org/class/redaktor/measurementTechnique

JSON

Inbox

140 media type

https://w3id.org/class/redaktor/mediaType

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mediatype

Scope Note

: Property

Example

Example 126

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Link",
  "href": "http://example.org/abc",
  "hreflang": "en",
  "mediaType": "text/html",
  "name": "Next"
}

2078 medical audience

https://w3id.org/class/redaktor/medicalAudience

JSON

Inbox

Definition

Medical audience for page.

2079 medical specialty

https://w3id.org/class/redaktor/medicalSpecialty

JSON

Inbox

Definition

A medical specialty of the provider.

2441 meets emission standard

https://w3id.org/class/redaktor/meetsEmissionStandard

JSON

Inbox

Definition

Indicates that the vehicle meets the respective emission standard.

2080 member

https://w3id.org/class/redaktor/member

JSON

Inbox

Definition

A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.

Exact Match

2081 member of

https://w3id.org/class/redaktor/memberOf

JSON

Inbox

Definition

An Organization (or ProgramMembership) to which this Person or Organization belongs.

Exact Match

2082 members

https://w3id.org/class/redaktor/members

JSON

Inbox

Definition

A member of this organization.

Exact Match

2083 membership number

https://w3id.org/class/redaktor/membershipNumber

JSON

Inbox

Definition

A unique identifier for the membership.

2084 membership points earned

https://w3id.org/class/redaktor/membershipPointsEarned

JSON

Inbox

Definition

The number of membership points earned by the member. If necessary, the unitText can be used to express the units the points are issued in. (e.g. stars, miles, etc.)

2085 memory requirements

https://w3id.org/class/redaktor/memoryRequirements

JSON

Inbox

Definition

Minimum memory requirements.

2086 mentions

https://w3id.org/class/redaktor/mentions

JSON

Inbox

Definition

Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.
Also Personen oder Objekte, die in der Inschrift erwähnt werden. Für die zukünftige Verwendung für Wikimedia Commons.

2087 menu

https://w3id.org/class/redaktor/menu

JSON

Inbox

Definition

Either the actual menu as a structured representation, as text, or a URL of the menu.

Exact Match

2372 menu AddOn

https://w3id.org/class/redaktor/menuAddOn

JSON

Inbox

Definition

Additional menu item(s) such as a side dish of salad or side order of fries that can be added to this menu item. Additionally it can be a menu section containing allowed add-on menu items for this menu item.

Exact Match

2472 merchant return days

https://w3id.org/class/redaktor/merchantReturnDays

JSON

Inbox

Definition

Specifies either a fixed return date or the number of days (from the delivery date) that a product can be returned. Used when the [[returnPolicyCategory]] property is specified as [[MerchantReturnFiniteReturnWindow]].

2436 mileage from Odometer

https://w3id.org/class/redaktor/mileageFromOdometer

JSON

Inbox

Definition

The total distance travelled by the particular vehicle since its initial production, as read from its odometer.

Typical unit code(s): KMT for kilometers, SMI for statute miles

2324 min. price

https://w3id.org/class/redaktor/minPrice

JSON

Inbox

Definition

The lowest price if the price is a range.

Exact Match

2314 min. value

https://w3id.org/class/redaktor/minValue

JSON

Inbox

Definition

The lower value of some characteristic or property.

Exact Match

2088 mission coverage priorities policy

https://w3id.org/class/redaktor/missionCoveragePrioritiesPolicy

JSON

Inbox

Definition

For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues.

c4 Mobilizon

https://w3id.org/class/redaktor/mobilizon

JSON

Inbox

Definition

Mobilizon

2370 model

https://w3id.org/class/redaktor/model

JSON

Inbox

Definition

The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.

Exact Match

2429 model date

https://w3id.org/class/redaktor/modelDate

JSON

Inbox

Definition

The release date of a vehicle model (often used to differentiate versions of the same make and model).

Exact Match

10523 moderated

https://w3id.org/class/redaktor/moderated

JSON

Inbox

158 moved to

https://w3id.org/class/redaktor/movedTo

JSON

Inbox

Definition

Required for Move activity in mastodon
see minutes or documentation

Scope Note

: Extension

2089 mpn

https://w3id.org/class/redaktor/mpn

JSON

Inbox

Definition

The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.

Exact Match

2090 music arrangement

https://w3id.org/class/redaktor/musicArrangement

JSON

Inbox

Definition

An arrangement derived from the composition.

2091 music by

https://w3id.org/class/redaktor/musicBy

JSON

Inbox

Definition

The composer of the soundtrack.

Exact Match

2092 music composition form

https://w3id.org/class/redaktor/musicCompositionForm

JSON

Inbox

Definition

The type of composition (e.g. overture, sonata, symphony, etc.).

2093 music group member

https://w3id.org/class/redaktor/musicGroupMember

JSON

Inbox

Definition

A member of a music group&#x2014;for example, John, Paul, George, or Ringo.

2094 musical key

https://w3id.org/class/redaktor/musicalKey

JSON

Inbox

Definition

The key, mode, or scale this composition uses.

2095 naics

https://w3id.org/class/redaktor/naics

JSON

Inbox

Definition

The North American Industry Classification System (NAICS) code for a particular organization or business person.

Exact Match

117 name

https://w3id.org/class/redaktor/name

JSON

Inbox

Definition

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 (see "nameMap").
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-name

Scope Note

: Property

Example

Example 117

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Note",
  "name": "A simple note"
}

Related

118 name map

https://w3id.org/class/redaktor/nameMap

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-name

Scope Note

: Property

Alt Label

  • multi-language name

Example

[Example 118](https://www.w3.org/TR/activitystreams-vocabulary/#ex133-jsonld)
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Note",
  "nameMap": {
    "en": "A simple note",
    "es": "Una nota sencilla",
    "zh-Hans": "一段简单的笔记"
  }
}

Related

2096 nationality

https://w3id.org/class/redaktor/nationality

JSON

Inbox

Definition

Nationality of the person.

2497 negative notes

https://w3id.org/class/redaktor/negativeNotes

JSON

Inbox

Definition

Indicates, in the context of a [[Review]] (e.g. framed as 'pro' vs 'con' considerations), negative considerations - either as unstructured text, or a list.

2097 net worth

https://w3id.org/class/redaktor/netWorth

JSON

Inbox

Definition

The total financial value of the person as calculated by subtracting assets from liabilities.

Exact Match

2098 news updates and guidelines

https://w3id.org/class/redaktor/newsUpdatesAndGuidelines

JSON

Inbox

Definition

Indicates a page with news updates and guidelines. This could often be (but is not required to be) the main page containing [[SpecialAnnouncement]] markup on a site.

797 next

https://w3id.org/class/redaktor/next

JSON

Inbox

Definition

In a paged Collection, indicates the next page of items.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-next

Scope Note

: Property

Example

Example 95

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Page 2 of Sally's blog posts",
  "type": "CollectionPage",
  "next": "http://example.org/collection?page=2",
  "items": [
    "http://example.org/posts/1",
    "http://example.org/posts/2",
    "http://example.org/posts/3"
  ]
}

2099 next item

https://w3id.org/class/redaktor/nextItem

JSON

Inbox

Definition

A link to the ListItem that follows the current one.

Exact Match

2100 no bylines policy

https://w3id.org/class/redaktor/noBylinesPolicy

JSON

Inbox

Definition

For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement explaining when authors of articles are not named in bylines.

2101 nonprofit status

https://w3id.org/class/redaktor/nonprofitStatus

JSON

Inbox

Definition

nonprofit Status indicates the legal status of a non-profit organization in its primary place of business.

2356 nsn

https://w3id.org/class/redaktor/nsn

JSON

Inbox

Definition

Indicates the NATO stock number (nsn) of a [[Product]].

Exact Match

2102 num tracks

https://w3id.org/class/redaktor/numTracks

JSON

Inbox

Definition

The number of tracks in this album or playlist.

Exact Match

2103 number of accommodation units

https://w3id.org/class/redaktor/numberOfAccommodationUnits

JSON

Inbox

Definition

Indicates the total (available plus unavailable) number of accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAvailableAccommodationUnits]].

2419 number of airbags

https://w3id.org/class/redaktor/numberOfAirbags

JSON

Inbox

Definition

The number or type of airbags in the vehicle.

2104 number of available accommodation units

https://w3id.org/class/redaktor/numberOfAvailableAccommodationUnits

JSON

Inbox

Definition

Indicates the number of available accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAccommodationUnits]].

2428 number of axles

https://w3id.org/class/redaktor/numberOfAxles

JSON

Inbox

Definition

The number of axles.

Typical unit code(s): C62

2105 number of bathrooms total

https://w3id.org/class/redaktor/numberOfBathroomsTotal

JSON

Inbox

Definition

The total integer number of bathrooms in a some [[Accommodation]], following real estate conventions as documented in RESO: “The simple sum of the number of bathrooms. For example for a property with two Full Bathrooms and one Half Bathroom, the Bathrooms Total Integer will be 3.”. See also [[numberOfRooms]].

2106 number of bedrooms

https://w3id.org/class/redaktor/numberOfBedrooms

JSON

Inbox

Definition

The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]].

2399 number of beds

https://w3id.org/class/redaktor/numberOfBeds

JSON

Inbox

Definition

The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.

2107 number of credits

https://w3id.org/class/redaktor/numberOfCredits

JSON

Inbox

Definition

The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram.

2430 number of doors

https://w3id.org/class/redaktor/numberOfDoors

JSON

Inbox

Definition

The number of doors.

Typical unit code(s): C62

2108 number of employees

https://w3id.org/class/redaktor/numberOfEmployees

JSON

Inbox

Definition

The number of employees in an organization e.g. business.

2306 number of episodes

https://w3id.org/class/redaktor/numberOfEpisodes

JSON

Inbox

Definition

The number of episodes in this season or series.

2413 number of forward gears

https://w3id.org/class/redaktor/numberOfForwardGears

JSON

Inbox

Definition

The total number of forward gears available for the transmission system of the vehicle.

Typical unit code(s): C62

2109 number of full bathrooms

https://w3id.org/class/redaktor/numberOfFullBathrooms

JSON

Inbox

Definition

Number of full bathrooms - The total number of full and ¾ bathrooms in an [[Accommodation]]. This corresponds to the BathroomsFull field in RESO.

2110 number of items

https://w3id.org/class/redaktor/numberOfItems

JSON

Inbox

Definition

The number of items in an ItemList. Note that some descriptions might not fully describe all items in a list (e.g., multi-page pagination); in such cases, the numberOfItems would be for the entire list.

2111 number of pages

https://w3id.org/class/redaktor/numberOfPages

JSON

Inbox

Definition

The number of pages in the book.

2112 number of partial bathrooms

https://w3id.org/class/redaktor/numberOfPartialBathrooms

JSON

Inbox

Definition

Number of partial bathrooms - The total number of half and ¼ bathrooms in an [[Accommodation]]. This corresponds to the BathroomsPartial field in RESO.

2113 number of players

https://w3id.org/class/redaktor/numberOfPlayers

JSON

Inbox

Definition

Indicate how many people can play this game (minimum, maximum, or range).

2415 number of previous owners

https://w3id.org/class/redaktor/numberOfPreviousOwners

JSON

Inbox

Definition

The number of owners of the vehicle, including the current one.

Typical unit code(s): C62

2114 number of rooms

https://w3id.org/class/redaktor/numberOfRooms

JSON

Inbox

Definition

The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.
Typical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue.

2307 number of seasons

https://w3id.org/class/redaktor/numberOfSeasons

JSON

Inbox

Definition

The number of seasons in this series.

2115 nutrition

https://w3id.org/class/redaktor/nutrition

JSON

Inbox

Definition

Nutrition information about the recipe or menu item.

Exact Match

176 OAuth Authorization Endpoint

https://w3id.org/class/redaktor/oauthAuthorizationEndpoint

JSON

Inbox

Definition

If OAuth 2.0 bearer tokens [RFC6749] [RFC6750] are being used for authenticating client to server interactions, this endpoint specifies a URI at which a browser-authenticated user may obtain a new authorization grant.

1539 OAuth Registration Endpoint

https://w3id.org/class/redaktor/oauthRegistrationEndpoint

JSON

Inbox

Definition

Points to MastodonAPI /api/v1/apps for now.
see https://docs.joinmastodon.org/methods/apps/
see Pleroma documentation

177 OAuth Token Endpoint

https://w3id.org/class/redaktor/oauthTokenEndpoint

JSON

Inbox

Definition

If OAuth 2.0 bearer tokens [RFC6749] [RFC6750] are being used for authenticating client to server interactions, this endpoint specifies a URI at which a client may acquire an access token.

251 object

https://w3id.org/class/redaktor/object

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object-term

Scope Note

: Property

Example

Example 97

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally liked a post",
  "type": "Like",
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1"
}

2342 observation date

https://w3id.org/class/redaktor/observationDate

JSON

Inbox

Definition

The observationDate of an [[Observation]].

2340 observed node

https://w3id.org/class/redaktor/observedNode

JSON

Inbox

Definition

The observedNode of an [[Observation]], often a [[StatisticalPopulation]].

2116 occupancy

https://w3id.org/class/redaktor/occupancy

JSON

Inbox

Definition

The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).
Typical unit code(s): C62 for person

Exact Match

2481 occupation location

https://w3id.org/class/redaktor/occupationLocation

JSON

Inbox

Definition

The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions.

2486 occupational category

https://w3id.org/class/redaktor/occupationalCategory

JSON

Inbox

Definition

A category describing the job, preferably using a term from a taxonomy such as BLS O*NET-SOC, ISCO-08 or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided. Note: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.

2117 occupational credential awarded

https://w3id.org/class/redaktor/occupationalCredentialAwarded

JSON

Inbox

Definition

A description of the qualification, award, certificate, diploma or other occupational credential awarded as a consequence of successful completion of this course or program.

2118 offered by

https://w3id.org/class/redaktor/offeredBy

JSON

Inbox

Definition

A pointer to the organization or person making the offer.

Exact Match

2119 offers

https://w3id.org/class/redaktor/offers

JSON

Inbox

Definition

An offer to provide this item&#x2014;for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use [[businessFunction]] to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a [[Demand]]. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.

Exact Match

5123 one of

https://w3id.org/class/redaktor/oneOf

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-oneof

Scope Note

: Property

Example

Example 91

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Question",
  "name": "What is the answer?",
  "oneOf": [
    {
      "type": "Note",
      "name": "Option A"
    },
    {
      "type": "Note",
      "name": "Option B"
    }
  ]
}

2120 opening hours

https://w3id.org/class/redaktor/openingHours

JSON

Inbox

Definition

The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'. * Days are specified using the following two-letter combinations: Mo, Tu, We, Th, Fr, Sa, Su.

  • Times are specified using 24:00 format. For example, 3pm is specified as 15:00, 10am as 10:00.
  • Here is an example: <time itemprop=“openingHours“ datetime=“Tu,Th 16:00-20:00“>Tuesdays and Thursdays 4-8pm</time>.
  • If a business is open 7 days a week, then it can be specified as <time itemprop=“openingHours“ datetime=“Mo-Su“>Monday through Sunday, all day</time>.

2381 opens

https://w3id.org/class/redaktor/opens

JSON

Inbox

Definition

The opening hour of the place or service on the given day(s) of the week.

Exact Match

2121 operating system

https://w3id.org/class/redaktor/operatingSystem

JSON

Inbox

Definition

Operating systems supported (Windows 7, OSX 10.6, Android 1.6).

2122 order delivery

https://w3id.org/class/redaktor/orderDelivery

JSON

Inbox

Definition

The delivery of the parcel related to this order or order item.

2123 order item number

https://w3id.org/class/redaktor/orderItemNumber

JSON

Inbox

Definition

The identifier of the order item.

2124 order item status

https://w3id.org/class/redaktor/orderItemStatus

JSON

Inbox

Definition

The current status of the order item.

2125 order quantity

https://w3id.org/class/redaktor/orderQuantity

JSON

Inbox

Definition

The number of the item ordered. If the property is not set, assume the quantity is one.

2126 ordered item

https://w3id.org/class/redaktor/orderedItem

JSON

Inbox

Definition

The item ordered.

615 ordered items

https://w3id.org/class/redaktor/orderedItems

JSON

Inbox

Definition

Identifies the items contained in an ordered collection.
See higher-level definition https://www.w3.org/TR/activitystreams-vocabulary/#dfn-items

Scope Note

: Property

Example

[Example 90](https://www.w3.org/TR/activitystreams-vocabulary/#ex92-jsonld)
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally's notes",
  "type": "OrderedCollection",
  "totalItems": 2,
  "orderedItems": [
    {
      "type": "Note",
      "name": "Meeting 2016-11-17"
    },
    {
      "type": "Note",
      "name": "Reminder for Going-Away Party"
    }
  ]
}

Related

252 origin

https://w3id.org/class/redaktor/origin

JSON

Inbox

Definition

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".
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-origin

Scope Note

: Property

Example

Example 94

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally moved a post from List A to List B",
  "type": "Move",
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "target": {
    "type": "Collection",
    "name": "List B"
  },
  "origin": {
    "type": "Collection",
    "name": "List A"
  }
}

2487 origin address

https://w3id.org/class/redaktor/originAddress

JSON

Inbox

Definition

Shipper's address.

170 outbox

https://w3id.org/class/redaktor/outbox

JSON

Inbox

Definition

The outbox is discovered through the outbox property of an actor's profile. The outbox MUST be an OrderedCollection.

The outbox stream contains activities the user has published, subject to the ability of the requestor to retrieve the activity (that is, the contents of the outbox are filtered by the permissions of the person reading it). If a user submits a request without Authorization the server should respond with all of the Public posts. This could potentially be all relevant objects published by the user, though the number of available items is left to the discretion of those implementing and deploying the server.

The outbox accepts HTTP POST requests, with behaviour described in Client to Server Interactions.
see https://www.w3.org/TR/activitypub/#inbox

Scope Note

ActivityPub Property

Example

Example 9

{
  "@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/31987aklre4"
  ]
}

2510 owned From

https://w3id.org/class/redaktor/ownedFrom

JSON

Inbox

Definition

The date and time of obtaining the product.

Exact Match

2513 owned Through

https://w3id.org/class/redaktor/ownedThrough

JSON

Inbox

Definition

The date and time of giving up ownership on the product.

2127 ownership funding info

https://w3id.org/class/redaktor/ownershipFundingInfo

JSON

Inbox

Definition

For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence. Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.

2128 owns

https://w3id.org/class/redaktor/owns

JSON

Inbox

Definition

Products owned by the organization or person.

Exact Match

2129 page end

https://w3id.org/class/redaktor/pageEnd

JSON

Inbox

Definition

The page on which the work ends; for example “138” or “xvi”.

Exact Match

2130 page start

https://w3id.org/class/redaktor/pageStart

JSON

Inbox

Definition

The page on which the work starts; for example “135” or “xiii”.

Exact Match

2131 pagination

https://w3id.org/class/redaktor/pagination

JSON

Inbox

Definition

Any description of pages that is not separated into pageStart and pageEnd; for example, “1-6, 9, 55” or “10-12, 46-49”.

2132 parent

https://w3id.org/class/redaktor/parent

JSON

Inbox

Definition

A parent of this person.

Exact Match

2133 parent organization

https://w3id.org/class/redaktor/parentOrganization

JSON

Inbox

Definition

The larger organization that this organization is a [[subOrganization]] of, if any.

2452 parent service

https://w3id.org/class/redaktor/parentService

JSON

Inbox

Definition

A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.

2134 parents

https://w3id.org/class/redaktor/parents

JSON

Inbox

Definition

A parents of the person.

Exact Match

798 part of

https://w3id.org/class/redaktor/partOf

JSON

Inbox

Definition

Identifies the Collection to which a CollectionPage objects items belong.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-partof

Scope Note

: Property

Example

Example 123

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Page 1 of Sally's notes",
  "type": "CollectionPage",
  "id": "http://example.org/collection?page=1",
  "partOf": "http://example.org/collection",
  "items": [
    {
      "type": "Note",
      "name": "Pizza Toppings to Try"
    },
    {
      "type": "Note",
      "name": "Thought about California"
    }
  ]
}

2135 part of episode

https://w3id.org/class/redaktor/partOfEpisode

JSON

Inbox

Definition

The episode to which this clip belongs.

2495 part of order

https://w3id.org/class/redaktor/partOfOrder

JSON

Inbox

Definition

The overall order the items in this delivery were included in.

2136 part of season

https://w3id.org/class/redaktor/partOfSeason

JSON

Inbox

Definition

The season to which this episode belongs.

2137 part of series

https://w3id.org/class/redaktor/partOfSeries

JSON

Inbox

Definition

The series to which this episode or season belongs.

2138 part of TV series

https://w3id.org/class/redaktor/partOfTVSeries

JSON

Inbox

Definition

The TV series to which this episode or season belongs.

2139 part of trip

https://w3id.org/class/redaktor/partOfTrip

JSON

Inbox

Definition

Identifies that this [[Trip]] is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip.

2140 pattern

https://w3id.org/class/redaktor/pattern

JSON

Inbox

Definition

A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported.

Exact Match

2423 payload

https://w3id.org/class/redaktor/payload

JSON

Inbox

Definition

The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.

Typical unit code(s): KGM for kilogram, LBR for pound

  • Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of [[weight]] and [[payload]]
  • Note 2: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.
  • Note 3: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].
  • Note 4: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.

Exact Match

2141 payment accepted

https://w3id.org/class/redaktor/paymentAccepted

JSON

Inbox

Definition

Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.

c3 PeerTube

https://w3id.org/class/redaktor/peertube

JSON

Inbox

Definition

PeerTube

2142 penciler

https://w3id.org/class/redaktor/penciler

JSON

Inbox

Definition

The individual who draws the primary narrative artwork.

Exact Match

2143 perform time

https://w3id.org/class/redaktor/performTime

JSON

Inbox

Definition

The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in ISO 8601 duration format.

2144 performer in

https://w3id.org/class/redaktor/performerIn

JSON

Inbox

Definition

Event that this person is a performer or participant in.

1527 permanent live

https://w3id.org/class/redaktor/permanentLive

JSON

Inbox

Definition

If this is a live, tell if this is a permanent live or not.
see peertube documentation

Scope Note

ActivityPub Community

Example

{
  "type": "Video",
  "isLiveBroadcast": true,
  "liveSaveReplay": true,
  "permanentLive": true
}

2145 permissions

https://w3id.org/class/redaktor/permissions

JSON

Inbox

Definition

Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).

2146 permitted usage

https://w3id.org/class/redaktor/permittedUsage

JSON

Inbox

Definition

Indications regarding the permitted usage of the accommodation.

2147 pets allowed

https://w3id.org/class/redaktor/petsAllowed

JSON

Inbox

Definition

Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.

2148 play mode

https://w3id.org/class/redaktor/playMode

JSON

Inbox

Definition

Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.

Exact Match

2349 player type

https://w3id.org/class/redaktor/playerType

JSON

Inbox

Definition

Player type required&#x2014;for example, Flash or Silverlight.

2397 players online

https://w3id.org/class/redaktor/playersOnline

JSON

Inbox

Definition

Number of players on the server.

1528 playlists

https://w3id.org/class/redaktor/playlists

JSON

Inbox

Definition

?

Scope Note

ActivityPub Community

Example

?

2149 polygon

https://w3id.org/class/redaktor/polygon

JSON

Inbox

Definition

A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.

Exact Match

1529 position

https://w3id.org/class/redaktor/position

JSON

Inbox

Definition

Defines the position of a PlaylistElement in a Playlist.

Scope Note

ActivityPub Community

2499 positive notes

https://w3id.org/class/redaktor/positiveNotes

JSON

Inbox

Definition

Indicates, in the context of a [[Review]] (e.g. framed as 'pro' vs 'con' considerations), positive considerations - either as unstructured text, or a list.

1567 post office box number

https://w3id.org/class/redaktor/postOfficeBoxNumber

JSON

Inbox

Definition

The post office box number for PO box addresses.

1566 postal code

https://w3id.org/class/redaktor/postalCode

JSON

Inbox

Definition

The postal code for the place.

Example

66000

171 preferred username

https://w3id.org/class/redaktor/preferredUsername

JSON

Inbox

Definition

A short username which may be used to refer to the actor, with no uniqueness guarantees.
see https://www.w3.org/TR/activitypub/#preferredUsername

Scope Note

ActivityPub Property

2152 prep time

https://w3id.org/class/redaktor/prepTime

JSON

Inbox

Definition

The length of time it takes to prepare the items to be used in instructions or a direction, in ISO 8601 duration format.

Exact Match

799 previous

https://w3id.org/class/redaktor/prev

JSON

Inbox

Definition

In a paged Collection, identifies the previous page of items.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-prev

Scope Note

: Property

Example

Example 100

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Page 1 of Sally's blog posts",
  "type": "CollectionPage",
  "prev": "http://example.org/collection?page=1",
  "items": [
    "http://example.org/posts/1",
    "http://example.org/posts/2",
    "http://example.org/posts/3"
  ]
}

141 preview

https://w3id.org/class/redaktor/preview

JSON

Inbox

Definition

Identifies an entity that provides a preview of this object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-preview

Scope Note

: Property

Example

Example 102

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Video",
  "name": "Cool New Movie",
  "duration": "PT2H30M",
  "preview": {
    "type": "Video",
    "name": "Trailer",
    "duration": "PT1M",
    "url": {
      "href": "http://example.org/trailer.mkv",
      "mediaType": "video/mkv"
    }
  }
}

2153 previous item

https://w3id.org/class/redaktor/previousItem

JSON

Inbox

Definition

A link to the ListItem that preceeds the current one.

1494 previous start date

https://w3id.org/class/redaktor/previousStartDate

JSON

Inbox

2154 price

https://w3id.org/class/redaktor/price

JSON

Inbox

Definition

no label in language

Exact Match

2155 price currency

https://w3id.org/class/redaktor/priceCurrency

JSON

Inbox

Definition

no label in language

2156 price range

https://w3id.org/class/redaktor/priceRange

JSON

Inbox

Definition

The price range of the business, for example $$$.

2157 price specification

https://w3id.org/class/redaktor/priceSpecification

JSON

Inbox

Definition

One or more detailed price specifications, indicating the unit price and delivery or payment charges.

2158 price valid until

https://w3id.org/class/redaktor/priceValidUntil

JSON

Inbox

Definition

The date after which the price is no longer available.

2448 processing time

https://w3id.org/class/redaktor/processingTime

JSON

Inbox

Definition

Estimated processing time for the service using this channel.

2159 processor requirements

https://w3id.org/class/redaktor/processorRequirements

JSON

Inbox

Definition

Processor architecture required to run the application (e.g. IA64).

2160 producer

https://w3id.org/class/redaktor/producer

JSON

Inbox

Definition

Produzent(en) eines filmischen oder musikalischen Werks. The person or organization who produced the work (e.g. music album, movie, tv/radio series etc.).

2161 produces

https://w3id.org/class/redaktor/produces

JSON

Inbox

Definition

The tangible thing generated by the service, e.g. a passport, permit, etc.

Exact Match

2361 product ID

https://w3id.org/class/redaktor/productID

JSON

Inbox

Definition

The product identifier, such as ISBN. For example: meta itemprop="productID" content="isbn:123-456-789".

Exact Match

2162 product supported

https://w3id.org/class/redaktor/productSupported

JSON

Inbox

Definition

The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. “iPhone”) or a general category of products or services (e.g. “smartphones”).

2305 production company

https://w3id.org/class/redaktor/productionCompany

JSON

Inbox

Definition

The production company or studio responsible for the item e.g. series, video game, episode etc.

2360 production date

https://w3id.org/class/redaktor/productionDate

JSON

Inbox

Definition

The date of production of the item, e.g. vehicle.

2163 proficiency level

https://w3id.org/class/redaktor/proficiencyLevel

JSON

Inbox

Definition

Proficiency needed for this content; expected values: 'Beginner', 'Expert'.

2164 program name

https://w3id.org/class/redaktor/programName

JSON

Inbox

Definition

The program providing the membership.

2165 programming language

https://w3id.org/class/redaktor/programmingLanguage

JSON

Inbox

Definition

The computer programming language.

2166 programming model

https://w3id.org/class/redaktor/programmingModel

JSON

Inbox

Definition

Indicates whether API is managed or unmanaged.

2329 protein content

https://w3id.org/class/redaktor/proteinContent

JSON

Inbox

Definition

The number of grams of protein.

178 provide client key

https://w3id.org/class/redaktor/provideClientKey

JSON

Inbox

Definition

If Linked Data Signatures and HTTP Signatures are being used for authentication and authorization, this endpoint specifies a URI at which browser-authenticated users may authorize a client's public key for client to server interactions.

2167 provider

https://w3id.org/class/redaktor/provider

JSON

Inbox

Definition

The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.

Exact Match

2168 provider mobility

https://w3id.org/class/redaktor/providerMobility

JSON

Inbox

Definition

Indicates the mobility of a provided service (e.g. 'static', 'dynamic').

2443 provides service

https://w3id.org/class/redaktor/providesService

JSON

Inbox

Definition

The service provided by this channel.

175 proxy Url

https://w3id.org/class/redaktor/proxyUrl

JSON

Inbox

Definition

Endpoint URI so this actor's clients may access remote ActivityStreams objects which require authentication to access. To use this endpoint, the client posts an x-www-form-urlencoded id parameter with the value being the id of the requested ActivityStreams object.

1595 public access

https://w3id.org/class/redaktor/publicAccess

JSON

Inbox

Definition

A flag to signal that the Place is open to public visitors. If this property is omitted there is no assumed default boolean value.

2169 public transport closures info

https://w3id.org/class/redaktor/publicTransportClosuresInfo

JSON

Inbox

Definition

Information about public transport closures.

2170 publication

https://w3id.org/class/redaktor/publication

JSON

Inbox

Definition

A publication event associated with the item.

2171 publication type

https://w3id.org/class/redaktor/publicationType

JSON

Inbox

Definition

The type of the medical article, taken from the US NLM MeSH publication type catalog. See also MeSH documentation.

123 published

https://w3id.org/class/redaktor/published

JSON

Inbox

Definition

The date and time at which the object was published.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-published

Scope Note

: Property

Example

Example 128

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "A simple note",
  "type": "Note",
  "content": "Fish swim.",
  "published": "2014-12-12T12:12:12Z"
}

2172 published by

https://w3id.org/class/redaktor/publishedBy

JSON

Inbox

Definition

An agent associated with the publication event.

2173 published on

https://w3id.org/class/redaktor/publishedOn

JSON

Inbox

Definition

A broadcast service associated with the publication event.

2174 publisher

https://w3id.org/class/redaktor/publisher

JSON

Inbox

Definition

The publisher of the creative work. Organization or person responsible for publishing books, periodicals, printed music, podcasts, games or software

2175 publisher imprint

https://w3id.org/class/redaktor/publisherImprint

JSON

Inbox

Definition

The publishing division which published the comic.

2176 publishing principles

https://w3id.org/class/redaktor/publishingPrinciples

JSON

Inbox

Definition

The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].

While such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology.

2358 purchase date

https://w3id.org/class/redaktor/purchaseDate

JSON

Inbox

Definition

The date the item e.g. vehicle was purchased by the current owner.

2485 qualifications

https://w3id.org/class/redaktor/qualifications

JSON

Inbox

Definition

Specific qualifications required for this role or Occupation.

2177 quarantine guidelines

https://w3id.org/class/redaktor/quarantineGuidelines

JSON

Inbox

Definition

Guidelines about quarantine rules, e.g. in the context of a pandemic.

2178 quest

https://w3id.org/class/redaktor/quest

JSON

Inbox

Definition

The task that a player-controlled character, or group of characters may complete in order to gain a reward.

Exact Match

3195 radius

https://w3id.org/class/redaktor/radius

JSON

Inbox

Definition

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".
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-radius

Scope Note

: Property

Example

Example 130

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Place",
  "name": "Fresno Area",
  "latitude": 36.75,
  "longitude": 119.7667,
  "radius": 15,
  "units": "miles"
}

2378 rating count

https://w3id.org/class/redaktor/ratingCount

JSON

Inbox

Definition

The count of total number of ratings.

2406 rating explanation

https://w3id.org/class/redaktor/ratingExplanation

JSON

Inbox

Definition

A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with "fact check" markup using [[ClaimReview]].

2405 rating value

https://w3id.org/class/redaktor/ratingValue

JSON

Inbox

Definition

The rating for the content.

Usage guidelines:

  • Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.
  • Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.

2179 read by

https://w3id.org/class/redaktor/readBy

JSON

Inbox

Definition

A person who reads (performs) the audiobook.

Exact Match

2180 recipe category

https://w3id.org/class/redaktor/recipeCategory

JSON

Inbox

Definition

The category of the recipe—for example, appetizer, entree, etc.

2181 recipe cuisine

https://w3id.org/class/redaktor/recipeCuisine

JSON

Inbox

Definition

The cuisine of the recipe (for example, French or Ethiopian).

2182 recipe ingredient

https://w3id.org/class/redaktor/recipeIngredient

JSON

Inbox

Definition

A single ingredient used in the recipe, e.g. sugar, flour or garlic.

2183 recipe instructions

https://w3id.org/class/redaktor/recipeInstructions

JSON

Inbox

Definition

A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items.

2184 recipe yield

https://w3id.org/class/redaktor/recipeYield

JSON

Inbox

Definition

The quantity produced by the recipe (for example, number of people served, number of servings, etc).

2185 recognized by

https://w3id.org/class/redaktor/recognizedBy

JSON

Inbox

Definition

An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation.

2186 recorded as

https://w3id.org/class/redaktor/recordedAs

JSON

Inbox

Definition

An audio recording of the work.

2187 recorded at

https://w3id.org/class/redaktor/recordedAt

JSON

Inbox

Definition

The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.

2188 recording of

https://w3id.org/class/redaktor/recordingOf

JSON

Inbox

Definition

The composition this track is a recording of.

c6 redaktor

https://w3id.org/class/redaktor/redaktor

JSON

Inbox

Definition

redaktor

2470 refund type

https://w3id.org/class/redaktor/refundType

JSON

Inbox

Definition

A refund type, from an enumerated list.

2346 regions allowed

https://w3id.org/class/redaktor/regionsAllowed

JSON

Inbox

Definition

The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in ISO 3166 format.

499 rel

https://w3id.org/class/redaktor/rel

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-rel

Scope Note

: Property

Example

Example 131

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Link",
  "href": "http://example.org/abc",
  "hreflang": "en",
  "mediaType": "text/html",
  "name": "Preview",
  "rel": ["canonical", "preview"]
}

2189 related to

https://w3id.org/class/redaktor/relatedTo

JSON

Inbox

Definition

The most generic familial relation.

Exact Match

3211 relationship

https://w3id.org/class/redaktor/relationship

JSON

Inbox

Definition

On a Relationship object, the relationship property identifies the kind of relationship that exists between subject and object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-relationship-term

Scope Note

: Property

Example

Example 140

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally is an acquaintance of John's",
  "type": "Relationship",
  "subject": {
    "type": "Person",
    "name": "Sally"
  },
  "relationship": "http://purl.org/vocab/relationship/acquaintanceOf",
  "object": {
    "type": "Person",
    "name": "John"
  }
}

2371 release date

https://w3id.org/class/redaktor/releaseDate

JSON

Inbox

Definition

The release date of a product or product model. This can be used to distinguish the exact variant of a product.

2190 release notes

https://w3id.org/class/redaktor/releaseNotes

JSON

Inbox

Definition

Description of what changed in this version.

2191 released event

https://w3id.org/class/redaktor/releasedEvent

JSON

Inbox

Definition

The place and time the release was issued, expressed as a PublicationEvent.

142 replies

https://w3id.org/class/redaktor/replies

JSON

Inbox

Definition

Identifies a Collection containing objects considered to be responses to this object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-replies

Scope Note

: Property

Example

Example 104

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "A simple note",
  "type": "Note",
  "id": "http://www.test.example/notes/1",
  "content": "I am fine.",
  "replies": {
    "type": "Collection",
    "totalItems": 1,
    "items": [
      {
        "summary": "A response to the note",
        "type": "Note",
        "content": "I am glad to hear it.",
        "inReplyTo": "http://www.test.example/notes/1"
      }
    ]
  }
}

2192 requirements

https://w3id.org/class/redaktor/requirements

JSON

Inbox

Definition

Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).

2348 requires subscription

https://w3id.org/class/redaktor/requiresSubscription

JSON

Inbox

Definition

Indicates if use of the media require a subscription (either paid or free). Allowed values are true or false (note that an earlier version had 'yes', 'no').

2480 responsibilities

https://w3id.org/class/redaktor/responsibilities

JSON

Inbox

Definition

Responsibilities associated with this role or Occupation.

2463 restocking fee

https://w3id.org/class/redaktor/restockingFee

JSON

Inbox

Definition

Use [[MonetaryAmount]] to specify a fixed restocking fee for product returns, or use [[Number]] to specify a percentage of the product price paid by the customer.

10525 restricted

https://w3id.org/class/redaktor/restricted

JSON

Inbox

240 result

https://w3id.org/class/redaktor/result

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-result

Scope Note

: Property

Example

Example 103

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally checked that her flight was on time",
  "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"
  }
}

2478 return fees

https://w3id.org/class/redaktor/returnFees

JSON

Inbox

Definition

The type of return fees for purchased products (for any return reason)

2468 return label source

https://w3id.org/class/redaktor/returnLabelSource

JSON

Inbox

Definition

The method (from an enumeration) by which the customer obtains a return shipping label for a product returned for any reason.

2473 return method

https://w3id.org/class/redaktor/returnMethod

JSON

Inbox

Definition

The type of return method offered, specified from an enumeration.

2460 return policy category

https://w3id.org/class/redaktor/returnPolicyCategory

JSON

Inbox

Definition

Specifies an applicable return policy (from an enumeration).

2461 return policy country

https://w3id.org/class/redaktor/returnPolicyCountry

JSON

Inbox

Definition

The country where the product has to be sent to for returns, for example "Ireland" using the [[name]] property of [[Country]]. You can also provide the two-letter ISO 3166-1 alpha-2 country code. Note that this can be different from the country where the product was originally shipped from or sent too.

2476 return policy seasonal override

https://w3id.org/class/redaktor/returnPolicySeasonalOverride

JSON

Inbox

Definition

Seasonal override of a return policy.

2471 return shipping fees amount

https://w3id.org/class/redaktor/returnShippingFeesAmount

JSON

Inbox

Definition

Amount of shipping costs for product returns (for any reason). Applicable when property [[returnFees]] equals [[ReturnShippingFees]].

2193 review

https://w3id.org/class/redaktor/review

JSON

Inbox

Definition

A review of the item.

Exact Match

2402 review aspect

https://w3id.org/class/redaktor/reviewAspect

JSON

Inbox

Definition

This Review or Rating is relevant to this part or facet of the itemReviewed.

2502 review body

https://w3id.org/class/redaktor/reviewBody

JSON

Inbox

Definition

The actual body of the review.

2377 review count

https://w3id.org/class/redaktor/reviewCount

JSON

Inbox

Definition

The count of total number of reviews.

2496 review rating

https://w3id.org/class/redaktor/reviewRating

JSON

Inbox

Definition

The rating given in this review. Note that reviews can themselves be rated. The reviewRating applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work.

2195 runtime

https://w3id.org/class/redaktor/runtime

JSON

Inbox

Definition

Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).

Exact Match

2196 runtime platform

https://w3id.org/class/redaktor/runtimePlatform

JSON

Inbox

Definition

Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).

2197 sample type

https://w3id.org/class/redaktor/sampleType

JSON

Inbox

Definition

What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.

2338 saturated fat content

https://w3id.org/class/redaktor/saturatedFatContent

JSON

Inbox

Definition

The number of grams of saturated fat.

2198 schema version

https://w3id.org/class/redaktor/schemaVersion

JSON

Inbox

Definition

Indicates (by URL or string) a particular version of a schema used in some CreativeWork. This property was created primarily to
indicate the use of a specific schema.org release, e.g. 10.0 as a simple string, or more explicitly via URL, https://schema.org/docs/releases.html#v10.0. There may be situations in which other schemas might usefully be referenced this way, e.g. http://dublincore.org/specifications/dublin-core/dces/1999-07-02/ but this has not been carefully explored in the community.

2199 school closures info

https://w3id.org/class/redaktor/schoolClosuresInfo

JSON

Inbox

Definition

Information about school closures.

2200 screen count

https://w3id.org/class/redaktor/screenCount

JSON

Inbox

Definition

The number of screens in the movie theater.

2201 screenshot

https://w3id.org/class/redaktor/screenshot

JSON

Inbox

Definition

A link to a screenshot image of the app.

2202 SD date published

https://w3id.org/class/redaktor/sdDatePublished

JSON

Inbox

Definition

Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]

2203 SD license

https://w3id.org/class/redaktor/sdLicense

JSON

Inbox

Definition

A license document that applies to this structured data, typically indicated by URL.

Exact Match

2204 SD publisher

https://w3id.org/class/redaktor/sdPublisher

JSON

Inbox

Definition

Indicates the party responsible for generating and publishing the current structured data markup, typically in cases where the structured data is derived automatically from existing published content but published on a different site. For example, student projects and open data initiatives often re-publish existing content with more explicitly structured metadata. The
[[sdPublisher]] property helps make such practices more explicit.

2308 number of episodes

https://w3id.org/class/redaktor/seasonNumber

JSON

Inbox

Definition

Position of the season within an ordered group of seasons.

2388 seat number

https://w3id.org/class/redaktor/seatNumber

JSON

Inbox

Definition

The location of the reserved seat (e.g., 27).

2387 seat row

https://w3id.org/class/redaktor/seatRow

JSON

Inbox

Definition

The row location of the reserved seat (e.g., B).

Exact Match

2386 seat section

https://w3id.org/class/redaktor/seatSection

JSON

Inbox

Definition

The section location of the reserved seat (e.g. Orchestra).

2437 seating capacity

https://w3id.org/class/redaktor/seatingCapacity

JSON

Inbox

Definition

The number of persons that can be seated (e.g. in a vehicle), both in terms of the physical space available, and in terms of limitations set by law.

Typical unit code(s): C62 for persons

2385 seating type

https://w3id.org/class/redaktor/seatingType

JSON

Inbox

Definition

The type/class of the seat.

2205 seeks

https://w3id.org/class/redaktor/seeks

JSON

Inbox

Definition

A pointer to products or services sought by the organization or person (demand).

Exact Match

2206 seller

https://w3id.org/class/redaktor/seller

JSON

Inbox

Definition

An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider.

Exact Match

143 sensitive

https://w3id.org/class/redaktor/sensitive

JSON

Inbox

Definition

The sensitive property (a boolean) on an object indicates that some users may wish to apply discretion about viewing its content, whether due to nudity, violence, or any other likely aspects that viewers may be sensitive to. This is comparable to what is popularly called "NSFW" (Not Safe For Work) or "trigger warning" in some systems. Implementations may choose to hide content flagged with this property by default, exposed at user discretion.
see w3 wiki or documentation

Scope Note

: Extension

Example

{}

2207 serial number

https://w3id.org/class/redaktor/serialNumber

JSON

Inbox

Definition

The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.

2395 server status

https://w3id.org/class/redaktor/serverStatus

JSON

Inbox

Definition

Status of a game server.

2208 serves cuisine

https://w3id.org/class/redaktor/servesCuisine

JSON

Inbox

Definition

The cuisine of the restaurant.

2209 service area

https://w3id.org/class/redaktor/serviceArea

JSON

Inbox

Definition

The geographic area where the service is provided.

2210 service audience

https://w3id.org/class/redaktor/serviceAudience

JSON

Inbox

Definition

The audience eligible for this service.

2449 service location

https://w3id.org/class/redaktor/serviceLocation

JSON

Inbox

Definition

The location (e.g. civic structure, local business, etc.) where a person can go to access the service.

2451 service operator

https://w3id.org/class/redaktor/serviceOperator

JSON

Inbox

Definition

The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor.

2211 service output

https://w3id.org/class/redaktor/serviceOutput

JSON

Inbox

Definition

The tangible thing generated by the service, e.g. a passport, permit, etc.

2447 service phone

https://w3id.org/class/redaktor/servicePhone

JSON

Inbox

Definition

The phone number to use to access the service.

2445 service postal address

https://w3id.org/class/redaktor/servicePostalAddress

JSON

Inbox

Definition

The address for accessing the service by mail.

2444 service SMS-Number

https://w3id.org/class/redaktor/serviceSmsNumber

JSON

Inbox

Definition

The number to access the service by text message.

2212 service type

https://w3id.org/class/redaktor/serviceType

JSON

Inbox

Definition

The type of service being offered, e.g. veterans' benefits, emergency relief, etc.

2446 service Url

https://w3id.org/class/redaktor/serviceUrl

JSON

Inbox

Definition

The website to access the service.

2328 serving size

https://w3id.org/class/redaktor/servingSize

JSON

Inbox

Definition

The serving size, in terms of the number of volume or mass.

2354 sha256

https://w3id.org/class/redaktor/sha256

JSON

Inbox

Definition

The SHA-2 SHA256 hash of the content of the item. For example, a zero-length input has value 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'

Exact Match

2213 shared content

https://w3id.org/class/redaktor/sharedContent

JSON

Inbox

Definition

A CreativeWork such as an image, video, or audio clip shared as part of this posting.

180 shared inbox

https://w3id.org/class/redaktor/sharedInbox

JSON

Inbox

Definition

An optional endpoint used for wide delivery of publicly addressed activities and activities sent to followers. sharedInbox endpoints SHOULD also be publicly readable OrderedCollection objects containing objects addressed to the Public special collection. Reading from the sharedInbox endpoint MUST NOT present objects which are not addressed to the Public endpoint.

172 shares

https://w3id.org/class/redaktor/shares

JSON

Inbox

Definition

Every object MAY have a shares collection. This is a list of all Announce activities with this object as the object property, added as a side effect. The shares collection MUST be either an OrderedCollection or a Collection and MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given.
see https://www.w3.org/TR/activitypub/#shares

Scope Note

ActivityPub Property

2503 shipping destination

https://w3id.org/class/redaktor/shippingDestination

JSON

Inbox

Definition

indicates (possibly multiple) shipping destinations. These can be defined in several ways e.g. postalCode ranges.

2214 shipping details

https://w3id.org/class/redaktor/shippingDetails

JSON

Inbox

Definition

Indicates information about the shipping policies and options associated with an [[Offer]].

2507 shipping label

https://w3id.org/class/redaktor/shippingLabel

JSON

Inbox

Definition

Label to match an [[OfferShippingDetails]] with a [[ShippingRateSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).

2509 shipping rate

https://w3id.org/class/redaktor/shippingRate

JSON

Inbox

Definition

The shipping rate is the cost of shipping to the specified destination. Typically, the maxValue and currency values (of the [[MonetaryAmount]]) are most appropriate.

2215 sibling

https://w3id.org/class/redaktor/sibling

JSON

Inbox

Definition

A sibling of the person.

Exact Match

2216 siblings

https://w3id.org/class/redaktor/siblings

JSON

Inbox

Definition

A sibling of the person.

Exact Match

179 sign client key

https://w3id.org/class/redaktor/signClientKey

JSON

Inbox

Definition

If Linked Data Signatures and HTTP Signatures are being used for authentication and authorization, this endpoint specifies a URI at which a client key may be signed by the actor's key for a time window to act on behalf of the actor in interacting with foreign servers.

1530 filesize

https://w3id.org/class/redaktor/size

JSON

Inbox

Definition

Video file size in bytes.
see peertube documentation

Scope Note

ActivityPub Community

Example

{
  "type": "Video",
  "url": [
    // Raw URL to the fragmented mp4 file used by the HLS playlist
    {
      "type": "Link",
      "mediaType": "video/mp4",
      "height": 536,
      "size": 135108145,
      "fps": 24}
  ]
}

2484 skills

https://w3id.org/class/redaktor/skills

JSON

Inbox

Definition

A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.

Exact Match

2218 SKU

https://w3id.org/class/redaktor/sku

JSON

Inbox

Definition

The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.

Exact Match

1596 slogan

https://w3id.org/class/redaktor/slogan

JSON

Inbox

Definition

A slogan or motto associated with the item.

Exact Match

1499 slug

https://w3id.org/class/redaktor/slug

JSON

Inbox

Definition

Proposed Hashtags for this element.

1007 smoking allowed

https://w3id.org/class/redaktor/smokingAllowed

JSON

Inbox

Definition

Indicates whether it is allowed to smoke in the place.

2331 sodium content

https://w3id.org/class/redaktor/sodiumContent

JSON

Inbox

Definition

The number of milligrams of sodium.

2220 software add on

https://w3id.org/class/redaktor/softwareAddOn

JSON

Inbox

Definition

Additional content for a software application.

2221 software help

https://w3id.org/class/redaktor/softwareHelp

JSON

Inbox

Definition

Software application help.

2222 software requirements

https://w3id.org/class/redaktor/softwareRequirements

JSON

Inbox

Definition

Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).

2223 software version

https://w3id.org/class/redaktor/softwareVersion

JSON

Inbox

Definition

Version of the software instance.

144 source

https://w3id.org/class/redaktor/source

JSON

Inbox

Definition

In addition to all the properties defined by the Activity-Vocabulary, ActivityPub extends the Object by supplying the source property. 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. In general, clients do the conversion from source to content, not the other way around.

The value of source is itself an object which uses its own content and mediaType fields to supply source information.
see (further info) https://www.w3.org/TR/activitypub/#source-property

Scope Note

ActivityPub Property

Example

Example 8

{
  "@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"
  }
}

2224 source organization

https://w3id.org/class/redaktor/sourceOrganization

JSON

Inbox

Definition

The Organization on whose behalf the creator was working.

2225 spatial

https://w3id.org/class/redaktor/spatial

JSON

Inbox

Definition

The “spatial” property can be used in cases when more specific properties
(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.

Exact Match

2226 spatial coverage

https://w3id.org/class/redaktor/spatialCoverage

JSON

Inbox

Definition

The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of
contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates
areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.

2227 speakable

https://w3id.org/class/redaktor/speakable

JSON

Inbox

Definition

Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.

The speakable property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:

1.) id-value URL references - uses id-value of an element in the page being annotated. The simplest use of speakable has (potentially relative) URL values, referencing identified sections of the document concerned.

2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the [[cssSelector]] property.

3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.


For more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For this
we define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the speakable property.

Exact Match

2409 speed

https://w3id.org/class/redaktor/speed

JSON

Inbox

Definition

The speed range of the vehicle. If the vehicle is powered by an engine, the upper limit of the speed range (indicated by [[maxValue]] should be the maximum speed achievable under regular conditions.

Typical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot

*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range. Typically, the minimal value is zero.

  • Note 2: There are many different ways of measuring the speed range. You can link to information about how the given value has been determined using the [[valueReference]] property.

Exact Match

2228 sponsor

https://w3id.org/class/redaktor/sponsor

JSON

Inbox

Definition

A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.

Exact Match

2229 sport

https://w3id.org/class/redaktor/sport

JSON

Inbox

Definition

A type of sport (e.g. Baseball).

Exact Match

2230 spouse

https://w3id.org/class/redaktor/spouse

JSON

Inbox

Definition

The person's spouse.

Exact Match

2231 star rating

https://w3id.org/class/redaktor/starRating

JSON

Inbox

Definition

An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).

997 start index

https://w3id.org/class/redaktor/startIndex

JSON

Inbox

Definition

A non-negative integer value identifying the relative position within the logical view of a strictly ordered collection.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-startindex

Scope Note

: Property

Example

Example 132

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Page 1 of Sally's notes",
  "type": "OrderedCollectionPage",
  "startIndex": 0,
  "orderedItems": [
    {
      "type": "Note",
      "name": "Density of Water"
    },
    {
      "type": "Note",
      "name": "Air Mattress Idea"
    }
  ]
}

2232 start offset

https://w3id.org/class/redaktor/startOffset

JSON

Inbox

Definition

The start time of the clip expressed as the number of seconds from the beginning of the work.

131 start time

https://w3id.org/class/redaktor/startTime

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-starttime

Scope Note

: Property

Example

Example 129

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Event",
  "name": "Going-Away Party for Jim",
  "startTime": "2014-12-31T23:00:00-08:00",
  "endTime": "2015-01-01T06:00:00-08:00"
}

1531 start timestamp

https://w3id.org/class/redaktor/startTimestamp

JSON

Inbox

Definition

number, format: seconds
in PlaylistElement

Scope Note

ActivityPub Community

1532 state

https://w3id.org/class/redaktor/state

JSON

Inbox

Definition

represents the internal state of the video processing within the PeerTube instance.
see peertube documentation

Scope Note

ActivityPub Community

2416 steering position

https://w3id.org/class/redaktor/steeringPosition

JSON

Inbox

Definition

The position of the steering wheel or similar device (mostly for cars).

2233 step

https://w3id.org/class/redaktor/step

JSON

Inbox

Definition

A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.

Exact Match

2234 steps

https://w3id.org/class/redaktor/steps

JSON

Inbox

Definition

A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).

Exact Match

1533 stop timestamp

https://w3id.org/class/redaktor/stopTimestamp

JSON

Inbox

Definition

number, format: seconds
in PlaylistElement

Scope Note

ActivityPub Community

2235 storage requirements

https://w3id.org/class/redaktor/storageRequirements

JSON

Inbox

Definition

Storage requirements (free space required).

173 streams

https://w3id.org/class/redaktor/streams

JSON

Inbox

Definition

A list of supplementary Collections which may be of interest.
see https://www.w3.org/TR/activitypub/#streams-property

Scope Note

ActivityPub Property

1568 street

https://w3id.org/class/redaktor/streetAddress

JSON

Inbox

Definition

The street address as text.

Example

1 Pl. de Verdun

2236 sub organization

https://w3id.org/class/redaktor/subOrganization

JSON

Inbox

Definition

A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.

2237 sub trip

https://w3id.org/class/redaktor/subTrip

JSON

Inbox

Definition

Identifies a [[Trip]] that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a multi-day trip.

Exact Match

3212 subject

https://w3id.org/class/redaktor/subject

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-subject

Scope Note

: Property

Example

Example 139

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally is an acquaintance of John's",
  "type": "Relationship",
  "subject": {
    "type": "Person",
    "name": "Sally"
  },
  "relationship": "http://purl.org/vocab/relationship/acquaintanceOf",
  "object": {
    "type": "Person",
    "name": "John"
  }
}

1547 subtitle languages

https://w3id.org/class/redaktor/subtitleLanguage

JSON

Inbox

Definition

Used by PeerTube with the Video Object. Languages in which subtitles/captions are available, in IETF BCP 47 standard format.
see schema.org/subtitleLanguage
see also schema.org/Language

Example

{
  "type": "Video",
  "id": "https://peertube2.cpy.re/videos/watch/...",
  "name": "HLS test 1",
  "subtitleLanguage": [
    {
      "identifier": "ca",
      "name": "Catalan",
      "url": "https://peertube2.cpy.re/lazy-static/video-captions/...-ca.vtt"
    }
  ],

  // Optional
  "language": {
    "identifier": "en",
    "name": "English"
  }
}

2333 sugar content

https://w3id.org/class/redaktor/sugarContent

JSON

Inbox

Definition

The number of grams of sugar.

2239 suitable for diet

https://w3id.org/class/redaktor/suitableForDiet

JSON

Inbox

Definition

Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.

119 summary

https://w3id.org/class/redaktor/summary

JSON

Inbox

Definition

A natural language summarization of the object encoded as HTML. Multiple language tagged summaries MAY be provided (see "summaryMap").
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-summary

Scope Note

: Property

Example

Example 133

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "name": "Cane Sugar Processing",
  "type": "Note",
  "summary": "A simple <em>note</em>"
}

120 summary map

https://w3id.org/class/redaktor/summaryMap

JSON

Inbox

Definition

A natural language summarization of the object encoded as HTML. Multiple language tagged summaries MAY be provided.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-summary

Scope Note

: Property

Alt Label

  • multi-language summary

Example

[Example 134](https://www.w3.org/TR/activitystreams-vocabulary/#ex153-jsonld)
{
  "@context": "https://www.w3.org/ns/activitystreams",
  "name": "Cane Sugar Processing",
  "type": "Note",
  "summaryMap": {
    "en": "A simple <em>note</em>",
    "es": "Una <em>nota</em> sencilla",
    "zh-Hans": "一段<em>简单的</em>笔记"
  }
}

Related

2240 supply

https://w3id.org/class/redaktor/supply

JSON

Inbox

Definition

A sub-property of instrument. A supply consumed when performing instructions or a direction.

Exact Match

1534 support

https://w3id.org/class/redaktor/support

JSON

Inbox

Definition

A text to tell the audience how to support the video/content creator.
see peertube documentation

Scope Note

ActivityPub Community

Example

{
  "type": "Video",
  "views": 35,
  "support": "Pay me a coffee when you see me",
  "waitTranscoding": true
}

2241 supporting data

https://w3id.org/class/redaktor/supportingData

JSON

Inbox

Definition

Supporting data for a SoftwareApplication.

1518 suspended

https://w3id.org/class/redaktor/suspended

JSON

Inbox

Definition

Mastodon reports whether a user was locally suspended, for better handling of these accounts. Suspended accounts in Mastodon return empty data. If a remote account is marked as suspended, it cannot be unsuspended locally. Suspended accounts can be targeted by activities such as Update, Undo, Reject, and Delete. This functionality is implemented using an extra property "suspended" on objects.
see mastodon documentation

Scope Note

ActivityPub Community

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "toot": "http://joinmastodon.org/ns#",
      "suspended": ":suspended"
    }
  ],
  "id": "https://example.com/@eve",
  "type": "Person",
  "suspended": true
}

145 tag

https://w3id.org/class/redaktor/tag

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag

Scope Note

: Property

Example

Example 105

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Image",
  "summary": "Picture of Sally",
  "url": "http://example.org/sally.jpg",
  "tag": [
    {
      "type": "Person",
      "id": "http://sally.example.org",
      "name": "Sally"
    }
  ]
}

253 target

https://w3id.org/class/redaktor/target

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-target

Scope Note

: Property

Example

Example 106

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally offered the post to John",
  "type": "Offer",
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "target": "http://john.example.org"
}

2242 target description

https://w3id.org/class/redaktor/targetDescription

JSON

Inbox

Definition

The description of a node in an established educational framework.

2243 target name

https://w3id.org/class/redaktor/targetName

JSON

Inbox

Definition

The name of a node in an established educational framework.

2244 target platform

https://w3id.org/class/redaktor/targetPlatform

JSON

Inbox

Definition

Type of app development: phone, Metro style, desktop, XBox, etc.

2245 target product

https://w3id.org/class/redaktor/targetProduct

JSON

Inbox

Definition

Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.

2246 target url

https://w3id.org/class/redaktor/targetUrl

JSON

Inbox

Definition

The URL of a node in an established educational framework.

Exact Match

2247 tax ID

https://w3id.org/class/redaktor/taxID

JSON

Inbox

Definition

The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.

Exact Match

2248 teaches

https://w3id.org/class/redaktor/teaches

JSON

Inbox

Definition

The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.

Exact Match

2249 telephone

https://w3id.org/class/redaktor/telephone

JSON

Inbox

Definition

The telephone number.

Exact Match

2250 temporal

https://w3id.org/class/redaktor/temporal

JSON

Inbox

Definition

The “temporal” property can be used in cases where more specific properties
(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate.

Exact Match

2251 temporal coverage

https://w3id.org/class/redaktor/temporalCoverage

JSON

Inbox

Definition

The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in ISO 8601 time interval format. In the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written “2011/2012”). Other forms of content e.g. ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their temporalCoverage in broader terms - textually or via well-known URL.
Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via “1939/1945”.

Open-ended date ranges can be written with “..” in place of the end date. For example, “2015-11/..” indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.

2252 term code

https://w3id.org/class/redaktor/termCode

JSON

Inbox

Definition

A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]

Exact Match

2253 terms of service

https://w3id.org/class/redaktor/termsOfService

JSON

Inbox

Definition

Human-readable terms of service documentation.

2254 text

https://w3id.org/class/redaktor/text

JSON

Inbox

Definition

The textual content of this CreativeWork.

Exact Match

2255 thumbnail url

https://w3id.org/class/redaktor/thumbnailUrl

JSON

Inbox

Definition

A thumbnail image relevant to the Thing.

2256 ticker symbol

https://w3id.org/class/redaktor/tickerSymbol

JSON

Inbox

Definition

The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022.

2257 ticket number

https://w3id.org/class/redaktor/ticketNumber

JSON

Inbox

Definition

The unique identifier for the ticket.

2258 ticket token

https://w3id.org/class/redaktor/ticketToken

JSON

Inbox

Definition

Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.

2259 ticketed seat

https://w3id.org/class/redaktor/ticketedSeat

JSON

Inbox

Definition

The seat associated with the ticket.

2260 time required

https://w3id.org/class/redaktor/timeRequired

JSON

Inbox

Definition

Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.

113 to

https://w3id.org/class/redaktor/to

JSON

Inbox

Definition

Identifies an entity considered to be part of the public primary audience of an Object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-to

Scope Note

: Property

Example

Example 108

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally offered the post to John",
  "type": "Offer",
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "target": "http://john.example.org",
  "to": [ "http://joe.example.org" ]
}

2261 Toc continuation

https://w3id.org/class/redaktor/tocContinuation

JSON

Inbox

Definition

A [[HyperTocEntry]] can have a [[tocContinuation]] indicated, which is another [[HyperTocEntry]] that would be the default next item to play or render.

2262 Toc entry

https://w3id.org/class/redaktor/tocEntry

JSON

Inbox

Definition

Indicates a [[HyperTocEntry]] in a [[HyperToc]].

Exact Match

2432 tongue weight

https://w3id.org/class/redaktor/tongueWeight

JSON

Inbox

Definition

The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR)

Typical unit code(s): KGM for kilogram, LBR for pound

  • Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.
  • Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].
  • Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.

2263 tool

https://w3id.org/class/redaktor/tool

JSON

Inbox

Definition

A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.

Exact Match

616 total items

https://w3id.org/class/redaktor/totalItems

JSON

Inbox

Definition

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.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-totalitems

Scope Note

: Property

Example

Example 135

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally's notes",
  "type": "Collection",
  "totalItems": 2,
  "items": [
    {
      "type": "Note",
      "name": "Which Staircase Should I Use"
    },
    {
      "type": "Note",
      "name": "Something to Remember"
    }
  ]
}

2264 total price

https://w3id.org/class/redaktor/totalPrice

JSON

Inbox

Definition

The total price for the reservation or ticket, including applicable taxes, shipping, etc.

Usage guidelines:

  • Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.

  • Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.

2265 total time

https://w3id.org/class/redaktor/totalTime

JSON

Inbox

Definition

The total time required to perform instructions or a direction (including time to prepare the supplies), in ISO 8601 duration format.

Exact Match

2266 tour booking page

https://w3id.org/class/redaktor/tourBookingPage

JSON

Inbox

Definition

A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.

2267 tourist type

https://w3id.org/class/redaktor/touristType

JSON

Inbox

Definition

Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc.

2268 track

https://w3id.org/class/redaktor/track

JSON

Inbox

Definition

A music recording (track)&#x2014;usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.

Exact Match

2488 tracking number

https://w3id.org/class/redaktor/trackingNumber

JSON

Inbox

Definition

Shipper tracking number.

2490 tracking Url

https://w3id.org/class/redaktor/trackingUrl

JSON

Inbox

Definition

Tracking url for the parcel delivery.

2269 tracks

https://w3id.org/class/redaktor/tracks

JSON

Inbox

Definition

A music recording (track)&#x2014;usually a single song.

Exact Match

2270 trailer

https://w3id.org/class/redaktor/trailer

JSON

Inbox

Definition

The trailer of a movie or tv/radio series, season, episode, etc.

Exact Match

2410 trailer weight

https://w3id.org/class/redaktor/trailerWeight

JSON

Inbox

Definition

The permitted weight of a trailer attached to the vehicle.

Typical unit code(s): KGM for kilogram, LBR for pound

  • Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.
  • Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].
  • Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.

2271 train name

https://w3id.org/class/redaktor/trainName

JSON

Inbox

Definition

The name of the train (e.g. The Orient Express).

Exact Match

2272 train number

https://w3id.org/class/redaktor/trainNumber

JSON

Inbox

Definition

The unique identifier for the train.

2335 trans-fat content

https://w3id.org/class/redaktor/transFatContent

JSON

Inbox

Definition

The number of grams of trans fat.

2506 transit time label

https://w3id.org/class/redaktor/transitTimeLabel

JSON

Inbox

Definition

Label to match an [[OfferShippingDetails]] with a [[DeliveryTimeSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).

2273 translation of work

https://w3id.org/class/redaktor/translationOfWork

JSON

Inbox

Definition

The work that this work has been translated from. e.g. 物种起源 is a translationOf “On the Origin of Species”

2274 translator

https://w3id.org/class/redaktor/translator

JSON

Inbox

Definition

Agent who adapts any kind of written text from one language to another

2275 travel bans

https://w3id.org/class/redaktor/travelBans

JSON

Inbox

Definition

Information about travel bans, e.g. in the context of a pandemic.

102 type

https://w3id.org/class/redaktor/type

JSON

Inbox

Definition

Identifies the Object or Link type. Multiple values may be specified.

Scope Note

: Property

Example

Example 62

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "A foo",
  "type": "http://example.org/Foo"
}

2398 type of bed

https://w3id.org/class/redaktor/typeOfBed

JSON

Inbox

Definition

The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity.

Exact Match

2392,2511 *no label in language*

https://w3id.org/class/redaktor/typeOfGood

JSON

Inbox

Definition

The product that this structured value is referring to.

2276 typical age range

https://w3id.org/class/redaktor/typicalAgeRange

JSON

Inbox

Definition

The typical expected age range, e.g. '7-9', '11-'.

2277 under name

https://w3id.org/class/redaktor/underName

JSON

Inbox

Definition

The person or organization the reservation or ticket is for.

Exact Match

2315 unit code

https://w3id.org/class/redaktor/unitCode

JSON

Inbox

Definition

The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon.

Exact Match

2313 unit text

https://w3id.org/class/redaktor/unitText

JSON

Inbox

Definition

A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for [[unitCode]].

Exact Match

3196 units

https://w3id.org/class/redaktor/units

JSON

Inbox

Definition

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".
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-units

Scope Note

: Property

Example

Example 136

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Place",
  "name": "Fresno Area",
  "latitude": 36.75,
  "longitude": 119.7667,
  "radius": 15,
  "units": "miles"
}

2278 unnamed sources policy

https://w3id.org/class/redaktor/unnamedSourcesPolicy

JSON

Inbox

Definition

For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.

2337 unsaturated fat content

https://w3id.org/class/redaktor/unsaturatedFatContent

JSON

Inbox

Definition

The number of grams of unsaturated fat.

124 updated

https://w3id.org/class/redaktor/updated

JSON

Inbox

Definition

The date and time at which the object was updated.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-updated

Scope Note

: Property

Example

Example 137

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "name": "Cranberry Sauce Idea",
  "type": "Note",
  "content": "Mush it up so it does not have the same shape as the can.",
  "updated": "2014-12-12T12:12:12Z"
}

2351 upload date

https://w3id.org/class/redaktor/uploadDate

JSON

Inbox

Definition

Date when this media object was uploaded to this site.

181 upload Media Endpoint

https://w3id.org/class/redaktor/uploadMedia

JSON

Inbox

Definition

Inspired by https://www.w3.org/wiki/SocialCG/ActivityPub/MediaUpload, it is part of the ActivityStreams namespace because it used to be part of the ActivityPub specification and got removed from it.

Content-Type: multipart/form-data

Parameters: - (required) file: The file being uploaded - (optionnal) description: A plain-text description of the media, for accessibility purposes.

Response: HTTP 201 Created with the object into the body, no Location header provided as it doesn't have an id

The object given in the reponse should then be inserted into an Object's attachment field.
see Pleroma documentation

146 url

https://w3id.org/class/redaktor/url

JSON

Inbox

Definition

Identifies one or more links to representations of the object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-url

Scope Note

: Property

Example

Example 109

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Document",
  "name": "4Q Sales Forecast",
  "url": "http://example.org/4q-sales-forecast.pdf"
}

2279 usage info

https://w3id.org/class/redaktor/usageInfo

JSON

Inbox

Definition

Urheberrechtsstatus für geistige Schöpfungen wie Kunstwerke, Publikationen, Software usw.
The schema.org [[usageInfo]] property indicates further information about a [[CreativeWork]]. This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.

This property can be used alongside the license property which indicates license(s) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.

Alt Label

  • copyright status

2389 user Interaction Count

https://w3id.org/class/redaktor/userInteractionCount

JSON

Inbox

Definition

The number of interactions for the CreativeWork using the WebSite or SoftwareApplication.

2280 utterances

https://w3id.org/class/redaktor/utterances

JSON

Inbox

Definition

Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]].

2281 valid for

https://w3id.org/class/redaktor/validFor

JSON

Inbox

Definition

The duration of validity of a permit or similar thing.

Exact Match

2282 valid from

https://w3id.org/class/redaktor/validFrom

JSON

Inbox

Definition

The date when the item becomes valid.

Exact Match

2283 valid in

https://w3id.org/class/redaktor/validIn

JSON

Inbox

Definition

The geographic area where a permit or similar thing is valid.

Exact Match

2284 valid through

https://w3id.org/class/redaktor/validThrough

JSON

Inbox

Definition

The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.

1543 value

https://w3id.org/class/redaktor/value

JSON

Inbox

Definition

Mastodon supports arbitrary profile fields containing name-value pairs. This is implemented using the attachment property on actor objects, with objects in the array having a type of PropertyValue and a value property, both from the schema.org namespace.
schema.org/value

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "PropertyValue": "schema:PropertyValue",
      "value": "schema:value"
    }
  ],
  "id": "https://mastodon.social/users/Gargron",
  "type": "Person",
  "attachment": [
    {
      "type": "PropertyValue",
      "name": "Patreon",
      "value": "<a href="https://www.patreon.com/mastodon" rel="me nofollow noopener noreferrer" target="_blank"><span class="invisible">https://www.</span><span class="">patreon.com/mastodon</span><span class="invisible"></span}"
    },
    {
      "type": "PropertyValue",
      "name": "Homepage",
      "value": "<a href="https://zeonfederated.com" rel="me nofollow noopener noreferrer" target="_blank"><span class="invisible">https://</span><span class="">zeonfederated.com</span><span class="invisible"></span}"
    }
  ]
}

Exact Match

2326 value-added tax is included

https://w3id.org/class/redaktor/valueAddedTaxIncluded

JSON

Inbox

Definition

Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.

2311 value reference

https://w3id.org/class/redaktor/valueReference

JSON

Inbox

Definition

A secondary value that provides additional information on the original value, e.g. a reference temperature or a type of measurement.

2319 variable measured

https://w3id.org/class/redaktor/variableMeasured

JSON

Inbox

Definition

The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.

2285 vat ID

https://w3id.org/class/redaktor/vatID

JSON

Inbox

Definition

The Value-added Tax ID of the organization or person.

Exact Match

2435 vehicle configuration

https://w3id.org/class/redaktor/vehicleConfiguration

JSON

Inbox

Definition

A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.

2411 vehicle engine

https://w3id.org/class/redaktor/vehicleEngine

JSON

Inbox

Definition

Information about the engine or engines of the vehicle.

2440 vehicle Identification Number

https://w3id.org/class/redaktor/vehicleIdentificationNumber

JSON

Inbox

Definition

The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.

2427 vehicle interior color

https://w3id.org/class/redaktor/vehicleInteriorColor

JSON

Inbox

Definition

The color or color combination of the interior of the vehicle.

2418 vehicle interior type

https://w3id.org/class/redaktor/vehicleInteriorType

JSON

Inbox

Definition

The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.

2434 vehicle model date

https://w3id.org/class/redaktor/vehicleModelDate

JSON

Inbox

Definition

The release date of a vehicle model (often used to differentiate versions of the same make and model).

2431 vehicle seating capacity

https://w3id.org/class/redaktor/vehicleSeatingCapacity

JSON

Inbox

Definition

The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.

Typical unit code(s): C62 for persons.

2442 vehicle special usage

https://w3id.org/class/redaktor/vehicleSpecialUsage

JSON

Inbox

Definition

Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale.

2422 vehicle transmission

https://w3id.org/class/redaktor/vehicleTransmission

JSON

Inbox

Definition

The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component(s) ("gearbox" for cars).

2286 verification fact checking policy

https://w3id.org/class/redaktor/verificationFactCheckingPolicy

JSON

Inbox

Definition

Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]].

2287 version

https://w3id.org/class/redaktor/version

JSON

Inbox

Definition

The version of the CreativeWork embodied by a specified resource.

Exact Match

1535 video

https://w3id.org/class/redaktor/video

JSON

Inbox

Definition

Associated Video for the entry
in PlaylistElement

Scope Note

ActivityPub Community

2289 video format

https://w3id.org/class/redaktor/videoFormat

JSON

Inbox

Definition

The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).

1536 views

https://w3id.org/class/redaktor/views

JSON

Inbox

Definition

views count of the video
see peertube documentation

Scope Note

ActivityPub Community

Example

{
  "type": "Video",
  "views": 35,
  "support": "Pay me a coffee when you see me",
  "waitTranscoding": true
}

2290 volume number

https://w3id.org/class/redaktor/volumeNumber

JSON

Inbox

Definition

Identifies the volume of publication or multi-part work; for example, “iii” or “2”.

1519 voters count

https://w3id.org/class/redaktor/votersCount

JSON

Inbox

Definition

mastodon “poll” (Question) voters count

Scope Note

ActivityPub Community

1537 wait transcoding

https://w3id.org/class/redaktor/waitTranscoding

JSON

Inbox

Definition

Whether or not we wait transcoding before publish the video.
ver peertube documentation

Scope Note

ActivityPub Community

Example

{
  "type": "Video",
  "views": 35,
  "support": "Pay me a coffee when you see me",
  "waitTranscoding": true
}

2291 warranty

https://w3id.org/class/redaktor/warranty

JSON

Inbox

Definition

The warranty promise(s) included in the offer.

Exact Match

2383 warranty scope

https://w3id.org/class/redaktor/warrantyScope

JSON

Inbox

Definition

The scope of the warranty promise.

2292 web checkin time

https://w3id.org/class/redaktor/webCheckinTime

JSON

Inbox

Definition

The time when a passenger can check into the flight online.

2293 web feed

https://w3id.org/class/redaktor/webFeed

JSON

Inbox

Definition

The URL for a feed, e.g. associated with a podcast series, blog, or series of date-stamped updates. This is usually RSS or Atom.

Exact Match

2294 weight

https://w3id.org/class/redaktor/weight

JSON

Inbox

Definition

The weight of the product or person.

Exact Match

2414 weight total

https://w3id.org/class/redaktor/weightTotal

JSON

Inbox

Definition

The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.

Typical unit code(s): KGM for kilogram, LBR for pound

  • Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.
  • Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].
  • Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.

2417 wheelbase

https://w3id.org/class/redaktor/wheelbase

JSON

Inbox

Definition

The distance between the centers of the front and rear wheels.

Typical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet

Exact Match

135 width

https://w3id.org/class/redaktor/width

JSON

Inbox

Definition

On a Link, specifies a hint as to the rendering width in device-independent pixels of the linked resource.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-width

Scope Note

: Property

Example

Example 138

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Link",
  "href": "http://example.org/image.png",
  "height": 100,
  "width": 100
}

2295 word count

https://w3id.org/class/redaktor/wordCount

JSON

Inbox

Definition

The number of words in the text of the Article.

Exact Match

2296 work example

https://w3id.org/class/redaktor/workExample

JSON

Inbox

Definition

Example/instance/realization/derivation of the concept of this creative work. eg. The paperback edition, first edition, or eBook.

2297 work location

https://w3id.org/class/redaktor/workLocation

JSON

Inbox

Definition

A contact location for a person's place of work.

2298 work presented

https://w3id.org/class/redaktor/workPresented

JSON

Inbox

Definition

The movie presented during this event.

2299 work translation

https://w3id.org/class/redaktor/workTranslation

JSON

Inbox

Definition

A work that is a translation of the content of this work. e.g. 西遊記 has an English workTranslation “Journey to the West”,a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo.

2300 works for

https://w3id.org/class/redaktor/worksFor

JSON

Inbox

Definition

Organizations that the person works for.

Exact Match

2403 worst rating

https://w3id.org/class/redaktor/worstRating

JSON

Inbox

Definition

The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.

2301 XPath

https://w3id.org/class/redaktor/xpath

JSON

Inbox

Definition

An XPath, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual “Web page element”.

Exact Match

2302 year built

https://w3id.org/class/redaktor/yearBuilt

JSON

Inbox

Definition

The year an [[Accommodation]] was constructed. This corresponds to the YearBuilt field in RESO.

Exact Match

2303 yield

https://w3id.org/class/redaktor/yield

JSON

Inbox

Definition

The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles.

Exact Match

c7 yuforium

https://w3id.org/class/redaktor/yuforium

JSON

Inbox

Definition

yuforium

159 owner

https://w3id.org/security/v1owner

JSON

Inbox

Definition

An owner is an entity that claims control over a particular resource. Note that ownership is best validated as a two-way relationship where the owner claims ownership over a particular resource, and the resource clearly identifies its owner.

Scope Note

ActivityPub Community

Example

The example below shows a cryptographic key that is owned by an entity identified by a URL. Presumably, this key is under the control of the owner and can be used to infer that any digitally signed content using the key was signed by a software agent of the owner:
{
  "@context": "https://w3id.org/security/v1",
  "@id": "https://payswarm.example.com/i/bob/keys/1",
  "@type": "Key",
  "owner": "https://payswarm.example.com/i/bob",
  "publicKeyPem": "-----BEGIN PUBLIC KEY-----
MII8YbF3s8q3c...j8Fk88FsRa3K
-----END PUBLIC KEY-----
"
}

160 public key

https://w3id.org/security/v1publicKey

JSON

Inbox

Definition

A public key property is used to specify a URL that contains information about a public key.
see The Security Vocabulary or mastodon usage documentation

Scope Note

ActivityPub Community

Example

The following example demonstrates the expression of a public key belonging to the identity https://payswarm.example.com/i/bob.
{
  "@context": "https://w3id.org/security/v1",
  "@id": "https://payswarm.example.com/i/bob/keys/1",
  "@type": "Key",
  "owner": "https://payswarm.example.com/i/bob",
  "publicKeyPem": "-----BEGIN PUBLIC KEY-----
MII8YbF3s8q3c...j8Fk88FsRa3K
-----END PUBLIC KEY-----
"
}

161 public key PEM

https://w3id.org/security/v1publicKeyPem

JSON

Inbox

Definition

A public key PEM property is used to specify the PEM-encoded version of the public key. This encoding is compatible with almost every Secure Sockets Layer library implementation and typically plugs directly into functions intializing public keys.

Scope Note

ActivityPub Community

Example

The following example demonstrates the expression of a public key in PEM format. The elipsis ("...") in the middle of the string denotes more data that has been abbreviated for the sake of the readability of the example.
{
  "@context": "https://w3id.org/security/v1",
  "@id": "https://payswarm.example.com/i/bob/keys/1",
  "owner": "https://payswarm.example.com/i/bob",
  "publicKeyPem": "-----BEGIN PUBLIC KEY-----
MII8YbF3s8q3c...j8Fk88FsRa3K
-----END PUBLIC KEY-----
"
}

162 signature

https://w3id.org/security/v1signature

JSON

Inbox

Definition

The signature property is used to associate a signature with a graph of information. The signature property is typically not included in the canonicalized graph that is then digested, and digitally signed.

Scope Note

ActivityPub Community

Example

The following example demonstrates how a signature on the graph identified by the subject http://example.com/people#jane is expressed using a JSON-LD signature:
{
  "@context": [
    "https://w3id.org/security/v1",
    { "foaf": "http://xmlns.com/foaf/0.1/" }
  ]
  "@graph": {
    "@id": "http://example.com/people#jane",
    "@type": "foaf:Person",
    "foaf:name": "Jane Doe",
    "foaf:homepage": "http://example.org/jane"
  },
  "signature": {
    "@type": "GraphSignature2012",
    "creator": "http://example.com/people/john-doe#key-5",
    "signatureValue": "OGQzNGVkMzVm4NTIyZTkZDYMmMzQzNmExMgoYzI43Q3ODIyOWM32NjI="
  }
}

163 signature algorithm

https://w3id.org/security/v1signatureAlgorithm

JSON

Inbox

Definition

The signature algorithm is used to specify the cryptographic signature function to use when digitally signing the digest data. Typically, text to be signed goes through three steps: 1) canonicalization, 2) digest, and 3) signature. This property is used to specify the algorithm that should be used for step #3. A signature class typically specifies a default signature algorithm, so this property rarely needs to be used in practice when specifying digital signatures.

Scope Note

ActivityPub Community

Example

{
  "@context": "https://w3id.org/security/v1",
  "@id": "https://w3id.org/security#GraphSignature2012",
  "@type": "Signature",
  "canonicalizationAlgorithm": "https://w3id.org/jsonld#UGNA2012",
  "digestAlgorithm": "http://example.com/digests#sha512",
  "signatureAlgorithm": "http://www.w3.org/2000/09/xmldsig#rsa-sha1",
}

164 signature value

https://w3id.org/security/v1signatureValue

JSON

Inbox

Definition

The signature value is used to express the output of the signature algorithm expressed in base-64 format.

Scope Note

ActivityPub Community

Example

The following example shows how the output of the signature algorithm can be encoded in JSON-LD:
{
  "@context": [
    "https://w3id.org/security/v1",
    { "foaf": "http://xmlns.com/foaf/0.1/" }
  ]
  "@graph": {
    "@id": "http://example.com/people#jane",
    "@type": "foaf:Person",
    "foaf:name": "Jane Doe",
    "foaf:homepage": "http://example.org/jane"
  },
  "signature": {
    "@type": "GraphSignature2012",
    "creator": "http://example.com/people/john-doe#key-5",
    "signatureValue": "OGQzNGVkMzVm4NTIyZTkZDYMmMzQzNmExMgoYzI43Q3ODIyOWM32NjI="
  }
}

ActivityPub and friends – An ontology of the fediverse

https://w3id.org/class/redaktor/scheme

JSON
Describes functions of actors, places, context and attachment in the fediverse.
The vocabulary is developed and maintained in the context of multiple sources,
e.g. https://wikidata.org, https://themoviedb.org or https://id.loc.gov/vocabulary/relators
The underlying turtle file maintains the mapping with conversion schemes [WIP]