2039 Branch
https://forgefed.peers.community/nsBranch
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
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
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
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
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
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
Definition
Identifies the Person assigned to work on this Ticket.see 4
2058 committed
https://forgefed.peers.community/nscommitted
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
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
Definition
see 4Example
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
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
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
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
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
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
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
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
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
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
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
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
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
Definition
see 4Example
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
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
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
Definition
For a resolved Ticket, specifies the time the Ticket has been resolved.see 4
2048 resolvedBy
https://forgefed.peers.community/nsresolvedBy
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
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
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
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
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
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
Definition
The Community Moderators - Link to OrderedCollectionsee Lemmy protocol docs. and Lemmy documentation
1557 stickied
https://join-lemmy.org#stickied
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
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
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"
}
1556 participation message
https://joinmobilizon.org/ns#participationMessage
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
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"
}
398 API Reference or software documentation
https://w3id.org/class/redaktor/APIReference
Definition
Reference documentation for application programming interfaces (APIs) documentation for software or specifications.Exact Match
566 About Page
https://w3id.org/class/redaktor/AboutPage
Definition
Web page type: About page.Exact Match
201 Accept
https://w3id.org/class/redaktor/Accept
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
: ActivityExample
{
"@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
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.Exact Match
420 Achieve
https://w3id.org/class/redaktor/Achieve
Definition
The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.Exact Match
2 Activity
https://w3id.org/class/redaktor/Activity
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
: CoreExample
{
"@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
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 theinbox
and outbox
properties.Scope Note
: Object202 Add
https://w3id.org/class/redaktor/Add
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
: ActivityExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"summary": "Sally added an object",
"type": "Add",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": "http://example.org/abc"
}
Exact Match
871 Administrative Area
https://w3id.org/class/redaktor/AdministrativeArea
Definition
A geographical region, typically under the jurisdiction of a particular government.Exact Match
1352 Adult Oriented Enumeration
https://w3id.org/class/redaktor/AdultOrientedEnumeration
Definition
Enumeration of considerations that make a product relevant or potentially restricted for adults only.Exact Match
330 Advertiser Supplied
https://w3id.org/class/redaktor/AdvertiserSupplied
Definition
Content is supplied by an organisation or individual that has paid the news provider for its placement345 Advice
https://w3id.org/class/redaktor/Advice
Definition
Letters and answers about readers' personal problemsExact Match
305 Advisory
https://w3id.org/class/redaktor/Advisory
Definition
Recommendation on editorial or technical matters by a provider to its customersExact Match
1402 Aggregate Rating
https://w3id.org/class/redaktor/AggregateRating
Definition
The average rating based on multiple ratings or reviews.Exact Match
86 Airline
https://w3id.org/class/redaktor/Airline
Definition
An organization that provides flights for passengers.Exact Match
1197 Alcohol Consideration
https://w3id.org/class/redaktor/AlcoholConsideration
Definition
Item contains alcohol or promotes alcohol consumption.Exact Match
28 Learning alignment
https://w3id.org/class/redaktor/AlignmentObject
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.
Exact Match
1325 All Wheel Drive Configuration
https://w3id.org/class/redaktor/AllWheelDriveConfiguration
Definition
All-wheel Drive is a transmission layout where the engine drives all four wheels.Exact Match
346 On This Day
https://w3id.org/class/redaktor/Almanac
Definition
List of data, including birthdays of famous people and items of historical significance, for a given dayExact Match
381 Analysis
https://w3id.org/class/redaktor/Analysis
Definition
Data and conclusions drawn by a journalist who has conducted in depth research for a story1290 Anesthesia
https://w3id.org/class/redaktor/Anesthesia
Definition
A specific branch of medical science that pertains to study of anesthetics and their application.Exact Match
347 Anniversary
https://w3id.org/class/redaktor/Anniversary
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
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
: ActivityExample
{
"@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"
}
}
}
78 Application
https://w3id.org/class/redaktor/Application
Definition
Describes a software application.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-application
Scope Note
: ActorExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Application",
"name": "Exampletron 3000"
}
1413 Archive Component
https://w3id.org/class/redaktor/ArchiveComponent
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.Exact Match
306 Archival material
https://w3id.org/class/redaktor/ArchiveMaterial
Definition
Material selected from the originator's archive that has been previously distributed64 Arrive
https://w3id.org/class/redaktor/Arrive
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
: ActivityExample
{
"@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"
}
}
Exact Match
11 Article
https://w3id.org/class/redaktor/Article
Definition
Represents any kind of multi-paragraph written work.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-article
Scope Note
: ObjectExample
{
"@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
Definition
The act of forming one's opinion, reaction or sentiment.Exact Match
67 Atlas
https://w3id.org/class/redaktor/Atlas
Definition
A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject.Exact Match
29 Audience
https://w3id.org/class/redaktor/Audience
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
Definition
Represents an audio document of any kind.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-audio
Scope Note
: ObjectExample
{
"@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"
}
}
Exact Match
1202 Audiobook Format
https://w3id.org/class/redaktor/AudiobookFormat
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.Exact Match
1243 Back Order
https://w3id.org/class/redaktor/BackOrder
Definition
Indicates that the item is available on back order.Exact Match
307 Background
https://w3id.org/class/redaktor/Background
Definition
Scene setting and explanation for an event being reported1233 Basic Income
https://w3id.org/class/redaktor/BasicIncome
Definition
BasicIncome: this is a benefit for basic income.Exact Match
1052 Bed And Breakfast
https://w3id.org/class/redaktor/BedAndBreakfast
Alt Label
- Bed And Breakfast
- BnB
Exact Match
62 Bed Details
https://w3id.org/class/redaktor/BedDetails
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).Exact Match
47 Bed Type
https://w3id.org/class/redaktor/BedType
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
Definition
The content describes how a story was reported and offers context on the reporting349 Biography
https://w3id.org/class/redaktor/Biography
Definition
Facts and background about a personExact Match
350 Birth Announcement
https://w3id.org/class/redaktor/BirthAnnouncement
Definition
News of newly born children204 Block
https://w3id.org/class/redaktor/Block
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
: ActivityExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"summary": "Sally blocked Joe",
"type": "Block",
"actor": "http://sally.example.org",
"object": "http://joe.example.org"
}
Exact Match
68 Blog
https://w3id.org/class/redaktor/Blog
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
1353 Boarding Policy Type
https://w3id.org/class/redaktor/BoardingPolicyType
Definition
A type of boarding policy used by an airline.Exact Match
1354 Book Format Type
https://w3id.org/class/redaktor/BookFormatType
Definition
The publication format of the book.Exact Match
30 Brand
https://w3id.org/class/redaktor/Brand
Definition
A brand is a name used by an organization or business person for labeling a product, product group, or similar.Exact Match
182 Broadcast Channel
https://w3id.org/class/redaktor/BroadcastChannel
Definition
A unique instance of a BroadcastService on a CableOrSatelliteService lineup.Exact Match
183 Broadcast Frequency Specification
https://w3id.org/class/redaktor/BroadcastFrequencySpecification
Definition
The frequency in MHz and the modulation used for a particular BroadcastService.Exact Match
1418 Broadcast Service
https://w3id.org/class/redaktor/BroadcastService
Definition
A delivery service through which content is provided via broadcast over the air or online.Exact Match
895 Bus station
https://w3id.org/class/redaktor/BusStation
Alt Label
- Bus terminal
- Coach terminal
Exact Match
1355 Business Entity Type
https://w3id.org/class/redaktor/BusinessEntityType
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:
Exact Match
1356 Business Function
https://w3id.org/class/redaktor/BusinessFunction
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:
- http://purl.org/goodrelations/v1#ConstructionInstallation
- http://purl.org/goodrelations/v1#Dispose
- http://purl.org/goodrelations/v1#LeaseOut
- http://purl.org/goodrelations/v1#Maintain
- http://purl.org/goodrelations/v1#ProvideService
- http://purl.org/goodrelations/v1#Repair
- http://purl.org/goodrelations/v1#Sell
- http://purl.org/goodrelations/v1#Buy
Exact Match
1227 Business Support
https://w3id.org/class/redaktor/BusinessSupport
Definition
BusinessSupport: this is a benefit for supporting businesses.Exact Match
443 Buy
https://w3id.org/class/redaktor/Buy
Definition
The act of giving money to a seller in exchange for goods or services rendered.Exact Match
1357 Car Usage Type
https://w3id.org/class/redaktor/CarUsageType
Definition
A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi.Exact Match
1274 Cardiovascular
https://w3id.org/class/redaktor/Cardiovascular
Definition
A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature.Exact Match
510 Chapter
https://w3id.org/class/redaktor/Chapter
Definition
One of the sections into which a book is divided. A chapter usually has a section number or a name.Exact Match
24 Chat message
https://w3id.org/class/redaktor/ChatMessage
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.
Exact Match
422 Check In
https://w3id.org/class/redaktor/CheckIn
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).Exact Match
423 Check Out
https://w3id.org/class/redaktor/CheckOut
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).Exact Match
567 Checkout Page
https://w3id.org/class/redaktor/CheckoutPage
Definition
Web page type: Checkout page.Exact Match
872 Civic Structure
https://w3id.org/class/redaktor/CivicStructure
Definition
A public structure, such as a town hall or concert hall.Exact Match
511 Claim
https://w3id.org/class/redaktor/Claim
Definition
AClaim
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
Definition
Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.Exact Match
512 Clip
https://w3id.org/class/redaktor/Clip
Definition
A short TV or radio program or a segment/part of a program.Exact Match
1224 Co Op
https://w3id.org/class/redaktor/CoOp
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
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
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
: ObjectExample
{
"@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
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
: ObjectExample
{
"@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"
}
]
}
400 Comedy
https://w3id.org/class/redaktor/Comedy
Definition
The object contains material relating to a comedy program and/or eventNote
Example: A news item or program classed as comedy, such as "Friends" or "The Office"586 Comic Cover Art
https://w3id.org/class/redaktor/ComicCoverArt
Definition
The artwork on the cover of a comic.Exact Match
514 Comic Story
https://w3id.org/class/redaktor/ComicStory
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.Exact Match
900 Community Namespaces
https://w3id.org/class/redaktor/Community
Definition
Extensions defined by ActivityPub implementations.Scope Note
ActivityPub Community1062 Community Health
https://w3id.org/class/redaktor/CommunityHealth
Definition
A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas.Exact Match
31 Computer Language
https://w3id.org/class/redaktor/ComputerLanguage
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.Exact Match
87 Consortium
https://w3id.org/class/redaktor/Consortium
Definition
A Consortium is a membership Organization whose members are typically Organizations.Exact Match
424 Consume
https://w3id.org/class/redaktor/Consume
Definition
The act of ingesting information/resources/food.Exact Match
569 Contact Page
https://w3id.org/class/redaktor/ContactPage
Definition
Web page type: Contact page.Exact Match
860 Contact Point
https://w3id.org/class/redaktor/ContactPoint
Definition
A contact point—for example, a Customer Complaints department.Exact Match
1358 Contact Point Option
https://w3id.org/class/redaktor/ContactPointOption
Definition
Enumerated options related to a ContactPoint.Exact Match
88 Corporation
https://w3id.org/class/redaktor/Corporation
Definition
Organization: A business corporation.Exact Match
1383 Correction Comment
https://w3id.org/class/redaktor/CorrectionComment
Definition
A [[comment]] that corrects [[CreativeWork]].Exact Match
564 Course
https://w3id.org/class/redaktor/Course
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
585 Cover Art
https://w3id.org/class/redaktor/CoverArt
Definition
The artwork on the outer surface of a CreativeWork.Exact Match
200 Create
https://w3id.org/class/redaktor/Create
Definition
Indicates that the actor has created the object.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-create
Scope Note
: ActivityExample
{
"@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
Definition
The most generic kind of creative work, including books, movies, photographs, software programs, etc.Exact Match
323 Season
https://w3id.org/class/redaktor/CreativeWorkSeason
Definition
A media season e.g. tv, radio, video game etc.Exact Match
324 Series
https://w3id.org/class/redaktor/CreativeWorkSeries
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.Exact Match
1384 Css Selector Type
https://w3id.org/class/redaktor/CssSelectorType
Definition
Text representing a CSS selector.Exact Match
955 Currency exchange
https://w3id.org/class/redaktor/CurrencyConversionService
Alt Label
- Currency Conversion Service
Exact Match
352 Current Events
https://w3id.org/class/redaktor/Current
Definition
Content about events taking place at the time of the reportExact Match
353 Curtain Raiser
https://w3id.org/class/redaktor/CurtainRaiser
Definition
Information or kickoff piece for a live event that is about to take place1253 Damaged Condition
https://w3id.org/class/redaktor/DamagedCondition
Definition
Indicates that the item is damaged.Exact Match
1720 Dance Group
https://w3id.org/class/redaktor/DanceGroup
Definition
A dance group—for example, the Alvin Ailey Dance Theater or Riverdance.Exact Match
1198 Dangerous Good Consideration
https://w3id.org/class/redaktor/DangerousGoodConsideration
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.Exact Match
108 Data Catalog
https://w3id.org/class/redaktor/DataCatalog
Definition
A collection of datasets.Exact Match
1405 Data Feed
https://w3id.org/class/redaktor/DataFeed
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
Definition
A single item within a larger data feed.Exact Match
1392 Dataset
https://w3id.org/class/redaktor/Dataset
Definition
A body of structured information describing some topic(s) of interest.Exact Match
1359 Day Of Week
https://w3id.org/class/redaktor/DayOfWeek
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
313 Planner
https://w3id.org/class/redaktor/Daybook
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 agendaExact Match
33 Definition
https://w3id.org/class/redaktor/DefinedTerm
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
Exact Match
1410 Defined Term Set
https://w3id.org/class/redaktor/DefinedTermSet
Definition
A set of defined terms for example a set of categories or a classification scheme, a glossary, dictionary or enumeration.Exact Match
205 Delete
https://w3id.org/class/redaktor/Delete
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
: ActivityExample
{
"@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"
}
}
Exact Match
1360 Delivery Method
https://w3id.org/class/redaktor/DeliveryMethod
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:
- http://purl.org/goodrelations/v1#DeliveryModeDirectDownload
- http://purl.org/goodrelations/v1#DeliveryModeFreight
- http://purl.org/goodrelations/v1#DeliveryModeMail
- http://purl.org/goodrelations/v1#DeliveryModeOwnFleet
- http://purl.org/goodrelations/v1#DeliveryModePickUp
- http://purl.org/goodrelations/v1#DHL
- http://purl.org/goodrelations/v1#FederalExpress
- http://purl.org/goodrelations/v1#UPS
Exact Match
1303 Dentistry
https://w3id.org/class/redaktor/Dentistry
Definition
A branch of medicine that is involved in the dental care.Exact Match
1064 Dermatology
https://w3id.org/class/redaktor/Dermatology
Definition
A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.Exact Match
1267 Diabetic Diet
https://w3id.org/class/redaktor/DiabeticDiet
Definition
A diet appropriate for people with diabetes.Exact Match
1718 Diagnostic Lab
https://w3id.org/class/redaktor/DiagnosticLab
Definition
A medical Diagnostic Lab.Exact Match
1065 Diet Nutrition
https://w3id.org/class/redaktor/DietNutrition
Definition
Dietetic and nutrition as a medical specialty.Exact Match
1229 Disability Support
https://w3id.org/class/redaktor/DisabilitySupport
Definition
DisabilitySupport: this is a benefit for disability support.Exact Match
1237 Discontinued
https://w3id.org/class/redaktor/Discontinued
Definition
Indicates that the item has been discontinued.Exact Match
999 Community Discussion
https://w3id.org/class/redaktor/Discussion
Definition
Extensions defined by ActivityPub implementations but interpreted differently.Scope Note
ActivityPub Community309 Discussion Forum Posting
https://w3id.org/class/redaktor/DiscussionForumPosting
Definition
A posting to a discussion forumExact Match
206 Dislike
https://w3id.org/class/redaktor/Dislike
Definition
Indicates that the actor dislikes the object.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-dislike
Scope Note
: ActivityExample
{
"@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"
}
Exact Match
48 Distance
https://w3id.org/class/redaktor/Distance
Definition
Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'.Exact Match
10 Document
https://w3id.org/class/redaktor/Document
Definition
Represents a document of any kind.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-document
Scope Note
: ObjectExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Document",
"name": "4Q Sales Forecast",
"url": "http://example.org/4q-sales-forecast.pdf"
}
401 Drama
https://w3id.org/class/redaktor/Drama
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
Definition
A picture or diagram made with a pencil, pen, or crayon rather than paint.Exact Match
1375 Drive Wheel Configuration Value
https://w3id.org/class/redaktor/DriveWheelConfigurationValue
Definition
A value indicating which roadwheels will receive torque.Exact Match
1208 Driving School Vehicle Usage
https://w3id.org/class/redaktor/DrivingSchoolVehicleUsage
Definition
Indicates the usage of the vehicle for driving school.Exact Match
591 Educational Occupational Credential
https://w3id.org/class/redaktor/EducationalOccupationalCredential
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.Exact Match
1066 Emergency
https://w3id.org/class/redaktor/Emergency
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
22 Custom Emoji
https://w3id.org/class/redaktor/Emoji
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 CommunityExample
{
"@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"
}
}
]
}
Exact Match
1291 Endocrine
https://w3id.org/class/redaktor/Endocrine
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
Definition
A Class describing the properties for Actors'endpoints.
44 Energy
https://w3id.org/class/redaktor/Energy
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
Definition
The object contains material relating to an entertainment program and/or eventNote
Example: A news item or program covering general entertainment, such as a film premier.986 Entertainment Business
https://w3id.org/class/redaktor/EntertainmentBusiness
Definition
To broad for OSM. Please select a more specific entry.Exact Match
325 Episode
https://w3id.org/class/redaktor/Episode
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
Definition
Represents any kind of event.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-event
Scope Note
: ObjectExample
{
"@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"
}
590 Exclusive
https://w3id.org/class/redaktor/Exclusive
Definition
News reported by one journalist or news organisation before others, and of exceptional originality or importanceExact Match
570 FAQ Page
https://w3id.org/class/redaktor/FAQPage
Definition
A FAQPage is aWebPage
presenting one or more "Frequently asked questions" (see also QAPage).Exact Match
354 Fact Check
https://w3id.org/class/redaktor/FactCheck
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
Definition
The object contains material relating to a factual program and/or eventNote
Example: A news item or program covering a documentary, such as David Attenborough’s “Life on Earth”Alt Label
- Subject-related
355 Feature
https://w3id.org/class/redaktor/Feature
Definition
Content about a particular event or individual that may not be significant to current breaking news301 Fictional
https://w3id.org/class/redaktor/Fictional
Definition
A person or thing with a fictional meaning. For example a Novel or Character.356 Fixture
https://w3id.org/class/redaktor/Fixture
Definition
Items published on a regular schedule, such as columns, cartoons, stock prices and weather forecastsExact Match
207 Flag
https://w3id.org/class/redaktor/Flag
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
: ActivityExample
{
"@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"
}
}
Exact Match
32 Floor Plan
https://w3id.org/class/redaktor/FloorPlan
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, someApartmentComplex
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
208 Follow
https://w3id.org/class/redaktor/Follow
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
: ActivityExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"summary": "Sally followed John",
"type": "Follow",
"actor": {
"type": "Person",
"name": "Sally"
},
"object": {
"type": "Person",
"name": "John"
}
}
Exact Match
988 Food Establishment
https://w3id.org/class/redaktor/FoodEstablishment
Definition
To broad for OSM. Please select a more specific entry.Exact Match
311 Forecast
https://w3id.org/class/redaktor/Forecast
Definition
Opinion as to the outcome of a future eventExact Match
1324 Four Wheel Drive Configuration
https://w3id.org/class/redaktor/FourWheelDriveConfiguration
Definition
Four-wheel drive is a transmission layout where the engine primarily drives two wheels with a part-time four-wheel drive capability.Exact Match
1215 Friday
https://w3id.org/class/redaktor/Friday
Definition
The day of the week between Thursday and Saturday.Exact Match
357 From the Scene
https://w3id.org/class/redaktor/FromTheScene
Definition
Report from the location of an event1323 Front Wheel Drive Configuration
https://w3id.org/class/redaktor/FrontWheelDriveConfiguration
Definition
Front-wheel drive is a transmission layout where the engine drives the front wheels.Exact Match
1716 Funding Agency
https://w3id.org/class/redaktor/FundingAgency
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.Exact Match
89 Funding Scheme
https://w3id.org/class/redaktor/FundingScheme
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;Exact Match
516 Game
https://w3id.org/class/redaktor/Game
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
Definition
Indicates whether this game is multi-player, co-op or single-player.Exact Match
61 Game Server
https://w3id.org/class/redaktor/GameServer
Definition
Server that provides game interaction in a multiplayer game.Exact Match
1371 Game Server Status
https://w3id.org/class/redaktor/GameServerStatus
Definition
Status of a game server.Exact Match
1304 Gastroenterologic
https://w3id.org/class/redaktor/Gastroenterologic
Definition
A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.Exact Match
1363 Gender Type
https://w3id.org/class/redaktor/GenderType
Definition
An enumeration of genders.Exact Match
1294 Genetic
https://w3id.org/class/redaktor/Genetic
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
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
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
1266 Gluten Free Diet
https://w3id.org/class/redaktor/GlutenFreeDiet
Definition
A diet exclusive of gluten.Exact Match
1362 Government Benefits Type
https://w3id.org/class/redaktor/GovernmentBenefitsType
Definition
GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered.Exact Match
90 Government Organization
https://w3id.org/class/redaktor/GovernmentOrganization
Definition
A governmental organization or agency.Exact Match
1417 Government Service
https://w3id.org/class/redaktor/GovernmentService
Definition
A service provided by a government organization, e.g. food stamps, veterans benefits, etc.Exact Match
35 Grant
https://w3id.org/class/redaktor/Grant
Definition
A grant, typically financial or otherwise quantifiable, of resources. Typically afunder
(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 using
amountas a
MonetaryAmount`.Exact Match
1203 Graphic Novel
https://w3id.org/class/redaktor/GraphicNovel
Definition
Book format: GraphicNovel. May represent a bound collection of ComicIssue instances.Exact Match
79 Group
https://w3id.org/class/redaktor/Group
Definition
Represents a formal or informal collective of Actors.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-group
Scope Note
: ActorExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Group",
"name": "Big Beards of Austin"
}
Exact Match
1200 Group Boarding Policy
https://w3id.org/class/redaktor/GroupBoardingPolicy
Definition
The airline boards by groups based on check-in time, priority, etc.Exact Match
1069 Gynecologic
https://w3id.org/class/redaktor/Gynecologic
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.Exact Match
1261 Halal Diet
https://w3id.org/class/redaktor/HalalDiet
Definition
A diet conforming to Islamic dietary practices.Exact Match
25 Hashtag
https://w3id.org/class/redaktor/Hashtag
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
: ExtensionExact Match
990 Health and Beauty Business
https://w3id.org/class/redaktor/HealthAndBeautyBusiness
Definition
To broad for OSM. Please select a more specific entry.Exact Match
1226 Health Care
https://w3id.org/class/redaktor/HealthCare
Definition
HealthCare: this is a benefit for health care.Exact Match
1193 Healthcare Consideration
https://w3id.org/class/redaktor/HealthcareConsideration
Definition
Item is a pharmaceutical (e.g., a prescription or OTC drug) or a restricted medical device.Exact Match
1210 Hearing Impaired Supported
https://w3id.org/class/redaktor/HearingImpairedSupported
Definition
Uses devices to support users with hearing impairments.Exact Match
358 Help us to Report
https://w3id.org/class/redaktor/HelpUsToReport
Definition
The news item is a call for readers to provide information that may help journalists to investigate a potential news story1308 Hematologic
https://w3id.org/class/redaktor/Hematologic
Definition
A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs.Exact Match
1260 Hindu Diet
https://w3id.org/class/redaktor/HinduDiet
Definition
A diet conforming to Hindu dietary practices, in particular, beef-free.Exact Match
359 History
https://w3id.org/class/redaktor/History
Definition
The object content is based on previous rather than current events.Exact Match
991 Home and Construction Business
https://w3id.org/class/redaktor/HomeAndConstructionBusiness
Definition
To broad for OSM. Please select a more specific entry.Exact Match
576 Hospitality or Couchsurfing Listing
https://w3id.org/class/redaktor/HospitalityListing
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.
Exact Match
517 How To
https://w3id.org/class/redaktor/HowTo
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
Definition
A direction indicating a single action to do in the instructions for how to achieve a result.Exact Match
1388 How to Item
https://w3id.org/class/redaktor/HowToItem
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
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).Exact Match
593 How To Step
https://w3id.org/class/redaktor/HowToStep
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
Definition
A supply consumed when performing the instructions for how to achieve a result.Exact Match
1389 How to Tool
https://w3id.org/class/redaktor/HowToTool
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
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
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.Exact Match
26 Identity Proof
https://w3id.org/class/redaktor/IdentityProof
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 CommunityExample
{
"@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"
}
]
}
Exact Match
209 Ignore
https://w3id.org/class/redaktor/Ignore
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
: ActivityExample
{
"@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
Definition
An image document of any kind.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image
Scope Note
: ObjectExample
{
"@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
Definition
Web page type: Image gallery page.Exact Match
1239 In Stock
https://w3id.org/class/redaktor/InStock
Definition
Indicates that the item is in stock.Exact Match
1240 In Store Only
https://w3id.org/class/redaktor/InStoreOnly
Definition
Indicates that the item is available only at physical locations.Exact Match
1295 Infectious
https://w3id.org/class/redaktor/Infectious
Definition
Something in medical science that pertains to infectious diseases i.e caused by bacterial, viral, fungal or parasitic infections.Exact Match
1064 Infohash
https://w3id.org/class/redaktor/Infohash
Definition
Infohashes (in:name
) for p2p-media-loader of every resolution.see peertube documentation
Scope Note
ActivityPub CommunityExample
{
"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"
}
]
}
]
}
Exact Match
439 Install
https://w3id.org/class/redaktor/Install
Definition
The act of installing an application.Exact Match
59 Interaction Counter
https://w3id.org/class/redaktor/InteractionCounter
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.Exact Match
360 Interview
https://w3id.org/class/redaktor/Interview
Definition
The report of a dialogue between a journalist and a news source or significant personExact Match
5 Intransitive Activity
https://w3id.org/class/redaktor/IntransitiveActivity
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
: ActivityExample
{
"@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
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
: ActivityExample
{
"@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
Definition
A statement of the money due for goods or services; a bill.Exact Match
1364 Item Availability
https://w3id.org/class/redaktor/ItemAvailability
Definition
A list of possible product availability options.Exact Match
36 Item List
https://w3id.org/class/redaktor/ItemList
Definition
A list of items of any sort—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
Definition
An ItemList ordered with lower values listed first.Exact Match
1247 Item List Order Descending
https://w3id.org/class/redaktor/ItemListOrderDescending
Definition
An ItemList ordered with higher values listed first.Exact Match
1365 Item List-Order Type
https://w3id.org/class/redaktor/ItemListOrderType
Definition
Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.Exact Match
1246 Item List Unordered
https://w3id.org/class/redaktor/ItemListUnordered
Definition
An ItemList ordered with no explicit order.Exact Match
571 Item Page
https://w3id.org/class/redaktor/ItemPage
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
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
: ActivityExample
{
"@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
Definition
A diet conforming to Jewish dietary practices.Exact Match
1288 Laboratory Science
https://w3id.org/class/redaktor/LaboratoryScience
Definition
A medical science pertaining to chemical, hematological, immunologic, microscopic, or bacteriological diagnostic analyses or research.Exact Match
873 Landform
https://w3id.org/class/redaktor/Landform
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
Definition
An historical landmark or building.Exact Match
43 Language
https://w3id.org/class/redaktor/Language
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
520 Learning Resource
https://w3id.org/class/redaktor/LearningResource
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
Exact Match
212 Leave
https://w3id.org/class/redaktor/Leave
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
: ActivityExample
{
"@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
Definition
The steering position is on the left side of the vehicle (viewed from the main direction of driving).Exact Match
213 Like
https://w3id.org/class/redaktor/Like
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
: ActivityExample
{
"@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"
}
Exact Match
1245 Limited Availability
https://w3id.org/class/redaktor/LimitedAvailability
Definition
Indicates that the item has limited availability.Exact Match
4 Link
https://w3id.org/class/redaktor/Link
Definition
A Link is an indirect, qualified reference to a resource identified by a URL. The fundamental model for links is established by RFC5988. Many of the properties defined by the Activity Vocabulary allow values that are either instances of Object or Link. When a Link is used, it establishes a qualified relation connecting the subject (the containing object) to the resource identified by the href. Properties of the Link are properties of the reference as opposed to properties of the resource.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link
Scope Note
: CoreExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Link",
"href": "http://example.org/abc",
"hreflang": "en",
"mediaType": "text/html",
"name": "An example link"
}
Exact Match
37 List Item
https://w3id.org/class/redaktor/ListItem
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
Definition
Indicates that the actor has listened to the object.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-listen
Scope Note
: ActivityExample
{
"@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
Definition
Usually a sidebar that lists facts related to a topic or story382 Live Coverage
https://w3id.org/class/redaktor/LiveCoverage
Definition
News item containing ongoing, up to the minute coverage of a news event, such as a live blog or live video feed84 Local Business
https://w3id.org/class/redaktor/LocalBusiness
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.Exact Match
1379 Location Feature Specification
https://w3id.org/class/redaktor/LocationFeatureSpecification
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.Exact Match
1222 Locker Delivery
https://w3id.org/class/redaktor/LockerDelivery
Definition
A DeliveryMethod in which an item is made available via locker.Exact Match
431 Lose
https://w3id.org/class/redaktor/Lose
Definition
The act of being defeated in a competitive activity.Exact Match
1264 Low Calorie Diet
https://w3id.org/class/redaktor/LowCalorieDiet
Definition
A diet focused on reduced calorie intake.Exact Match
1258 Low Fat Diet
https://w3id.org/class/redaktor/LowFatDiet
Definition
A diet focused on reduced fat and cholesterol intake.Exact Match
1265 Low Lactose Diet
https://w3id.org/class/redaktor/LowLactoseDiet
Definition
A diet appropriate for people with lactose intolerance.Exact Match
1263 Low Salt Diet
https://w3id.org/class/redaktor/LowSaltDiet
Definition
A diet focused on reduced sodium intake.Exact Match
521 Manuscript
https://w3id.org/class/redaktor/Manuscript
Definition
A book, document, or piece of music written by hand rather than typed or printed.Exact Match
1366 Map Category Type
https://w3id.org/class/redaktor/MapCategoryType
Definition
An enumeration of several kinds of Map.Exact Match
45 Mass
https://w3id.org/class/redaktor/Mass
Definition
Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.Exact Match
523 Math Solver
https://w3id.org/class/redaktor/MathSolver
Definition
A math solver which is capable of solving a subset of mathematical problems.Exact Match
1396 Media Object
https://w3id.org/class/redaktor/MediaObject
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).Exact Match
109 Media Subscription
https://w3id.org/class/redaktor/MediaSubscription
Definition
A subscription which allows a user to access media including audio, video, books, etc.Exact Match
1386 Medical Audience
https://w3id.org/class/redaktor/MedicalAudience
Definition
Target audiences for medical web pages.Exact Match
1372 Medical Audience Type
https://w3id.org/class/redaktor/MedicalAudienceType
Definition
Target audiences types for medical web pages. Enumerated type.Exact Match
92 Medical Organization
https://w3id.org/class/redaktor/MedicalOrganization
Definition
A medical organization (physical or not), such as hospital, institution or clinic.Exact Match
572 Medical Page
https://w3id.org/class/redaktor/MedicalPage
Definition
A page dealing with a medical topic.Exact Match
1272 Medical Researcher
https://w3id.org/class/redaktor/MedicalResearcher
Definition
Medical researchers.Exact Match
395 Medical Scholarly
https://w3id.org/class/redaktor/MedicalScholarlyArticle
Definition
A medical scholarly articleExact Match
1373 Medical Specialty
https://w3id.org/class/redaktor/MedicalSpecialty
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.Exact Match
23 Mention
https://w3id.org/class/redaktor/Mention
Definition
A specialized Link that represents an @mention.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mention
Scope Note
: ObjectExample
{
"@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"
}
Exact Match
1400 Menu
https://w3id.org/class/redaktor/Menu
Definition
A structured representation of food or drink items available from a FoodEstablishment.Exact Match
54 Menu Item
https://w3id.org/class/redaktor/MenuItem
Definition
A food or drink item listed in a menu or menu section.Exact Match
1399 Menu Section
https://w3id.org/class/redaktor/MenuSection
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.Exact Match
77 Merchant Return Policy
https://w3id.org/class/redaktor/MerchantReturnPolicy
Definition
A MerchantReturnPolicy provides information about product return policies associated with an [[Organization]], [[Product]], or [[Offer]].Exact Match
1071 Midwifery
https://w3id.org/class/redaktor/Midwifery
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
1216 Monday
https://w3id.org/class/redaktor/Monday
Definition
The day of the week between Sunday and Tuesday.Exact Match
55 Monetary Amount
https://w3id.org/class/redaktor/MonetaryAmount
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.Exact Match
550 Monetary Grant
https://w3id.org/class/redaktor/MonetaryGrant
Definition
A monetary grant.See
Grant
for details.Exact Match
215 Move
https://w3id.org/class/redaktor/Move
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
: ActivityExample
{
"@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"
}
}
557 Movie Clip
https://w3id.org/class/redaktor/MovieClip
Definition
A short segment/part of a movie.Exact Match
1223 Multi Player
https://w3id.org/class/redaktor/MultiPlayer
Definition
Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.Exact Match
1297 Musculoskeletal
https://w3id.org/class/redaktor/Musculoskeletal
Definition
A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.Exact Match
327 Music Album
https://w3id.org/class/redaktor/MusicAlbum
Definition
A collection of music tracks.Exact Match
524 Music Composition
https://w3id.org/class/redaktor/MusicComposition
Definition
A musical composition.Exact Match
1721 Music Group
https://w3id.org/class/redaktor/MusicGroup
Definition
A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.Exact Match
525 Music Playlist
https://w3id.org/class/redaktor/MusicPlaylist
Definition
A collection of music tracks in playlist form. Use:Playlist
for Video-Playlists.Alt Label
- Music Tracklist
Exact Match
526 Music Recording
https://w3id.org/class/redaktor/MusicRecording
Definition
A music recording (track), usually a single song.Exact Match
328 Music Release
https://w3id.org/class/redaktor/MusicRelease
Definition
A Music Release is a specific release of a music album.Exact Match
93 NGO
https://w3id.org/class/redaktor/NGO
Definition
Organization: Non-governmental Organization.Exact Match
1194 Narcotic Consideration
https://w3id.org/class/redaktor/NarcoticConsideration
Definition
Item is a narcotic as defined by the 1961 UN convention, for example marijuna or heroin.Exact Match
739 Gardening
https://w3id.org/class/redaktor/NatureGardening
Definition
Nature Events like Cherry Blossom and Gardening1312 Neurologic
https://w3id.org/class/redaktor/Neurologic
Definition
A specific branch of medical science that studies the nerves and nervous system and its respective disease states.Exact Match
1256 New Condition
https://w3id.org/class/redaktor/NewCondition
Definition
Indicates that the item is new.Exact Match
343 News
https://w3id.org/class/redaktor/News
Definition
The object contains material relating to general news program and/or eventNote
Example: A news item or program covering general news such as the 6pm News program (whole program) and individual items within that program.94 News Media Organization
https://w3id.org/class/redaktor/NewsMediaOrganization
Definition
A News/Media organization such as a newspaper or TV station.Exact Match
365 Profile
https://w3id.org/class/redaktor/NewsProfile
Definition
Description of the life or activity of a news subject based on facts discovered through research and interviewsExact Match
1369 Nonprofit Type
https://w3id.org/class/redaktor/NonprofitType
Definition
NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be.Exact Match
15 Note
https://w3id.org/class/redaktor/Note
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
: ObjectExample
{
"@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!"
}
Exact Match
1072 Nursing
https://w3id.org/class/redaktor/Nursing
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
Definition
Nutritional information about the recipe.Exact Match
362 Obituary
https://w3id.org/class/redaktor/Obituary
Definition
A narrative about an individual's life and achievements for publication after deathExact Match
0 Object
https://w3id.org/class/redaktor/Object
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
: CoreExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Object",
"id": "http://www.test.example/object/1",
"name": "A Simple, non-specific object"
}
Exact Match
52 Observation
https://w3id.org/class/redaktor/Observation
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.
Exact Match
1073 Obstetric
https://w3id.org/class/redaktor/Obstetric
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
Definition
A profession, may involve prolonged training and/or a formal qualification.Exact Match
216 Offer
https://w3id.org/class/redaktor/Offer
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
: ActivityExample
{
"@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
Definition
An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider.Exact Match
1367 Offer Item Condition
https://w3id.org/class/redaktor/OfferItemCondition
Definition
A list of possible conditions for the item.Exact Match
105 Offer Shipping Details
https://w3id.org/class/redaktor/OfferShippingDetails
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.Exact Match
1269 Offline Permanently
https://w3id.org/class/redaktor/OfflinePermanently
Definition
Game server status: OfflinePermanently. Server is offline and not available.Exact Match
1271 Offline Temporarily
https://w3id.org/class/redaktor/OfflineTemporarily
Definition
Game server status: OfflineTemporarily. Server is offline now but it can be online soon.Exact Match
1221 On Site Pickup
https://w3id.org/class/redaktor/OnSitePickup
Definition
A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.Exact Match
1074 Oncologic
https://w3id.org/class/redaktor/Oncologic
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
Definition
OneTimePayments: this is a benefit for one-time payments for individuals.Exact Match
1270 Online
https://w3id.org/class/redaktor/Online
Definition
Game server status: Online. Server is available.Exact Match
95 Online Business
https://w3id.org/class/redaktor/OnlineBusiness
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.Exact Match
1268 Online Full
https://w3id.org/class/redaktor/OnlineFull
Definition
Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached.Exact Match
1238 Online Only
https://w3id.org/class/redaktor/OnlineOnly
Definition
Indicates that the item is available only online.Exact Match
56 Opening Hours Specification
https://w3id.org/class/redaktor/OpeningHoursSpecification
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.
Exact Match
312 Opinion
https://w3id.org/class/redaktor/Opinion
Definition
Editorial comment that reflects the views of the author1076 Optometric
https://w3id.org/class/redaktor/Optometric
Definition
The science or practice of testing visual acuity and prescribing corrective lenses.Exact Match
184 Order
https://w3id.org/class/redaktor/Order
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
Definition
OrderStatus representing cancellation of an order.Exact Match
1317 Order Delivered
https://w3id.org/class/redaktor/OrderDelivered
Definition
OrderStatus representing successful delivery of an order.Exact Match
1320 Order In Transit
https://w3id.org/class/redaktor/OrderInTransit
Definition
OrderStatus representing that an order is in transit.Exact Match
38 Item Order
https://w3id.org/class/redaktor/OrderItem
Definition
An order item is a line of an order. It includes the quantity and shipping details of a bought offer.Exact Match
1319 Order Payment Due
https://w3id.org/class/redaktor/OrderPaymentDue
Definition
OrderStatus representing that payment is due on an order.Exact Match
1322 Order Pickup Available
https://w3id.org/class/redaktor/OrderPickupAvailable
Definition
OrderStatus representing availability of an order for pickup.Exact Match
1316 Order Problem
https://w3id.org/class/redaktor/OrderProblem
Definition
OrderStatus representing that there is a problem with the order.Exact Match
1321 Order Processing
https://w3id.org/class/redaktor/OrderProcessing
Definition
OrderStatus representing that an order is being processed.Exact Match
1318 Order Returned
https://w3id.org/class/redaktor/OrderReturned
Definition
OrderStatus representing that an order has been returned.Exact Match
1374 Order Status
https://w3id.org/class/redaktor/OrderStatus
Definition
Enumerated status values for Order.Exact Match
8 Ordered Collection
https://w3id.org/class/redaktor/OrderedCollection
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
: ObjectExample
{
"@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
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
: ObjectExample
{
"@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
Definition
Represents an organization.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-organization
Scope Note
: ActorExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Organization",
"name": "Example Co."
}
426 Organize
https://w3id.org/class/redaktor/Organize
Definition
The act of manipulating/administering/supervising/controlling one or more objects.Exact Match
1078 Otolaryngologic
https://w3id.org/class/redaktor/Otolaryngologic
Definition
A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.Exact Match
1236 Out Of Stock
https://w3id.org/class/redaktor/OutOfStock
Definition
Indicates that the item is out of stock.Exact Match
106 Ownership Info
https://w3id.org/class/redaktor/OwnershipInfo
Definition
A structured value providing information about when a certain organization or person owned a certain product.Exact Match
16 Page
https://w3id.org/class/redaktor/Page
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
: ObjectExample
{
"@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
Definition
PaidLeave: this is a benefit for paid leave.Exact Match
104 Parcel Delivery
https://w3id.org/class/redaktor/ParcelDelivery
Definition
The delivery of a parcel either via the postal service or a commercial service.Exact Match
1220 Parcel Service
https://w3id.org/class/redaktor/ParcelService
Definition
A private parcel service as the delivery mode available for a certain offer.
Commonly used values:
Exact Match
1230 Parental Support
https://w3id.org/class/redaktor/ParentalSupport
Definition
ParentalSupport: this is a benefit for parental support.Exact Match
1300 Pathology
https://w3id.org/class/redaktor/Pathology
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
1351 Payment Method
https://w3id.org/class/redaktor/PaymentMethod
Definition
A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.
Commonly used values:
- http://purl.org/goodrelations/v1#ByBankTransferInAdvance
- http://purl.org/goodrelations/v1#ByInvoice
- http://purl.org/goodrelations/v1#Cash
- http://purl.org/goodrelations/v1#CheckInAdvance
- http://purl.org/goodrelations/v1#COD
- http://purl.org/goodrelations/v1#DirectDebit
- http://purl.org/goodrelations/v1#GoogleCheckout
- http://purl.org/goodrelations/v1#PayPal
- http://purl.org/goodrelations/v1#PaySwarm
Exact Match
1080 Pediatric
https://w3id.org/class/redaktor/Pediatric
Definition
A specific branch of medical science that specializes in the care of infants, children and adolescents.Exact Match
96 Performing Group
https://w3id.org/class/redaktor/PerformingGroup
Definition
A performance group, such as a band, an orchestra, or a circus.Exact Match
189 Permit
https://w3id.org/class/redaktor/Permit
Definition
A permit issued by an organization, e.g. a parking pass.Exact Match
81 Person
https://w3id.org/class/redaktor/Person
Definition
Represents an individual person.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-person
Scope Note
: ActorExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Person",
"name": "Sally Smith"
}
1307 Pharmacy Specialty
https://w3id.org/class/redaktor/PharmacySpecialty
Definition
The practice or art and science of preparing and dispensing drugs and medicines.Exact Match
71 Photo-essay
https://w3id.org/class/redaktor/PhotoEssay
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
Definition
A factual photographic story often with captions or text between the pictures.1083 Physiotherapy
https://w3id.org/class/redaktor/Physiotherapy
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..Exact Match
17 Place
https://w3id.org/class/redaktor/Place
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
: ObjectExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Place",
"name": "Work"
}
1084 Plastic Surgery
https://w3id.org/class/redaktor/PlasticSurgery
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.Exact Match
427 Play
https://w3id.org/class/redaktor/Play
Definition
The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.Exact Match
76 Playlist
https://w3id.org/class/redaktor/Playlist
Definition
The object is used to represent a video playlist. It extends OrderedCollectionPage and items are PlaylistElement.see peertube documentation
Scope Note
ActivityPub CommunityExact Match
27 Playlist Element
https://w3id.org/class/redaktor/PlaylistElement
Definition
The object is used to represent a video playlist element inside the Playlist collection.see peertube documentation
Scope Note
ActivityPub CommunityExact Match
1085 Podiatric
https://w3id.org/class/redaktor/Podiatric
Definition
Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders.Exact Match
363 Polls and Surveys
https://w3id.org/class/redaktor/PollsAndSurveys
Definition
Numeric or other information produced as a result of questionnaires or interviews861 Postal address
https://w3id.org/class/redaktor/PostalAddress
Definition
The mailing address of an item.Example
see subpropertiesExact Match
1244 Pre Order
https://w3id.org/class/redaktor/PreOrder
Definition
Indicates that the item is available for pre-order.Exact Match
1242 Pre Sale
https://w3id.org/class/redaktor/PreSale
Definition
Indicates that the item is available for ordering and delivery before general availability.Exact Match
364 Press-Digest
https://w3id.org/class/redaktor/PressDigest
Definition
Roundup of news or editorial content from other sources, published in whole or in part without significant journalistic changes331 Press Release
https://w3id.org/class/redaktor/PressRelease
Definition
Promotional material or information provided to a news organisation314 Preview
https://w3id.org/class/redaktor/Preview
Definition
Content written ahead of an event, such as a preview of an upcoming summer movieExact Match
50 Price Specification
https://w3id.org/class/redaktor/PriceSpecification
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.Exact Match
1086 Primary Care
https://w3id.org/class/redaktor/PrimaryCare
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.Exact Match
53 Product
https://w3id.org/class/redaktor/Product
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
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
: ObjectExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Profile",
"summary": "Sally's Profile",
"describes": {
"type": "Person",
"name": "Sally Smith"
}
}
Exact Match
573 Profile Page
https://w3id.org/class/redaktor/ProfilePage
Definition
Web page type: Profilseite.Exact Match
39 Program Membership
https://w3id.org/class/redaktor/ProgramMembership
Definition
Used to describe membership in a loyalty programs (e.g. “StarAliance”), traveler clubs (e.g. “AAA”), purchase clubs (“Safeway Club”), etc.Exact Match
83 Project
https://w3id.org/class/redaktor/Project
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
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}"
}
]
}
Exact Match
1218 Public Holidays
https://w3id.org/class/redaktor/PublicHolidays
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.Exact Match
529 Publication Issue
https://w3id.org/class/redaktor/PublicationIssue
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
Exact Match
530 Publication Volume
https://w3id.org/class/redaktor/PublicationVolume
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
Exact Match
1301 Pulmonary
https://w3id.org/class/redaktor/Pulmonary
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
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
Definition
A point value or interval for product characteristics and other purposes.Exact Match
65 Question
https://w3id.org/class/redaktor/Question
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
: ActivityExample
{
"@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
Definition
An interview portrayed as a sequence of questions and answers565 Quiz
https://w3id.org/class/redaktor/Quiz
Definition
Quiz: A test of knowledge, skills and abilities.Exact Match
558 Radio Clip
https://w3id.org/class/redaktor/RadioClip
Definition
A short radio program or a segment/part of a radio program.Exact Match
63 Rating
https://w3id.org/class/redaktor/Rating
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
Definition
Content is unedited sound without voiceExact Match
435 React
https://w3id.org/class/redaktor/React
Definition
The act of responding instinctively and emotionally to an object, expressing a sentiment.Exact Match
217 Read
https://w3id.org/class/redaktor/Read
Definition
Indicates that the actor has read the object.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-read
Scope Note
: ActivityExample
{
"@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
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.
Exact Match
1326 Rear Wheel Drive Configuration
https://w3id.org/class/redaktor/RearWheelDriveConfiguration
Definition
Real-wheel drive is a transmission layout where the engine drives the rear wheels.Exact Match
563 Recipe
https://w3id.org/class/redaktor/Recipe
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
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.Exact Match
1190 Reduced Relevance For Children Consideration
https://w3id.org/class/redaktor/ReducedRelevanceForChildrenConsideration
Definition
A general code for cases where relevance to children is reduced, e.g. adult education, mortgages, retirement-related products, etc.1254 Refurbished Condition
https://w3id.org/class/redaktor/RefurbishedCondition
Definition
Indicates that the item is refurbished.Exact Match
218 Reject
https://w3id.org/class/redaktor/Reject
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
: ActivityExample
{
"@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
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
: ObjectExample
{
"@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
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
: ActivityExample
{
"@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"
}
}
Exact Match
1275 Renal
https://w3id.org/class/redaktor/Renal
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
Definition
Indicates the usage of the vehicle as a rental car.Exact Match
367 Special Report
https://w3id.org/class/redaktor/Report
Definition
In-depth examination of a single subject requiring extensive research, presented either as a single item or as a series of items97 Research Organization
https://w3id.org/class/redaktor/ResearchOrganization
Definition
A Research Organization (e.g. scientific institute, research company).Exact Match
1717 Research Project
https://w3id.org/class/redaktor/ResearchProject
Definition
A Research project.Exact Match
185 Reservation
https://w3id.org/class/redaktor/Reservation
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]].
Exact Match
876 Residence
https://w3id.org/class/redaktor/Residence
Definition
The place where a person lives.Exact Match
1292 Respiratory Therapy
https://w3id.org/class/redaktor/RespiratoryTherapy
Definition
The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease).Exact Match
316 Response to a Question
https://w3id.org/class/redaktor/ResponseToAQuestion
Definition
An audio recording of an individual's response to a question1370 Restricted Diet
https://w3id.org/class/redaktor/RestrictedDiet
Definition
A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons.Exact Match
368 Results Listings and Statistics
https://w3id.org/class/redaktor/ResultsListingsAndStatistics
Definition
Alphanumeric data suitable for presentation in tabular form369 Retrospective
https://w3id.org/class/redaktor/Retrospective
Definition
Material that looks back on a specific period of time, such as a season, quarter, year or decade370 Review
https://w3id.org/class/redaktor/Review
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
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.Exact Match
1296 Rheumatologic
https://w3id.org/class/redaktor/Rheumatologic
Definition
A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.Exact Match
1189 Right Hand Driving
https://w3id.org/class/redaktor/RightHandDriving
Definition
The steering position is on the right side of the vehicle (viewed from the main direction of driving).Exact Match
450 Rsvp
https://w3id.org/class/redaktor/Rsvp
Definition
The act of public notifying as to whether you expect to attend the event.Exact Match
404 Satire
https://w3id.org/class/redaktor/Satire
Definition
Uses exaggeration, irony, or humour to make a point; not intended to be understood as factual1213 Saturday
https://w3id.org/class/redaktor/Saturday
Definition
The day of the week between Friday and Sunday.Exact Match
371 Scholarly
https://w3id.org/class/redaktor/ScholarlyArticle
Definition
A scholarly articleExact Match
451 Search
https://w3id.org/class/redaktor/Search
Definition
The act of searching for an object.Exact Match
98 Search Rescue Organization
https://w3id.org/class/redaktor/SearchRescueOrganization
Definition
A Search and Rescue organization of some kind.Exact Match
578 Search Results Page
https://w3id.org/class/redaktor/SearchResultsPage
Definition
Web page type: Search results page.Exact Match
58 Seat
https://w3id.org/class/redaktor/Seat
Definition
Used to describe a seat, such as a reserved seat in an event reservation.Exact Match
428 Seek To
https://w3id.org/class/redaktor/SeekTo
Definition
This is the Action of navigating to a specific startOffset timestamp within a VideoObject, typically represented with a URL template structure.Exact Match
82 Service
https://w3id.org/class/redaktor/Service
Definition
Represents a service of any kind.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-service
Scope Note
: ActorExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Service",
"name": "Acme Web Service"
}
64 Service Channel
https://w3id.org/class/redaktor/ServiceChannel
Definition
A means for accessing a service, e.g. a government office location, web site, or phone number.Exact Match
1191 Sexual Content Consideration
https://w3id.org/class/redaktor/SexualContentConsideration
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.Exact Match
372 Side bar and Supporting Information
https://w3id.org/class/redaktor/SideBarAndSupportingInformation
Definition
Related content that provides additional context or insight into a news event1225 Single Player
https://w3id.org/class/redaktor/SinglePlayer
Definition
Play mode: SinglePlayer. Which is played by a lone player.Exact Match
317 Social Media Posting
https://w3id.org/class/redaktor/SocialMediaPosting
Definition
A post to a social media platform, including toots, tweets, posts, etc.Exact Match
532 Software Application
https://w3id.org/class/redaktor/SoftwareApplication
Definition
A Software Application of all kinds.Exact Match
533 Software Source Code
https://w3id.org/class/redaktor/SoftwareSourceCode
Definition
Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.Exact Match
1241 Sold Out
https://w3id.org/class/redaktor/SoldOut
Definition
Indicates that the item has sold out.Exact Match
452 Solve Math
https://w3id.org/class/redaktor/SolveMath
Definition
The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression.Exact Match
46 Speakable Specification
https://w3id.org/class/redaktor/SpeakableSpecification
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.Exact Match
534 Special Announcement
https://w3id.org/class/redaktor/SpecialAnnouncement
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
Exact Match
1285 Speech Pathology
https://w3id.org/class/redaktor/SpeechPathology
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.Exact Match
332 Sponsored
https://w3id.org/class/redaktor/Sponsored
Definition
Content is produced on behalf of an organisation or individual that has paid the news provider for production and may approve content publicationExact Match
344 Sport
https://w3id.org/class/redaktor/Sport
Definition
The object contains material relating to a sport program and/or eventNote
Example: A news item or program covering a sports event or related news, such as an interview with a sports personality or Olympics results.99 Sports Organization
https://w3id.org/class/redaktor/SportsOrganization
Definition
Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.Exact Match
1723 Sports Team
https://w3id.org/class/redaktor/SportsTeam
Definition
Organization: Sports team.Exact Match
1350 Steering Position Value
https://w3id.org/class/redaktor/SteeringPositionValue
Definition
A value indicating a steering position.Exact Match
75 Storyboard
https://w3id.org/class/redaktor/Storyboard
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
Definition
A NewsStoryline
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
351 Briefing
https://w3id.org/class/redaktor/Summary
Definition
A summary of a number of news itemsExact Match
1219 Sunday
https://w3id.org/class/redaktor/Sunday
Definition
The day of the week between Saturday and Monday.Exact Match
333 Supported
https://w3id.org/class/redaktor/Supported
Definition
Content is produced with financial support from an organisation or individual, yet not approved by the underwriter before or after publicationExact Match
1314 Surgical
https://w3id.org/class/redaktor/Surgical
Definition
A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.Exact Match
383 Synopsis
https://w3id.org/class/redaktor/Synopsis
Definition
A condensed version of a single news itemExact Match
559 TV Clip
https://w3id.org/class/redaktor/TVClip
Definition
A short TV program or a segment/part of a TV program.Exact Match
187 T V Season
https://w3id.org/class/redaktor/TVSeason
Definition
Season dedicated to TV broadcast and associated online delivery.Exact Match
1207 Taxi Vehicle Usage
https://w3id.org/class/redaktor/TaxiVehicleUsage
Definition
Indicates the usage of the car as a taxi.Exact Match
220 Tentative Accept
https://w3id.org/class/redaktor/TentativeAccept
Definition
A specialization of Accept indicating that the acceptance is tentative.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tentativeaccept
Scope Note
: ActivityExample
{
"@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
Definition
A specialization of Reject in which the rejection is considered tentative.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tentativereject
Scope Note
: ActivityExample
{
"@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
Definition
The object contains a transcription of text.Exact Match
1722 Theater Group
https://w3id.org/class/redaktor/TheaterGroup
Definition
A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.Exact Match
535 Thesis
https://w3id.org/class/redaktor/Thesis
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
Definition
The day of the week between Wednesday and Friday.Exact Match
41 Ticket
https://w3id.org/class/redaktor/Ticket
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
Definition
The act of reaching a draw in a competitive activity.Exact Match
1196 Tobacco Nicotine Consideration
https://w3id.org/class/redaktor/TobaccoNicotineConsideration
Definition
Item contains tobacco and/or nicotine, for example cigars, cigarettes, chewing tobacco, e-cigarettes, or hookahs.Exact Match
1211 Toll Free
https://w3id.org/class/redaktor/TollFree
Definition
The associated telephone number is toll free.Exact Match
21 Tombstone
https://w3id.org/class/redaktor/Tombstone
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
: ObjectExample
{
"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
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.Exact Match
880 Tourist Destination
https://w3id.org/class/redaktor/TouristDestination
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.Exact Match
554 Tourist Trip
https://w3id.org/class/redaktor/TouristTrip
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).
Exact Match
1309 Toxicologic
https://w3id.org/class/redaktor/Toxicologic
Definition
A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning.Exact Match
430 Trade
https://w3id.org/class/redaktor/Trade
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.Exact Match
555 Train Trip
https://w3id.org/class/redaktor/TrainTrip
Definition
A trip on a commercial train line.Exact Match
319 Transcript or Verbatim
https://w3id.org/class/redaktor/TranscriptAndVerbatim
Definition
A word-for-word account of a discussion or briefing453 Transfer
https://w3id.org/class/redaktor/Transfer
Definition
The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.Exact Match
66 Travel
https://w3id.org/class/redaktor/Travel
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
: ActivityExample
{
"@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"
}
}
320 Travel
https://w3id.org/class/redaktor/TravelStory
Definition
The object contains material relating to a travel program and/or eventNote
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
Definition
A trip or journey. An itinerary of visits to one or more places.Alt Label
- Tour or trip
Exact Match
1214 Tuesday
https://w3id.org/class/redaktor/Tuesday
Definition
The day of the week between Monday and Wednesday.Exact Match
60 Type And Quantity Node
https://w3id.org/class/redaktor/TypeAndQuantityNode
Definition
A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.Exact Match
1192 Unclassified Adult Consideration
https://w3id.org/class/redaktor/UnclassifiedAdultConsideration
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.Exact Match
222 Undo
https://w3id.org/class/redaktor/Undo
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
: ActivityExample
{
"@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"
}
}
Exact Match
1231 Unemployment Support
https://w3id.org/class/redaktor/UnemploymentSupport
Definition
UnemploymentSupport: this is a benefit for unemployment support.Exact Match
223 Update
https://w3id.org/class/redaktor/Update
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
: ActivityExample
{
"@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
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
Definition
The act of applying an object to its intended purpose.Exact Match
1255 Used Condition
https://w3id.org/class/redaktor/UsedCondition
Definition
Indicates that the item is used.Exact Match
1257 Vegan Diet
https://w3id.org/class/redaktor/VeganDiet
Definition
A diet exclusive of all animal products.Exact Match
1262 Vegetarian Diet
https://w3id.org/class/redaktor/VegetarianDiet
Definition
A diet exclusive of animal meat.Exact Match
1415 Vehicle
https://w3id.org/class/redaktor/Vehicle
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
1250 Venue Map
https://w3id.org/class/redaktor/VenueMap
Definition
A venue map (e.g. for malls, auditoriums, museums, etc.).Exact Match
20 Video
https://w3id.org/class/redaktor/Video
Definition
Represents a video document of any kind.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-video
Scope Note
: ObjectExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Video",
"name": "Puppy Plays With Ball",
"url": "http://example.org/video.mkv",
"duration": "PT2H"
}
Exact Match
73 Video Gallery
https://w3id.org/class/redaktor/VideoGallery
Definition
Web page type: Video gallery page. See also :PlaylistExact Match
562 Video Game
https://w3id.org/class/redaktor/VideoGame
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
Definition
A short segment/part of a video game.Exact Match
224 View
https://w3id.org/class/redaktor/View
Definition
Indicates that the actor has viewed the object.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-view
Scope Note
: ActivityExample
{
"@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
Definition
Item shows or promotes violence.Exact Match
581 WP Ad Block
https://w3id.org/class/redaktor/WPAdBlock
Definition
An advertising section of the page.Exact Match
583 WP Header
https://w3id.org/class/redaktor/WPHeader
Definition
The header section of the page.Exact Match
584 WP Side Bar
https://w3id.org/class/redaktor/WPSideBar
Definition
A sidebar section of the page.Exact Match
57 Warranty Promise
https://w3id.org/class/redaktor/WarrantyPromise
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.Exact Match
1368 Warranty Scope
https://w3id.org/class/redaktor/WarrantyScope
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:
Exact Match
442 Watch
https://w3id.org/class/redaktor/Watch
Definition
The act of consuming dynamic/moving visual content.Exact Match
1195 Weapon Consideration
https://w3id.org/class/redaktor/WeaponConsideration
Definition
The item is intended to induce bodily harm, for example guns, mace, combat knives, brass knuckles, nail or other bombs, and spears.Exact Match
322 Weather
https://w3id.org/class/redaktor/Weather
Definition
The object contains material relating to a weather program and/or eventNote
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
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]]).Exact Match
536 Web Page Element
https://w3id.org/class/redaktor/WebPageElement
Definition
A web page element, like a table or an image.Exact Match
537 Web Site
https://w3id.org/class/redaktor/WebSite
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
1217 Wednesday
https://w3id.org/class/redaktor/Wednesday
Definition
The day of the week between Tuesday and Thursday.Exact Match
433 Win
https://w3id.org/class/redaktor/Win
Definition
The act of achieving victory in a competitive activity.Exact Match
100 Workers Union
https://w3id.org/class/redaktor/WorkersUnion
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.Exact Match
1390 XPath Type
https://w3id.org/class/redaktor/XPathType
Definition
Text representing an XPath (typically but not necessarily version 1.0).Exact Match
1201 Zone Boarding Policy
https://w3id.org/class/redaktor/ZoneBoardingPolicy
Definition
The airline boards by zones of the plane.Exact Match
1737 about
https://w3id.org/class/redaktor/about
Definition
The subject matter of the content.Exact Match
1738 abridged
https://w3id.org/class/redaktor/abridged
Definition
Indicates whether the book is an abridged edition.Exact Match
1739 abstract
https://w3id.org/class/redaktor/abstract
Definition
An abstract is a short description that summarizes a [[CreativeWork]].Exact Match
2408 acceleration time
https://w3id.org/class/redaktor/accelerationTime
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.
Exact Match
1740 accepted payment method
https://w3id.org/class/redaktor/acceptedPaymentMethod
Definition
The payment method(s) accepted by seller for this offer.Exact Match
1741 accepts reservations
https://w3id.org/class/redaktor/acceptsReservations
Definition
Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the stringsYes
or No
.Exact Match
1742 access code
https://w3id.org/class/redaktor/accessCode
Definition
Password, PIN, or access code needed for delivery (e.g. from a locker).Exact Match
1743 access mode
https://w3id.org/class/redaktor/accessMode
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.Exact Match
1744 access mode sufficient
https://w3id.org/class/redaktor/accessModeSufficient
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.Exact Match
1745 accessibility API
https://w3id.org/class/redaktor/accessibilityAPI
Definition
Indicates that the resource is compatible with the referenced accessibility API. Values should be drawn from the approved vocabulary.Exact Match
1746 accessibility control
https://w3id.org/class/redaktor/accessibilityControl
Definition
Identifies input methods that are sufficient to fully control the described resource. Values should be drawn from the approved vocabulary.Exact Match
1747 accessibility feature
https://w3id.org/class/redaktor/accessibilityFeature
Definition
Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility. Values should be drawn from the approved vocabulary.Exact Match
1748 accessibility hazard
https://w3id.org/class/redaktor/accessibilityHazard
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.Exact Match
1749 accessibility summary
https://w3id.org/class/redaktor/accessibilitySummary
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.”Exact Match
1750 accommodation category
https://w3id.org/class/redaktor/accommodationCategory
Definition
Category of an [[Accommodation]], following real estate conventions e.g. RESO (see PropertySubType, and PropertyType fields for suggested values).Exact Match
1751 accommodation floor plan
https://w3id.org/class/redaktor/accommodationFloorPlan
Definition
A floorplan of some [[Accommodation]].Exact Match
1752 accountable person
https://w3id.org/class/redaktor/accountablePerson
Definition
Specifies the Person that is legally accountable for the CreativeWork.Exact Match
3191 accuracy
https://w3id.org/class/redaktor/accuracy
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
: PropertyExample
{
"@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
Definition
URL for free/libre open source use policy or guideline of an entity2512 acquired From
https://w3id.org/class/redaktor/acquiredFrom
Definition
The organization or person from which the product was acquired.Exact Match
1754 actionable feedback policy
https://w3id.org/class/redaktor/actionableFeedbackPolicy
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.Exact Match
250 actor
https://w3id.org/class/redaktor/actor
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
: PropertyExample
{
"@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
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
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
Definition
An additional name for a Person, can be used for a middle name.Exact Match
2316 additional property
https://w3id.org/class/redaktor/additionalProperty
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.
Exact Match
1562 address
https://w3id.org/class/redaktor/address
Definition
Physical address of the item. E.g. used by mobilizon.Example
see propertiesExact Match
1563 country
https://w3id.org/class/redaktor/addressCountry
Definition
The country. You can also provide the two-letter ISO 3166-1 alpha-2 country code.Example
FranceExact Match
1564 locality
https://w3id.org/class/redaktor/addressLocality
Definition
The city or place. The locality in which the street address is, and which is in the region.Example
PerpignanExact Match
1565 region
https://w3id.org/class/redaktor/addressRegion
Definition
The region in which the locality is, and which is in the country.Example
Occitània, CatalunyaExact Match
1761 advance booking requirement
https://w3id.org/class/redaktor/advanceBookingRequirement
Definition
The amount of time that is required between accepting the offer and the actual usage of the resource or service.Exact Match
1762 affiliation
https://w3id.org/class/redaktor/affiliation
Definition
An organization that this person is affiliated with. For example, a school/university, a club, or a team.Exact Match
1589 aggregate rating
https://w3id.org/class/redaktor/aggregateRating
Definition
The overall rating, based on a collection of reviews or ratings, of the item.Exact Match
1764 aircraft
https://w3id.org/class/redaktor/aircraft
Definition
The kind of aircraft (e.g., “Boeing 747”).Exact Match
1767 alignment type
https://w3id.org/class/redaktor/alignmentType
Definition
A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.Exact Match
156 also known as
https://w3id.org/class/redaktor/alsoKnownAs
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
: ExtensionExample
{
"@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
Definition
A secondary title of the CreativeWork.Exact Match
3192 altitude
https://w3id.org/class/redaktor/altitude
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
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Place",
"name": "Fresno Area",
"altitude": 15.0,
"latitude": 36.75,
"longitude": 119.7667,
"units": "miles"
}
1770 alumni of
https://w3id.org/class/redaktor/alumniOf
Definition
An organization that the person is an alumni of.Exact Match
1590 amenity feature
https://w3id.org/class/redaktor/amenityFeature
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 forPlace
.see also OSM amenity
Alt Label
- service feature
Exact Match
2393 amount of this good
https://w3id.org/class/redaktor/amountOfThisGood
Definition
The quantity of the goods included in the offer.Exact Match
1773 announcement location
https://w3id.org/class/redaktor/announcementLocation
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]].Exact Match
5121 any of
https://w3id.org/class/redaktor/anyOf
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
: PropertyExample
{
"@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"
}
]
}
Exact Match
1774 appearance
https://w3id.org/class/redaktor/appearance
Definition
Indicates an occurence of a [[Claim]] in some [[CreativeWork]].Exact Match
2477 applicable country
https://w3id.org/class/redaktor/applicableCountry
Definition
A country where a particular merchant return policy applies to, for example the two-letter ISO 3166-1 alpha-2 country code.Exact Match
1775 application category
https://w3id.org/class/redaktor/applicationCategory
Definition
Type of software application, e.g. 'Game, Multimedia'.Exact Match
1776 application sub category
https://w3id.org/class/redaktor/applicationSubCategory
Definition
Subcategory of the application, e.g. 'Arcade Game'.Exact Match
1777 application suite
https://w3id.org/class/redaktor/applicationSuite
Definition
The name of the application suite to which the application belongs (e.g. Excel belongs to Office).Exact Match
1779 archived at
https://w3id.org/class/redaktor/archivedAt
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.Exact Match
2459 area
https://w3id.org/class/redaktor/area
Definition
The area within which users can expect to reach the broadcast service.Exact Match
1780 area served
https://w3id.org/class/redaktor/areaServed
Definition
The geographic area where a service or offered item is provided.Exact Match
1781 arrival airport
https://w3id.org/class/redaktor/arrivalAirport
Definition
The airport where the flight terminates.Exact Match
1782 arrival boat terminal
https://w3id.org/class/redaktor/arrivalBoatTerminal
Definition
The terminal or port from which the boat arrives.Exact Match
1783 arrival bus stop
https://w3id.org/class/redaktor/arrivalBusStop
Definition
The stop or station from which the bus arrives.Exact Match
1784 arrival gate
https://w3id.org/class/redaktor/arrivalGate
Definition
Identifier of the flight's arrival gate.Exact Match
1785 arrival platform
https://w3id.org/class/redaktor/arrivalPlatform
Definition
The platform where the train arrives.Exact Match
1786 arrival station
https://w3id.org/class/redaktor/arrivalStation
Definition
The station where the train trip ends.Exact Match
1787 arrival terminal
https://w3id.org/class/redaktor/arrivalTerminal
Definition
Identifier of the flight's arrival terminal.Exact Match
1788 arrival time
https://w3id.org/class/redaktor/arrivalTime
Definition
The expected arrival time.Exact Match
1790 article section
https://w3id.org/class/redaktor/articleSection
Definition
Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.Exact Match
1791 artist
https://w3id.org/class/redaktor/artist
Definition
The primary artist for a workin 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
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
Definition
Library file name e.g., mscorlib.dll, system.web.dll.Exact Match
1794 assembly version
https://w3id.org/class/redaktor/assemblyVersion
Definition
Associated product/technology version. e.g., .NET Framework 4.5.Exact Match
1795 assesses
https://w3id.org/class/redaktor/assesses
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
Definition
A NewsArticle associated with the Media Object.Exact Match
2498 associated ClaimReview
https://w3id.org/class/redaktor/associatedClaimReview
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]].Exact Match
1796 associated media
https://w3id.org/class/redaktor/associatedMedia
Definition
A media object that encodes this CreativeWork. This property is a synonym for encoding.Exact Match
2501 associated MediaReview
https://w3id.org/class/redaktor/associatedMediaReview
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]].Exact Match
2500 associated Review
https://w3id.org/class/redaktor/associatedReview
Definition
An associated [[Review]].Exact Match
1797 athlete
https://w3id.org/class/redaktor/athlete
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
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
: PropertyExample
{
"@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
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
: PropertyExample
{
"@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
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
: PropertyAlt Label
- audience
Example
{
"@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
Definition
The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).Exact Match
2515 authenticator
https://w3id.org/class/redaktor/authenticator
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.Exact Match
1801 author
https://w3id.org/class/redaktor/author
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
Definition
The availability of this item—for example In stock, Out of stock, Pre-order, etc.Exact Match
1803 availability ends
https://w3id.org/class/redaktor/availabilityEnds
Definition
The end of the availability of the product or service included in the offer.Exact Match
1804 availability starts
https://w3id.org/class/redaktor/availabilityStarts
Definition
The beginning of the availability of the product or service included in the offer.Exact Match
1805 available at or from
https://w3id.org/class/redaktor/availableAtOrFrom
Definition
The place(s) from which the offer can be obtained (e.g. store locations).Exact Match
1806 available channel
https://w3id.org/class/redaktor/availableChannel
Definition
A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).Exact Match
1807 available delivery method
https://w3id.org/class/redaktor/availableDeliveryMethod
Definition
The delivery method(s) available for this offer.Exact Match
1808 available from
https://w3id.org/class/redaktor/availableFrom
Definition
When the item is available for pickup from the store, locker, etc.Exact Match
1809 available language
https://w3id.org/class/redaktor/availableLanguage
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
Related
Exact Match
1810 available on device
https://w3id.org/class/redaktor/availableOnDevice
Definition
Device required to run the application. Used in cases where a specific make/model is required to run the application.Exact Match
1811 available service
https://w3id.org/class/redaktor/availableService
Definition
A medical service available from this provider.Exact Match
1812 available test
https://w3id.org/class/redaktor/availableTest
Definition
A diagnostic test or procedure offered by this lab.Exact Match
1813 available through
https://w3id.org/class/redaktor/availableThrough
Definition
After this date, the item will no longer be available for pickup.Exact Match
2357 award
https://w3id.org/class/redaktor/award
Definition
An award won by or for this item.Exact Match
1815 awards
https://w3id.org/class/redaktor/awards
Definition
Awards won by or for this item.Exact Match
1816 away team
https://w3id.org/class/redaktor/awayTeam
Definition
The away team in a sports event.Exact Match
1817 backstory
https://w3id.org/class/redaktor/backstory
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
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
: PropertyExample
{
"@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" ]
}
Exact Match
1818 bed
https://w3id.org/class/redaktor/bed
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
Definition
The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.Exact Match
1820 birth place
https://w3id.org/class/redaktor/birthPlace
Definition
The place where the person was born.Exact Match
2353 bitrate
https://w3id.org/class/redaktor/bitrate
Definition
The bitrate of the media object.Exact Match
1821 blog post
https://w3id.org/class/redaktor/blogPost
Definition
A posting that is part of this blog.Exact Match
1513 blurhash
https://w3id.org/class/redaktor/blurhash
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 CommunityExample
{
"@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"
}
]
}
Exact Match
1823 boarding policy
https://w3id.org/class/redaktor/boardingPolicy
Definition
The type of boarding policy used by the airline (e.g. zone-based or group-based).Exact Match
2438 body type
https://w3id.org/class/redaktor/bodyType
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
Definition
Ausgabe (Werk) der Publikation.Alt Label
- edition or translation of
1825 book format
https://w3id.org/class/redaktor/bookFormat
Definition
The format of the book.Exact Match
1826 box
https://w3id.org/class/redaktor/box
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
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
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
Definition
The media network(s) whose content is broadcast on this station.Exact Match
2453 broadcast display name
https://w3id.org/class/redaktor/broadcastDisplayName
Definition
The name displayed in the channel guide. For many US affiliates, it is the network name.Exact Match
2455 broadcast frequency
https://w3id.org/class/redaktor/broadcastFrequency
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".Exact Match
2517 broadcast Frequency Value
https://w3id.org/class/redaktor/broadcastFrequencyValue
Definition
The frequency in MHz for a particular broadcast.Exact Match
1829 broadcast of event
https://w3id.org/class/redaktor/broadcastOfEvent
Definition
The event being broadcast such as a sporting event or awards ceremony.Exact Match
2518 broadcast Signal Modulation
https://w3id.org/class/redaktor/broadcastSignalModulation
Definition
The modulation (e.g. FM, AM, etc) used by a particular broadcast service.Exact Match
2519 broadcast subchannel
https://w3id.org/class/redaktor/broadcastSubChannel
Definition
The subchannel used for the broadcast.Exact Match
2454 broadcast timezone
https://w3id.org/class/redaktor/broadcastTimezone
Definition
The timezone in ISO 8601 format for which the service bases its broadcastsExact Match
2457 broadcaster
https://w3id.org/class/redaktor/broadcaster
Definition
The organization owning or operating the broadcast service.Exact Match
1830 broker
https://w3id.org/class/redaktor/broker
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
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
: PropertyExample
{
"@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" ]
}
Exact Match
1831 bus name
https://w3id.org/class/redaktor/busName
Definition
The name of the bus (e.g. Bolt Express).Exact Match
1832 bus number
https://w3id.org/class/redaktor/busNumber
Definition
The unique identifier for the bus.Exact Match
1833 business function
https://w3id.org/class/redaktor/businessFunction
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.Exact Match
1834 by artist
https://w3id.org/class/redaktor/byArtist
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
Definition
A callsign, as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.Exact Match
2334 carbohydrate content
https://w3id.org/class/redaktor/carbohydrateContent
Definition
The number of grams of carbohydrates.Exact Match
2421 cargo volume
https://w3id.org/class/redaktor/cargoVolume
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.
Exact Match
1836 carrier
https://w3id.org/class/redaktor/carrier
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
Definition
A data catalog which contains this dataset.Exact Match
1545 category
https://w3id.org/class/redaktor/category
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
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
: PropertyExample
{
"@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" ]
}
Exact Match
1838 character
https://w3id.org/class/redaktor/character
Definition
Fictional person connected with a creative work.Exact Match
1839 character attribute
https://w3id.org/class/redaktor/characterAttribute
Definition
A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).Exact Match
1840 cheat code
https://w3id.org/class/redaktor/cheatCode
Definition
Cheat codes to the game.Exact Match
1841 checkin time
https://w3id.org/class/redaktor/checkinTime
Definition
The earliest someone may check into a lodging establishment.Exact Match
1842 checkout time
https://w3id.org/class/redaktor/checkoutTime
Definition
The latest someone may check out of a lodging establishment.Exact Match
2332 cholesterol content
https://w3id.org/class/redaktor/cholesterolContent
Definition
The number of milligrams of cholesterol.Exact Match
1844 circle
https://w3id.org/class/redaktor/circle
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
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
Definition
For a [[Claim]] interpreted from [[MediaObject]] contentsed to indicate a claim contained, implied or refined from the content of a [[MediaObject]].
Exact Match
1847 clip number
https://w3id.org/class/redaktor/clipNumber
Definition
Position of the clip within an ordered group of clips.Exact Match
5122,10522 closed
https://w3id.org/class/redaktor/closed
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
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Question",
"name": "What is the answer?",
"closed": "2016-05-10T00:00:00Z"
}
Exact Match
2379 closes
https://w3id.org/class/redaktor/closes
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
Definition
A person that acts in a coaching role for a sports team.Exact Match
1849 code repository
https://w3id.org/class/redaktor/codeRepository
Definition
Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).Exact Match
1850 code sample type
https://w3id.org/class/redaktor/codeSampleType
Definition
What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.Exact Match
1851 colleague
https://w3id.org/class/redaktor/colleague
Definition
A colleague of the person.Exact Match
1852 colleagues
https://w3id.org/class/redaktor/colleagues
Definition
A colleague of the person.Exact Match
1853 colorist
https://w3id.org/class/redaktor/colorist
Definition
The individual who adds color to inked drawings.Exact Match
1854 comment
https://w3id.org/class/redaktor/comment
Definition
Comments, typically from users.Exact Match
1855 comment count
https://w3id.org/class/redaktor/commentCount
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.Exact Match
1523 comments enabled
https://w3id.org/class/redaktor/commentsEnabled
Definition
Enable or disable comments for this video.see peertube documentation - fallback for mobilizon
Scope Note
ActivityPub CommunityExample
{
"type": "Video",
"commentsEnabled": true,
"downloadEnabled": true
}
Exact Match
1856 competency required
https://w3id.org/class/redaktor/competencyRequired
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.Exact Match
1857 competitor
https://w3id.org/class/redaktor/competitor
Definition
A competitor in a sports event.Exact Match
1858 composer
https://w3id.org/class/redaktor/composer
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
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”.Exact Match
1860 contact option
https://w3id.org/class/redaktor/contactOption
Definition
An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers).Exact Match
1861 contact point
https://w3id.org/class/redaktor/contactPoint
Definition
A contact point for a person or organization.Exact Match
1862 contact points
https://w3id.org/class/redaktor/contactPoints
Definition
A contact point for a person or organization.Exact Match
1863 contact type
https://w3id.org/class/redaktor/contactType
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.Exact Match
2310 contains season
https://w3id.org/class/redaktor/containsSeason
Definition
A season that is part of the media series.Exact Match
121 content
https://w3id.org/class/redaktor/content
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
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"summary": "A simple note",
"type": "Note",
"content": "A <em>simple</em> note"
}
Related
Exact Match
1864 content location
https://w3id.org/class/redaktor/contentLocation
Definition
The location depicted or described in the content. For example, the location in a photograph or painting.Exact Match
122 content map
https://w3id.org/class/redaktor/contentMap
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
: PropertyAlt 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
Definition
Official rating of a piece of content—for example,'MPAA PG-13'.Exact Match
1866 content reference time
https://w3id.org/class/redaktor/contentReferenceTime
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.Exact Match
2344 content size
https://w3id.org/class/redaktor/contentSize
Definition
File size in (mega/kilo) bytes.Exact Match
2345 content Url
https://w3id.org/class/redaktor/contentUrl
Definition
Actual bytes of the media object, for example the image file or video file.Exact Match
128 context
https://w3id.org/class/redaktor/context
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
: PropertyExample
{
"@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"
}
]
}
Exact Match
1867 contributor
https://w3id.org/class/redaktor/contributor
Definition
Person oder Organisation, die zur Erstellung des Werks beigetragen hat.1868 cook time
https://w3id.org/class/redaktor/cookTime
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
Definition
The method of cooking, such as Frying, Steaming, ...Exact Match
1870 copyright holder
https://w3id.org/class/redaktor/copyrightHolder
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
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.Exact Match
1872 copyright year
https://w3id.org/class/redaktor/copyrightYear
Definition
The year during which the claimed copyright for the CreativeWork was first asserted.Exact Match
1873 correction
https://w3id.org/class/redaktor/correction
Definition
Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.Exact Match
1874 corrections policy
https://w3id.org/class/redaktor/correctionsPolicy
Definition
For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.Exact Match
1875 countries not supported
https://w3id.org/class/redaktor/countriesNotSupported
Definition
Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.Exact Match
1876 countries supported
https://w3id.org/class/redaktor/countriesSupported
Definition
Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.Exact Match
2362 country of assembly
https://w3id.org/class/redaktor/countryOfAssembly
Definition
The place where the product was assembled.Exact Match
2365 country of last processing
https://w3id.org/class/redaktor/countryOfLastProcessing
Definition
The place where the item (typically [[Product]]) was last processed and tested before importation.Exact Match
1877 country of origin
https://w3id.org/class/redaktor/countryOfOrigin
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.
Exact Match
1878 course code
https://w3id.org/class/redaktor/courseCode
Definition
The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001).Exact Match
1879 course mode
https://w3id.org/class/redaktor/courseMode
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 ).Exact Match
1880 course prerequisites
https://w3id.org/class/redaktor/coursePrerequisites
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]].Exact Match
1881 course workload
https://w3id.org/class/redaktor/courseWorkload
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”.Exact Match
1541 created
https://w3id.org/class/redaktor/created
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
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.Exact Match
1540 creator
https://w3id.org/class/redaktor/creator
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
Definition
The category or type of credential being described, for example “degree”, “certificate”, “badge”, or more specific term.Exact Match
1885 credit text
https://w3id.org/class/redaktor/creditText
Definition
Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.Exact Match
1886 css selector
https://w3id.org/class/redaktor/cssSelector
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”.Exact Match
1887 currencies accepted
https://w3id.org/class/redaktor/currenciesAccepted
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”.Exact Match
2375 currency
https://w3id.org/class/redaktor/currency
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
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
: PropertyExample
{
"@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"
]
}
Exact Match
2475 customer remorse return fees
https://w3id.org/class/redaktor/customerRemorseReturnFees
Definition
The type of return fees if the product is returned due to customer remorse.Exact Match
2474 customer remorse return label source
https://w3id.org/class/redaktor/customerRemorseReturnLabelSource
Definition
The method (from an enumeration) by which the customer obtains a return shipping label for a product returned due to customer remorse.Exact Match
2469 customer remorse return shipping fees amount
https://w3id.org/class/redaktor/customerRemorseReturnShippingFeesAmount
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
Definition
An item within in a data feed. Data feeds may have many elements.Exact Match
2514 dataset
https://w3id.org/class/redaktor/dataset
Definition
A dataset contained in this catalog.Exact Match
2321 dataset time interval
https://w3id.org/class/redaktor/datasetTimeInterval
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).Exact Match
1888 date created
https://w3id.org/class/redaktor/dateCreated
Definition
The date on which the CreativeWork was created or the item was added to a DataFeed.Exact Match
1892 date deleted
https://w3id.org/class/redaktor/dateDeleted
Definition
The datetime the item was removed from the DataFeed.Exact Match
1889 date issued
https://w3id.org/class/redaktor/dateIssued
Definition
The date the ticket was issued.Exact Match
1890 date modified
https://w3id.org/class/redaktor/dateModified
Definition
The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.Exact Match
1891 date posted
https://w3id.org/class/redaktor/datePosted
Definition
Publication date of an online listing.Exact Match
1550 date published
https://w3id.org/class/redaktor/datePublished
Definition
Used by PeerTube. Date of first broadcast/publication.Exact Match
2439 date first registered
https://w3id.org/class/redaktor/dateVehicleFirstRegistered
Definition
The date of the first registration of the vehicle with the respective public authorities.Exact Match
2380 day of week
https://w3id.org/class/redaktor/dayOfWeek
Definition
The day of the week for which these opening hours are valid.Exact Match
1894 death place
https://w3id.org/class/redaktor/deathPlace
Definition
The place where the person died.Exact Match
3221 deleted
https://w3id.org/class/redaktor/deleted
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
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"summary": "This image has been deleted",
"type": "Tombstone",
"deleted": "2016-05-03T00:00:00Z"
}
Exact Match
2491 delivery address
https://w3id.org/class/redaktor/deliveryAddress
Definition
Destination address.Exact Match
1895 delivery lead time
https://w3id.org/class/redaktor/deliveryLeadTime
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.Exact Match
2493 delivery status
https://w3id.org/class/redaktor/deliveryStatus
Definition
New entry added as the package passes through each leg of its journey (from shipment to final delivery).Exact Match
2508 delivery time
https://w3id.org/class/redaktor/deliveryTime
Definition
The total delay between the receipt of the order and the goods reaching the final customer.Exact Match
1896 department
https://w3id.org/class/redaktor/department
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.Exact Match
1897 departure airport
https://w3id.org/class/redaktor/departureAirport
Definition
The airport where the flight originates.Exact Match
1898 departure boat terminal
https://w3id.org/class/redaktor/departureBoatTerminal
Definition
The terminal or port from which the boat departs.Exact Match
1899 departure bus stop
https://w3id.org/class/redaktor/departureBusStop
Definition
The stop or station from which the bus departs.Exact Match
1900 departure gate
https://w3id.org/class/redaktor/departureGate
Definition
Identifier of the flight's departure gate.Exact Match
1901 departure platform
https://w3id.org/class/redaktor/departurePlatform
Definition
The platform from which the train departs.Exact Match
1902 departure station
https://w3id.org/class/redaktor/departureStation
Definition
The station from which the train departs.Exact Match
1903 departure terminal
https://w3id.org/class/redaktor/departureTerminal
Definition
Identifier of the flight's departure terminal.Exact Match
1904 departure time
https://w3id.org/class/redaktor/departureTime
Definition
The expected departure time.Exact Match
1905 dependencies
https://w3id.org/class/redaktor/dependencies
Definition
Prerequisites needed to fulfill steps in article.Exact Match
129 describes
https://w3id.org/class/redaktor/describes
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
: PropertyExample
{
"@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
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
Definition
Regisseur eines Films oder ähnlichem.1517 discoverable
https://w3id.org/class/redaktor/discoverable
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 CommunityExample
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"toot": "http://joinmastodon.org/ns#",
"discoverable": ":discoverable"
}
],
"id": "https://mastodon.social/users/Gargron",
"type": "Person",
"discoverable": true
}
Exact Match
1909 discussion url
https://w3id.org/class/redaktor/discussionUrl
Definition
A link to the page containing the comments of the CreativeWork.Exact Match
1910 disease prevention info
https://w3id.org/class/redaktor/diseasePreventionInfo
Definition
Information about disease prevention.Exact Match
1911 disease spread statistics
https://w3id.org/class/redaktor/diseaseSpreadStatistics
Definition
Statistical information about the spread of a disease, either as [[WebContent]], ordescribed 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.
Exact Match
1912 dissolution date
https://w3id.org/class/redaktor/dissolutionDate
Definition
The date that this organization was dissolved.Exact Match
2322 distribution
https://w3id.org/class/redaktor/distribution
Definition
A downloadable form of this dataset, at a specific location, in a specific format.Exact Match
1913 diversity policy
https://w3id.org/class/redaktor/diversityPolicy
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.Exact Match
1914 diversity staffing report
https://w3id.org/class/redaktor/diversityStaffingReport
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.Exact Match
2504 does not ship
https://w3id.org/class/redaktor/doesNotShip
Definition
Indicates when shipping to a particular [[shippingDestination]] is not available.Exact Match
1524 download enabled
https://w3id.org/class/redaktor/downloadEnabled
Definition
Enable or disable downloading for this video.see peertube documentation
Scope Note
ActivityPub CommunityExample
{
"type": "Video",
"commentsEnabled": true,
"downloadEnabled": true
}
Exact Match
1915 download url
https://w3id.org/class/redaktor/downloadUrl
Definition
If the file can be downloaded, URL to download the binary.Exact Match
2424 drive wheel configuration
https://w3id.org/class/redaktor/driveWheelConfiguration
Definition
The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain.Exact Match
1916 DUNS
https://w3id.org/class/redaktor/duns
Definition
The Dun & Bradstreet DUNS number for identifying an organization or business person.Exact Match
130 duration
https://w3id.org/class/redaktor/duration
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
: PropertyExample
{
"@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
Definition
The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.Exact Match
1918 edit EIDR
https://w3id.org/class/redaktor/editEIDR
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
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
Definition
Educational background needed for the position or Occupation.Exact Match
1920 educational alignment
https://w3id.org/class/redaktor/educationalAlignment
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.
Exact Match
1921 educational credential awarded
https://w3id.org/class/redaktor/educationalCredentialAwarded
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.Exact Match
1922 educational framework
https://w3id.org/class/redaktor/educationalFramework
Definition
The framework to which the resource being described is aligned.Exact Match
1923 educational level
https://w3id.org/class/redaktor/educationalLevel
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.Exact Match
1924 educational use
https://w3id.org/class/redaktor/educationalUse
Definition
The purpose of a work in the context of education; for example, 'assignment', 'group work'.Exact Match
1925 elevation
https://w3id.org/class/redaktor/elevation
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
Definition
The type(s) of customers for which the given offer is valid.Exact Match
1927 eligible duration
https://w3id.org/class/redaktor/eligibleDuration
Definition
The duration for which the given offer is valid.Exact Match
1928 eligible quantity
https://w3id.org/class/redaktor/eligibleQuantity
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.Exact Match
1929 eligible region
https://w3id.org/class/redaktor/eligibleRegion
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]].Exact Match
1930 eligible transaction volume
https://w3id.org/class/redaktor/eligibleTransactionVolume
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.Exact Match
2352 embed Url
https://w3id.org/class/redaktor/embedUrl
Definition
A URL pointing to a player for a specific video. In general, this is the information in thesrc
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
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".Exact Match
1932 employee
https://w3id.org/class/redaktor/employee
Definition
Someone working for this organization.Exact Match
1933 employees
https://w3id.org/class/redaktor/employees
Definition
People working for this organization.Exact Match
2350 encodes CreativeWork
https://w3id.org/class/redaktor/encodesCreativeWork
Definition
The CreativeWork encoded by this media object.Exact Match
1934 encoding
https://w3id.org/class/redaktor/encoding
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
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.
Exact Match
1937 end offset
https://w3id.org/class/redaktor/endOffset
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
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
: PropertyExample
{
"@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
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 Property2304 episode
https://w3id.org/class/redaktor/episode
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
Definition
Position of the episode within an ordered group of episodes.Exact Match
1938 estimated cost
https://w3id.org/class/redaktor/estimatedCost
Definition
The estimated cost of the supply or supplies consumed when performing instructions.Exact Match
1939 estimated flight duration
https://w3id.org/class/redaktor/estimatedFlightDuration
Definition
The estimated time the flight will take.Exact Match
2479 estimated salary
https://w3id.org/class/redaktor/estimatedSalary
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.Exact Match
1940 ethics policy
https://w3id.org/class/redaktor/ethicsPolicy
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.Exact Match
1591 events
https://w3id.org/class/redaktor/events
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
Definition
A creative work that this work is an example/instance/realization/derivation of.Exact Match
1944 executable library name
https://w3id.org/class/redaktor/executableLibraryName
Definition
Library file name e.g., mscorlib.dll, system.web.dll.Exact Match
2494 expected arrival from
https://w3id.org/class/redaktor/expectedArrivalFrom
Definition
The earliest date the package may arrive.Exact Match
2492 expected arrival until
https://w3id.org/class/redaktor/expectedArrivalUntil
Definition
The latest date the package may arrive.Exact Match
2516 expects Acceptance Of
https://w3id.org/class/redaktor/expectsAcceptanceOf
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.Exact Match
2482 experience requirements
https://w3id.org/class/redaktor/experienceRequirements
Definition
Description of skills and experience needed for the position or Occupation.Exact Match
1945 expires
https://w3id.org/class/redaktor/expires
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
Definition
Family name. In the U.S., the last name of a Person.Exact Match
2327 fat content
https://w3id.org/class/redaktor/fatContent
Definition
The number of grams of fat.Exact Match
1948 feature list
https://w3id.org/class/redaktor/featureList
Definition
Features or modules provided by this application (and possibly required by other applications).Exact Match
1515 featured
https://w3id.org/class/redaktor/featured
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 CommunityAlt 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"
}
Exact Match
1516 featured tags
https://w3id.org/class/redaktor/featuredTags
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 CommunityExample
{
"@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"
}
Exact Match
1949 fees and commissions specification
https://w3id.org/class/redaktor/feesAndCommissionsSpecification
Definition
Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.Exact Match
2336 fiber content
https://w3id.org/class/redaktor/fiberContent
Definition
The number of grams of fiber.Exact Match
1950 file format
https://w3id.org/class/redaktor/fileFormat
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.Exact Match
1951 file size
https://w3id.org/class/redaktor/fileSize
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
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
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"summary": "Sally's blog posts",
"type": "Collection",
"totalItems": 3,
"first": "http://example.org/collection?page=0"
}
Exact Match
1952 first appearance
https://w3id.org/class/redaktor/firstAppearance
Definition
Indicates the first known occurence of a [[Claim]] in some [[CreativeWork]].Exact Match
1953 first performance
https://w3id.org/class/redaktor/firstPerformance
Definition
The date and place the work was first performed.Exact Match
1954 flight distance
https://w3id.org/class/redaktor/flightDistance
Definition
The distance of the flight.Exact Match
1955 flight number
https://w3id.org/class/redaktor/flightNumber
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'.Exact Match
1956 floor level
https://w3id.org/class/redaktor/floorLevel
Definition
The floor level for an [[Accommodation]] in a multi-storey building. Since countingsystems vary internationally, the local system should be used where possible.
Exact Match
1957 floor size
https://w3id.org/class/redaktor/floorSize
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
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 CommunityExample
{
"@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
]
}
]
}
Exact Match
165 followers
https://w3id.org/class/redaktor/followers
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 PropertyExample
{
"@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
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
{
"@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
Definition
The most generic uni-directional social relation.Exact Match
c8 ForgeFed
https://w3id.org/class/redaktor/forgefed
Definition
ForgeFedScope Note
https://forgefed.peers.community/ns399 former type
https://w3id.org/class/redaktor/formerType
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
: PropertyExample
{
"@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
Definition
A person who founded this organization.Exact Match
1960 founders
https://w3id.org/class/redaktor/founders
Definition
A person who founded this organization.Exact Match
1961 founding date
https://w3id.org/class/redaktor/foundingDate
Definition
The date that this organization was founded.Exact Match
1962 founding location
https://w3id.org/class/redaktor/foundingLocation
Definition
The place where the Organization was founded.Exact Match
1525 frames per second
https://w3id.org/class/redaktor/fps
Definition
Frames per second of the video file.see peertube documentation
Scope Note
ActivityPub CommunityExample
{
"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}
]
}
Exact Match
2407 fuel capacity
https://w3id.org/class/redaktor/fuelCapacity
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).
Exact Match
2426 fuel consumption
https://w3id.org/class/redaktor/fuelConsumption
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.
Exact Match
2433 fuel efficiency
https://w3id.org/class/redaktor/fuelEfficiency
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.
Exact Match
2420 fuel type
https://w3id.org/class/redaktor/fuelType
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
Definition
Indicates something directly or indirectly funded or sponsored through a [[Grant]]. See also [[ownershipFundingInfo]].Exact Match
1965 funder
https://w3id.org/class/redaktor/funder
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
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
Definition
Video game which is played on this server.Exact Match
1967 game edition
https://w3id.org/class/redaktor/gameEdition
Definition
The edition of a video game.Exact Match
1968 game item
https://w3id.org/class/redaktor/gameItem
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
Definition
Real or fictional location of the game (or part of game).Exact Match
1970 game platform
https://w3id.org/class/redaktor/gamePlatform
Definition
The electronic systems used to play video games.Exact Match
1971 game server
https://w3id.org/class/redaktor/gameServer
Definition
The server on which it is possible to play the game.Exact Match
1972 game tip
https://w3id.org/class/redaktor/gameTip
Definition
Links to tips, tactics, etc.Exact Match
1973 gender
https://w3id.org/class/redaktor/gender
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
Definition
Identifies the entity (e.g. an application) that generated the object.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-generator
Scope Note
: PropertyExample
{
"@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
Definition
Genre of the creative work, broadcast channel or group.Exact Match
1975 geographic area
https://w3id.org/class/redaktor/geographicArea
Definition
The geographic area associated with the audience.Exact Match
1976 getting tested info
https://w3id.org/class/redaktor/gettingTestedInfo
Definition
Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic.Exact Match
1977 given name
https://w3id.org/class/redaktor/givenName
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
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.Exact Match
1979 government benefits info
https://w3id.org/class/redaktor/governmentBenefitsInfo
Definition
governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement.Exact Match
1980 GTIN
https://w3id.org/class/redaktor/gtin
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
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
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
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
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
Definition
Used to tag an item to be intended or suitable for consumption or use by adults only.Exact Match
2456 has broadcast channel
https://w3id.org/class/redaktor/hasBroadcastChannel
Definition
A broadcast channel of a broadcast service.Exact Match
1986 has course instance
https://w3id.org/class/redaktor/hasCourseInstance
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.Exact Match
1987 has credential
https://w3id.org/class/redaktor/hasCredential
Definition
A credential awarded to the Person or Organization.Exact Match
2394 has Defined Term
https://w3id.org/class/redaktor/hasDefinedTerm
Definition
A Defined Term contained in this term set.Exact Match
1988 has delivery method
https://w3id.org/class/redaktor/hasDeliveryMethod
Definition
Method used for delivery or shipping.Exact Match
1592 has DriveThrough Service
https://w3id.org/class/redaktor/hasDriveThroughService
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.Exact Match
2359 has energy consumption details
https://w3id.org/class/redaktor/hasEnergyConsumptionDetails
Definition
Defines the energy efficiency Category (also known as "class" or "rating") for a product according to an international energy efficiency standard.Exact Match
1989 has measurement
https://w3id.org/class/redaktor/hasMeasurement
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.Exact Match
1990 has menu
https://w3id.org/class/redaktor/hasMenu
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
Definition
A food or drink item contained in a menu or menu section.Exact Match
2373 has menu section
https://w3id.org/class/redaktor/hasMenuSection
Definition
A subgrouping of the menu (by dishes, course, serving time period, etc.).Exact Match
1991 has merchant return policy
https://w3id.org/class/redaktor/hasMerchantReturnPolicy
Definition
Specifies a MerchantReturnPolicy that may be applicable.Exact Match
1992 has occupation
https://w3id.org/class/redaktor/hasOccupation
Definition
The Person's occupation. For past professions, use Role for expressing dates.Exact Match
1993 has offer catalog
https://w3id.org/class/redaktor/hasOfferCatalog
Definition
Indicates an OfferCatalog listing for this Organization, Person, or Service.Exact Match
1994 has POS
https://w3id.org/class/redaktor/hasPOS
Definition
Points-of-Sales operated by the organization or person.Exact Match
1995 has part
https://w3id.org/class/redaktor/hasPart
Definition
Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).Exact Match
1997 health plan network id
https://w3id.org/class/redaktor/healthPlanNetworkId
Definition
Name or unique ID of network. (Networks are often reused across different insurance plans).Exact Match
1998 healthcare reporting data
https://w3id.org/class/redaktor/healthcareReportingData
Definition
Indicates data describing a hospital or as some kind of [[Dataset]].Exact Match
134 height
https://w3id.org/class/redaktor/height
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
: PropertyExample
{
"@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
Definition
[[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]].Exact Match
2000 home location
https://w3id.org/class/redaktor/homeLocation
Definition
A contact location for a person's residence.Exact Match
2001 home team
https://w3id.org/class/redaktor/homeTeam
Definition
The home team in a sports event.Exact Match
2002 honorific prefix
https://w3id.org/class/redaktor/honorificPrefix
Definition
An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.Exact Match
2003 honorific suffix
https://w3id.org/class/redaktor/honorificSuffix
Definition
An honorific suffix following a Person's name such as M.D. /PhD/MSCSW.Exact Match
2004 hospital affiliation
https://w3id.org/class/redaktor/hospitalAffiliation
Definition
A hospital with which the physician or office is affiliated.Exact Match
2005 hosting organization
https://w3id.org/class/redaktor/hostingOrganization
Definition
The organization (airline, travelers' club, etc.) the membership is made with.Exact Match
1593 hours available
https://w3id.org/class/redaktor/hoursAvailable
Definition
The hours during which this service or contact is available.Exact Match
497 href
https://w3id.org/class/redaktor/href
Definition
The target resource pointed to by a Link.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-href
Scope Note
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Link",
"href": "http://example.org/abc",
"mediaType": "text/html",
"name": "Previous"
}
Exact Match
498 hreflang
https://w3id.org/class/redaktor/hreflang
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
: PropertyExample
{
"@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
Definition
IATA identifier for an airline or airport.Exact Match
2008 icao code
https://w3id.org/class/redaktor/icaoCode
Definition
ICAO identifier for an airport.Exact Match
136 icon
https://w3id.org/class/redaktor/icon
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
: PropertyExample
{
"@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
}
}
Exact Match
101 id
https://w3id.org/class/redaktor/id
Definition
Provides the globally unique identifier for an Object or Link.Scope Note
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"name": "Foo",
"id": "http://example.org/foo"
}
Exact Match
1544 identifier
https://w3id.org/class/redaktor/identifier
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-..."
}
Exact Match
137 image
https://w3id.org/class/redaktor/image
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
: PropertyExample
{
"@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"
}
}
Exact Match
2010 in album
https://w3id.org/class/redaktor/inAlbum
Definition
The album to which this recording belongs.Exact Match
2011 in defined term set
https://w3id.org/class/redaktor/inDefinedTermSet
Definition
A [[DefinedTermSet]] that contains this term.Exact Match
1548 in language
https://w3id.org/class/redaktor/inLanguage
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"
}
}
Related
Exact Match
2013 in playlist
https://w3id.org/class/redaktor/inPlaylist
Definition
The playlist to which this recording belongs.Exact Match
2369 in ProductGroup with ID
https://w3id.org/class/redaktor/inProductGroupWithID
Definition
Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]].Exact Match
138 in reply to
https://w3id.org/class/redaktor/inReplyTo
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
: PropertyExample
{
"@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?"
}
}
2466 in store returns offered
https://w3id.org/class/redaktor/inStoreReturnsOffered
Definition
Are in-store returns offered? (for more advanced return methods use the [[returnMethod]] property)Exact Match
2014 in support of
https://w3id.org/class/redaktor/inSupportOf
Definition
Qualification, candidature, degree, application that Thesis supports.Exact Match
169 inbox
https://w3id.org/class/redaktor/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 PropertyExample
{
"@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"
]
}
Exact Match
2015 included composition
https://w3id.org/class/redaktor/includedComposition
Definition
Smaller compositions included in this work (e.g. a movement in a symphony).Exact Match
2318 included Data Catalog
https://w3id.org/class/redaktor/includedDataCatalog
Definition
A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').Exact Match
2323 included in Data Catalog
https://w3id.org/class/redaktor/includedInDataCatalog
Definition
A data catalog which contains this dataset.Exact Match
2016 includes attraction
https://w3id.org/class/redaktor/includesAttraction
Definition
Attraction located at destination.Exact Match
2017 includes object
https://w3id.org/class/redaktor/includesObject
Definition
This links to a node or nodes indicating the exact quantity of the products included in an [[Offer]] or [[ProductCollection]].Exact Match
2018 ineligible region
https://w3id.org/class/redaktor/ineligibleRegion
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]].Exact Match
2019 ingredients
https://w3id.org/class/redaktor/ingredients
Definition
A single ingredient used in the recipe, e.g. sugar, flour or garlic.Exact Match
2020 inker
https://w3id.org/class/redaktor/inker
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
Definition
URL at which the app may be installed, if different from the URL of the item.Exact Match
2022 instructor
https://w3id.org/class/redaktor/instructor
Definition
A person assigned to instruct or provide instructional assistance for the [[CourseInstance]].Exact Match
252 instrument
https://w3id.org/class/redaktor/instrument
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
: PropertyExample
{
"@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
Definition
The WebSite or SoftwareApplication where the interactions took place.Exact Match
2023 interaction statistic
https://w3id.org/class/redaktor/interactionStatistic
Definition
The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.Exact Match
2390 interaction type
https://w3id.org/class/redaktor/interactionType
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.Exact Match
2024 interactivity type
https://w3id.org/class/redaktor/interactivityType
Definition
The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.Exact Match
2025 interpreted as claim
https://w3id.org/class/redaktor/interpretedAsClaim
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]].Exact Match
2026 inventory level
https://w3id.org/class/redaktor/inventoryLevel
Definition
The current approximate inventory level for the item or items.Exact Match
2027 is accepting new patients
https://w3id.org/class/redaktor/isAcceptingNewPatients
Definition
Whether the provider is accepting new patients.Exact Match
1594 is accessible for free
https://w3id.org/class/redaktor/isAccessibleForFree
Definition
A flag to signal that the item, event, or place is accessible for free.Exact Match
2355 is accessory or spare part for
https://w3id.org/class/redaktor/isAccessoryOrSparePartFor
Definition
A pointer to another product (or multiple products) for which this product is an accessory or spare part.Exact Match
2029 is based on
https://w3id.org/class/redaktor/isBasedOn
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
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.Exact Match
2368 is consumable for
https://w3id.org/class/redaktor/isConsumableFor
Definition
A pointer to another product (or multiple products) for which this product is a consumable.Exact Match
2031 is family friendly
https://w3id.org/class/redaktor/isFamilyFriendly
Definition
Indicates whether this content is family friendly.Exact Match
1549 is Live Broadcast
https://w3id.org/class/redaktor/isLiveBroadcast
Definition
Used by PeerTube with the Video Object. True if the broadcast is of a live event.Exact Match
2033 is part of
https://w3id.org/class/redaktor/isPartOf
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
Definition
Indicates some accommodation that this floor plan describes.Exact Match
2035 is related to
https://w3id.org/class/redaktor/isRelatedTo
Definition
A pointer to another, somehow related product (or multiple products).Exact Match
2036 is similar to
https://w3id.org/class/redaktor/isSimilarTo
Definition
A pointer to another, functionally similar product (or multiple products).Exact Match
2366 is variant of
https://w3id.org/class/redaktor/isVariantOf
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.Exact Match
2038 isic v4
https://w3id.org/class/redaktor/isicV4
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
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.Exact Match
2040 ISRC code
https://w3id.org/class/redaktor/isrcCode
Definition
The International Standard Recording Code for the recording.Exact Match
2041 ISSN
https://w3id.org/class/redaktor/issn
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
Definition
Identifies the issue of publication; for example, “iii” or “2”.Exact Match
2043 issued by
https://w3id.org/class/redaktor/issuedBy
Definition
The organization issuing the ticket or permit.Exact Match
2044 ISWC code
https://w3id.org/class/redaktor/iswcCode
Definition
The International Standard Musical Work Code for the composition.Exact Match
2045 item
https://w3id.org/class/redaktor/item
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
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.Exact Match
2465 item defect return fees
https://w3id.org/class/redaktor/itemDefectReturnFees
Definition
The type of return fees for returns of defect products.Exact Match
2467 item defect return label source
https://w3id.org/class/redaktor/itemDefectReturnLabelSource
Definition
The method (from an enumeration) by which the customer obtains a return shipping label for a defect product.Exact Match
2464 item defect return shipping fees amount
https://w3id.org/class/redaktor/itemDefectReturnShippingFeesAmount
Definition
Amount of shipping costs for defect product returns. Applicable when property [[itemDefectReturnFees]] equals [[ReturnShippingFees]].Exact Match
2047 item list element
https://w3id.org/class/redaktor/itemListElement
Definition
no label in languageExact Match
2048 item list order
https://w3id.org/class/redaktor/itemListOrder
Definition
Type of ordering (e.g. Ascending, Descending, Unordered).Exact Match
2401 item location
https://w3id.org/class/redaktor/itemLocation
Definition
Current location of the item.Exact Match
2049 item offered
https://w3id.org/class/redaktor/itemOffered
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.Exact Match
2376 item reviewed
https://w3id.org/class/redaktor/itemReviewed
Definition
The item that is being reviewed/rated.Exact Match
2489 item shipped
https://w3id.org/class/redaktor/itemShipped
Definition
Item(s) being shipped.Exact Match
613 items
https://w3id.org/class/redaktor/items
Definition
Identifies the items contained in a collection. The items might be ordered or unordered. For Ordered Collections use :orderedItemssee https://www.w3.org/TR/activitystreams-vocabulary/#dfn-items
Scope Note
: PropertyExample
{
"@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"
}
]
}
Related
Exact Match
2050 itinerary
https://w3id.org/class/redaktor/itinerary
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
Definition
The job title of the person (for example, Financial Manager).Exact Match
2450 jurisdiction
https://w3id.org/class/redaktor/jurisdiction
Definition
Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.Exact Match
2052 keywords
https://w3id.org/class/redaktor/keywords
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
Definition
A textual description of known damages, both repaired and unrepaired.Exact Match
2053 knows
https://w3id.org/class/redaktor/knows
Definition
The most generic bi-directional social/work relation.Exact Match
2054 knows about
https://w3id.org/class/redaktor/knowsAbout
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.Exact Match
2055 knows language
https://w3id.org/class/redaktor/knowsLanguage
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.Exact Match
614 last
https://w3id.org/class/redaktor/last
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
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"summary": "A collection",
"type": "Collection",
"totalItems": 3,
"last": "http://example.org/collection?page=1"
}
Exact Match
3193 latitude
https://w3id.org/class/redaktor/latitude
Definition
The latitude of a place.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-latitude
Scope Note
: PropertyExample
{
"@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
Definition
A schematic image showing the floorplan layout.Exact Match
2057 learning resource type
https://w3id.org/class/redaktor/learningResourceType
Definition
The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.Exact Match
2058 lease length
https://w3id.org/class/redaktor/leaseLength
Definition
Length of the lease for some [[Accommodation]], either particular to some [[Offer]] or in some cases intrinsic to the property.Exact Match
2059 legal name
https://w3id.org/class/redaktor/legalName
Definition
The official name of the organization, e.g. the registered company name.Exact Match
2060 lei code
https://w3id.org/class/redaktor/leiCode
Definition
An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.Exact Match
2061 letterer
https://w3id.org/class/redaktor/letterer
Definition
The individual who adds lettering, including speech balloons and sound effects, to artwork.1546 license
https://w3id.org/class/redaktor/license
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
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 PropertyExample
{
"@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"
]
}
Exact Match
168 has likes
https://w3id.org/class/redaktor/likes
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 PropertyExact Match
2063 line
https://w3id.org/class/redaktor/line
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
Definition
PleromaScope Note
http://litepub.social/ns#Alt Label
- litepub
1526 live save replay
https://w3id.org/class/redaktor/liveSaveReplay
Definition
If this is a live, tell if the user will save a replay or not.see peertube documentation
Scope Note
ActivityPub CommunityExample
{
"type": "Video",
"isLiveBroadcast": true,
"liveSaveReplay": true,
"permanentLive": true
}
Exact Match
139 location
https://w3id.org/class/redaktor/location
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
: PropertyExample
{
"@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
Definition
The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.Exact Match
3194 longitude
https://w3id.org/class/redaktor/longitude
Definition
The longitude of a place.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-longitude
Scope Note
: PropertyExample
{
"@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
Definition
The person who wrote the words.Exact Match
2069 main entity
https://w3id.org/class/redaktor/mainEntity
Definition
Indicates the primary entity described in some page or other CreativeWork.Exact Match
2070 maintainer
https://w3id.org/class/redaktor/maintainer
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.Exact Match
2071 makes offer
https://w3id.org/class/redaktor/makesOffer
Definition
A pointer to products or services offered by the organization or person.Exact Match
157 manually approves followers
https://w3id.org/class/redaktor/manuallyApprovesFollowers
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
: Extension2367 manufacturer
https://w3id.org/class/redaktor/manufacturer
Definition
The manufacturer of the product.Exact Match
2072 map type
https://w3id.org/class/redaktor/mapType
Definition
Indicates the kind of Map, from the MapCategoryType Enumeration.Exact Match
2343 margin OfError
https://w3id.org/class/redaktor/marginOfError
Definition
A marginOfError for an [[Observation]].Exact Match
2073 masthead
https://w3id.org/class/redaktor/masthead
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
Definition
MastodonScope Note
http://joinmastodon.org/ns#2074 material
https://w3id.org/class/redaktor/material
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
Definition
The quantity of the materials being described or an expression of the physical space they occupy.Exact Match
2076 math expression
https://w3id.org/class/redaktor/mathExpression
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.Exact Match
2325 max. Price
https://w3id.org/class/redaktor/maxPrice
Definition
The highest price if the price is a range.Exact Match
2312 max value
https://w3id.org/class/redaktor/maxValue
Definition
The upper value of some characteristic or property.Exact Match
1569 maximum attendee capacity
https://w3id.org/class/redaktor/maximumAttendeeCapacity
Definition
The total number of individuals that may attend an event or venue.Exact Match
1497 maximum physical attendee capacity
https://w3id.org/class/redaktor/maximumPhysicalAttendeeCapacity
1498 maximum virtual attendee capacity
https://w3id.org/class/redaktor/maximumVirtualAttendeeCapacity
2077 meal service
https://w3id.org/class/redaktor/mealService
Definition
Description of the meals that will be provided or available for purchase.Exact Match
2341 measured property
https://w3id.org/class/redaktor/measuredProperty
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.Exact Match
2339 measured value
https://w3id.org/class/redaktor/measuredValue
Definition
The measuredValue of an [[Observation]].Exact Match
140 media type
https://w3id.org/class/redaktor/mediaType
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
: PropertyExample
{
"@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
Definition
Medical audience for page.Exact Match
2079 medical specialty
https://w3id.org/class/redaktor/medicalSpecialty
Definition
A medical specialty of the provider.Exact Match
2441 meets emission standard
https://w3id.org/class/redaktor/meetsEmissionStandard
Definition
Indicates that the vehicle meets the respective emission standard.Exact Match
2080 member
https://w3id.org/class/redaktor/member
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
Definition
An Organization (or ProgramMembership) to which this Person or Organization belongs.Exact Match
2082 members
https://w3id.org/class/redaktor/members
Definition
A member of this organization.Exact Match
2083 membership number
https://w3id.org/class/redaktor/membershipNumber
Definition
A unique identifier for the membership.Exact Match
2084 membership points earned
https://w3id.org/class/redaktor/membershipPointsEarned
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.)Exact Match
2085 memory requirements
https://w3id.org/class/redaktor/memoryRequirements
Definition
Minimum memory requirements.Exact Match
2086 mentions
https://w3id.org/class/redaktor/mentions
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.
2472 merchant return days
https://w3id.org/class/redaktor/merchantReturnDays
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]].Exact Match
2462 merchant return link
https://w3id.org/class/redaktor/merchantReturnLink
Definition
Specifies a Web page or service by URL, for product returns.Exact Match
2436 mileage from Odometer
https://w3id.org/class/redaktor/mileageFromOdometer
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
Exact Match
2324 min. price
https://w3id.org/class/redaktor/minPrice
Definition
The lowest price if the price is a range.Exact Match
2314 min. value
https://w3id.org/class/redaktor/minValue
Definition
The lower value of some characteristic or property.Exact Match
2088 mission coverage priorities policy
https://w3id.org/class/redaktor/missionCoveragePrioritiesPolicy
Definition
For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues.Exact Match
c4 Mobilizon
https://w3id.org/class/redaktor/mobilizon
Definition
MobilizonScope Note
https://joinmobilizon.org/ns#2370 model
https://w3id.org/class/redaktor/model
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
Definition
The release date of a vehicle model (often used to differentiate versions of the same make and model).Exact Match
158 moved to
https://w3id.org/class/redaktor/movedTo
Definition
Required for Move activity in mastodonsee minutes or documentation
Scope Note
: ExtensionExact Match
2089 mpn
https://w3id.org/class/redaktor/mpn
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
Definition
An arrangement derived from the composition.Exact Match
2091 music by
https://w3id.org/class/redaktor/musicBy
Definition
The composer of the soundtrack.Exact Match
2092 music composition form
https://w3id.org/class/redaktor/musicCompositionForm
Definition
The type of composition (e.g. overture, sonata, symphony, etc.).Exact Match
2093 music group member
https://w3id.org/class/redaktor/musicGroupMember
Definition
A member of a music group—for example, John, Paul, George, or Ringo.Exact Match
2094 musical key
https://w3id.org/class/redaktor/musicalKey
Definition
The key, mode, or scale this composition uses.Exact Match
2095 naics
https://w3id.org/class/redaktor/naics
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
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
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Note",
"name": "A simple note"
}
Related
Exact Match
118 name map
https://w3id.org/class/redaktor/nameMap
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
: PropertyAlt 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
Exact Match
2096 nationality
https://w3id.org/class/redaktor/nationality
Definition
Nationality of the person.Exact Match
2497 negative notes
https://w3id.org/class/redaktor/negativeNotes
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.Exact Match
2097 net worth
https://w3id.org/class/redaktor/netWorth
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
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.Exact Match
797 next
https://w3id.org/class/redaktor/next
Definition
In a paged Collection, indicates the next page of items.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-next
Scope Note
: PropertyExample
{
"@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"
]
}
Exact Match
2099 next item
https://w3id.org/class/redaktor/nextItem
Definition
A link to the ListItem that follows the current one.Exact Match
2100 no bylines policy
https://w3id.org/class/redaktor/noBylinesPolicy
Definition
For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement explaining when authors of articles are not named in bylines.Exact Match
2101 nonprofit status
https://w3id.org/class/redaktor/nonprofitStatus
Definition
nonprofit Status indicates the legal status of a non-profit organization in its primary place of business.Exact Match
2356 nsn
https://w3id.org/class/redaktor/nsn
Definition
Indicates the NATO stock number (nsn) of a [[Product]].Exact Match
2102 num tracks
https://w3id.org/class/redaktor/numTracks
Definition
The number of tracks in this album or playlist.Exact Match
2103 number of accommodation units
https://w3id.org/class/redaktor/numberOfAccommodationUnits
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]].Exact Match
2419 number of airbags
https://w3id.org/class/redaktor/numberOfAirbags
Definition
The number or type of airbags in the vehicle.Exact Match
2104 number of available accommodation units
https://w3id.org/class/redaktor/numberOfAvailableAccommodationUnits
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]].Exact Match
2428 number of axles
https://w3id.org/class/redaktor/numberOfAxles
Definition
The number of axles.
Typical unit code(s): C62
Exact Match
2105 number of bathrooms total
https://w3id.org/class/redaktor/numberOfBathroomsTotal
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]].Exact Match
2106 number of bedrooms
https://w3id.org/class/redaktor/numberOfBedrooms
Definition
The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]].Exact Match
2399 number of beds
https://w3id.org/class/redaktor/numberOfBeds
Definition
The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.Exact Match
2107 number of credits
https://w3id.org/class/redaktor/numberOfCredits
Definition
The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram.Exact Match
2430 number of doors
https://w3id.org/class/redaktor/numberOfDoors
Definition
The number of doors.
Typical unit code(s): C62
Exact Match
2108 number of employees
https://w3id.org/class/redaktor/numberOfEmployees
Definition
The number of employees in an organization e.g. business.Exact Match
2306 number of episodes
https://w3id.org/class/redaktor/numberOfEpisodes
Definition
The number of episodes in this season or series.Exact Match
2413 number of forward gears
https://w3id.org/class/redaktor/numberOfForwardGears
Definition
The total number of forward gears available for the transmission system of the vehicle.
Typical unit code(s): C62
Exact Match
2109 number of full bathrooms
https://w3id.org/class/redaktor/numberOfFullBathrooms
Definition
Number of full bathrooms - The total number of full and ¾ bathrooms in an [[Accommodation]]. This corresponds to the BathroomsFull field in RESO.Exact Match
2110 number of items
https://w3id.org/class/redaktor/numberOfItems
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.Exact Match
2111 number of pages
https://w3id.org/class/redaktor/numberOfPages
Definition
The number of pages in the book.Exact Match
2112 number of partial bathrooms
https://w3id.org/class/redaktor/numberOfPartialBathrooms
Definition
Number of partial bathrooms - The total number of half and ¼ bathrooms in an [[Accommodation]]. This corresponds to the BathroomsPartial field in RESO.Exact Match
2113 number of players
https://w3id.org/class/redaktor/numberOfPlayers
Definition
Indicate how many people can play this game (minimum, maximum, or range).Exact Match
2415 number of previous owners
https://w3id.org/class/redaktor/numberOfPreviousOwners
Definition
The number of owners of the vehicle, including the current one.
Typical unit code(s): C62
Exact Match
2114 number of rooms
https://w3id.org/class/redaktor/numberOfRooms
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.
Exact Match
2307 number of seasons
https://w3id.org/class/redaktor/numberOfSeasons
Definition
The number of seasons in this series.Exact Match
2115 nutrition
https://w3id.org/class/redaktor/nutrition
Definition
Nutrition information about the recipe or menu item.Exact Match
176 OAuth Authorization Endpoint
https://w3id.org/class/redaktor/oauthAuthorizationEndpoint
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
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
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
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
: PropertyExample
{
"@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
Definition
The observationDate of an [[Observation]].Exact Match
2340 observed node
https://w3id.org/class/redaktor/observedNode
Definition
The observedNode of an [[Observation]], often a [[StatisticalPopulation]].Exact Match
2116 occupancy
https://w3id.org/class/redaktor/occupancy
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
Definition
The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions.Exact Match
2486 occupational category
https://w3id.org/class/redaktor/occupationalCategory
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.
Exact Match
2117 occupational credential awarded
https://w3id.org/class/redaktor/occupationalCredentialAwarded
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.Exact Match
2118 offered by
https://w3id.org/class/redaktor/offeredBy
Definition
A pointer to the organization or person making the offer.Exact Match
2119 offers
https://w3id.org/class/redaktor/offers
Definition
An offer to provide this item—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
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
: PropertyExample
{
"@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"
}
]
}
Exact Match
2120 opening hours
https://w3id.org/class/redaktor/openingHours
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 as10: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>
.
Exact Match
2381 opens
https://w3id.org/class/redaktor/opens
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
Definition
Operating systems supported (Windows 7, OSX 10.6, Android 1.6).Exact Match
2122 order delivery
https://w3id.org/class/redaktor/orderDelivery
Definition
The delivery of the parcel related to this order or order item.Exact Match
2123 order item number
https://w3id.org/class/redaktor/orderItemNumber
Definition
The identifier of the order item.Exact Match
2124 order item status
https://w3id.org/class/redaktor/orderItemStatus
Definition
The current status of the order item.Exact Match
2125 order quantity
https://w3id.org/class/redaktor/orderQuantity
Definition
The number of the item ordered. If the property is not set, assume the quantity is one.Exact Match
615 ordered items
https://w3id.org/class/redaktor/orderedItems
Definition
Identifies the items contained in an ordered collection.See higher-level definition https://www.w3.org/TR/activitystreams-vocabulary/#dfn-items
Scope Note
: PropertyExample
[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
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
: PropertyExample
{
"@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"
}
}
Exact Match
2487 origin address
https://w3id.org/class/redaktor/originAddress
Definition
Shipper's address.Exact Match
170 outbox
https://w3id.org/class/redaktor/outbox
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 PropertyExample
{
"@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"
]
}
Exact Match
2510 owned From
https://w3id.org/class/redaktor/ownedFrom
Definition
The date and time of obtaining the product.Exact Match
2513 owned Through
https://w3id.org/class/redaktor/ownedThrough
Definition
The date and time of giving up ownership on the product.Exact Match
2127 ownership funding info
https://w3id.org/class/redaktor/ownershipFundingInfo
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.Exact Match
2128 owns
https://w3id.org/class/redaktor/owns
Definition
Products owned by the organization or person.Exact Match
2129 page end
https://w3id.org/class/redaktor/pageEnd
Definition
The page on which the work ends; for example “138” or “xvi”.Exact Match
2130 page start
https://w3id.org/class/redaktor/pageStart
Definition
The page on which the work starts; for example “135” or “xiii”.Exact Match
2131 pagination
https://w3id.org/class/redaktor/pagination
Definition
Any description of pages that is not separated into pageStart and pageEnd; for example, “1-6, 9, 55” or “10-12, 46-49”.Exact Match
2133 parent organization
https://w3id.org/class/redaktor/parentOrganization
Definition
The larger organization that this organization is a [[subOrganization]] of, if any.Exact Match
2452 parent service
https://w3id.org/class/redaktor/parentService
Definition
A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.Exact Match
798 part of
https://w3id.org/class/redaktor/partOf
Definition
Identifies the Collection to which a CollectionPage objects items belong.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-partof
Scope Note
: PropertyExample
{
"@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"
}
]
}
Exact Match
2135 part of episode
https://w3id.org/class/redaktor/partOfEpisode
Definition
The episode to which this clip belongs.Exact Match
2495 part of order
https://w3id.org/class/redaktor/partOfOrder
Definition
The overall order the items in this delivery were included in.Exact Match
2136 part of season
https://w3id.org/class/redaktor/partOfSeason
Definition
The season to which this episode belongs.Exact Match
2137 part of series
https://w3id.org/class/redaktor/partOfSeries
Definition
The series to which this episode or season belongs.Exact Match
2138 part of TV series
https://w3id.org/class/redaktor/partOfTVSeries
Definition
The TV series to which this episode or season belongs.Exact Match
2139 part of trip
https://w3id.org/class/redaktor/partOfTrip
Definition
Identifies that this [[Trip]] is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip.Exact Match
2140 pattern
https://w3id.org/class/redaktor/pattern
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
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
Definition
Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.Exact Match
c3 PeerTube
https://w3id.org/class/redaktor/peertube
Definition
PeerTubeScope Note
https://joinpeertube.org/ns#2142 penciler
https://w3id.org/class/redaktor/penciler
Definition
The individual who draws the primary narrative artwork.Exact Match
2143 perform time
https://w3id.org/class/redaktor/performTime
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.Exact Match
2144 performer in
https://w3id.org/class/redaktor/performerIn
Definition
Event that this person is a performer or participant in.Exact Match
1527 permanent live
https://w3id.org/class/redaktor/permanentLive
Definition
If this is a live, tell if this is a permanent live or not.see peertube documentation
Scope Note
ActivityPub CommunityExample
{
"type": "Video",
"isLiveBroadcast": true,
"liveSaveReplay": true,
"permanentLive": true
}
Exact Match
2145 permissions
https://w3id.org/class/redaktor/permissions
Definition
Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).Exact Match
2146 permitted usage
https://w3id.org/class/redaktor/permittedUsage
Definition
Indications regarding the permitted usage of the accommodation.Exact Match
2147 pets allowed
https://w3id.org/class/redaktor/petsAllowed
Definition
Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.Exact Match
2148 play mode
https://w3id.org/class/redaktor/playMode
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
Definition
Player type required—for example, Flash or Silverlight.Exact Match
2397 players online
https://w3id.org/class/redaktor/playersOnline
Definition
Number of players on the server.Exact Match
1528 playlists
https://w3id.org/class/redaktor/playlists
Definition
?Scope Note
ActivityPub CommunityExample
?Exact Match
2149 polygon
https://w3id.org/class/redaktor/polygon
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
Definition
Defines the position of a PlaylistElement in a Playlist.Scope Note
ActivityPub Community2499 positive notes
https://w3id.org/class/redaktor/positiveNotes
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.Exact Match
1567 post office box number
https://w3id.org/class/redaktor/postOfficeBoxNumber
Definition
The post office box number for PO box addresses.Exact Match
1566 postal code
https://w3id.org/class/redaktor/postalCode
Definition
The postal code for the place.Example
66000Exact Match
171 preferred username
https://w3id.org/class/redaktor/preferredUsername
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 Property2152 prep time
https://w3id.org/class/redaktor/prepTime
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
Definition
In a paged Collection, identifies the previous page of items.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-prev
Scope Note
: PropertyExample
{
"@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"
]
}
Exact Match
141 preview
https://w3id.org/class/redaktor/preview
Definition
Identifies an entity that provides a preview of this object.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-preview
Scope Note
: PropertyExample
{
"@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"
}
}
}
Exact Match
2153 previous item
https://w3id.org/class/redaktor/previousItem
Definition
A link to the ListItem that preceeds the current one.Exact Match
2155 price currency
https://w3id.org/class/redaktor/priceCurrency
Definition
no label in languageExact Match
2156 price range
https://w3id.org/class/redaktor/priceRange
Definition
The price range of the business, for example$$$
.Exact Match
2157 price specification
https://w3id.org/class/redaktor/priceSpecification
Definition
One or more detailed price specifications, indicating the unit price and delivery or payment charges.Exact Match
2158 price valid until
https://w3id.org/class/redaktor/priceValidUntil
Definition
The date after which the price is no longer available.Exact Match
2448 processing time
https://w3id.org/class/redaktor/processingTime
Definition
Estimated processing time for the service using this channel.Exact Match
2159 processor requirements
https://w3id.org/class/redaktor/processorRequirements
Definition
Processor architecture required to run the application (e.g. IA64).Exact Match
2160 producer
https://w3id.org/class/redaktor/producer
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
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
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
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”).Exact Match
2305 production company
https://w3id.org/class/redaktor/productionCompany
Definition
The production company or studio responsible for the item e.g. series, video game, episode etc.Exact Match
2360 production date
https://w3id.org/class/redaktor/productionDate
Definition
The date of production of the item, e.g. vehicle.Exact Match
2163 proficiency level
https://w3id.org/class/redaktor/proficiencyLevel
Definition
Proficiency needed for this content; expected values: 'Beginner', 'Expert'.Exact Match
2164 program name
https://w3id.org/class/redaktor/programName
Definition
The program providing the membership.Exact Match
2165 programming language
https://w3id.org/class/redaktor/programmingLanguage
Definition
The computer programming language.Exact Match
2166 programming model
https://w3id.org/class/redaktor/programmingModel
Definition
Indicates whether API is managed or unmanaged.Exact Match
2329 protein content
https://w3id.org/class/redaktor/proteinContent
Definition
The number of grams of protein.Exact Match
178 provide client key
https://w3id.org/class/redaktor/provideClientKey
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
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
Definition
Indicates the mobility of a provided service (e.g. 'static', 'dynamic').Exact Match
2443 provides service
https://w3id.org/class/redaktor/providesService
Definition
The service provided by this channel.Exact Match
175 proxy Url
https://w3id.org/class/redaktor/proxyUrl
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
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.Exact Match
2169 public transport closures info
https://w3id.org/class/redaktor/publicTransportClosuresInfo
Definition
Information about public transport closures.Exact Match
2170 publication
https://w3id.org/class/redaktor/publication
Definition
A publication event associated with the item.Exact Match
2171 publication type
https://w3id.org/class/redaktor/publicationType
Definition
The type of the medical article, taken from the US NLM MeSH publication type catalog. See also MeSH documentation.Exact Match
123 published
https://w3id.org/class/redaktor/published
Definition
The date and time at which the object was published.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-published
Scope Note
: PropertyExample
{
"@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
Definition
An agent associated with the publication event.Exact Match
2173 published on
https://w3id.org/class/redaktor/publishedOn
Definition
A broadcast service associated with the publication event.Exact Match
2174 publisher
https://w3id.org/class/redaktor/publisher
Definition
The publisher of the creative work. Organization or person responsible for publishing books, periodicals, printed music, podcasts, games or software2175 publisher imprint
https://w3id.org/class/redaktor/publisherImprint
Definition
The publishing division which published the comic.Exact Match
2176 publishing principles
https://w3id.org/class/redaktor/publishingPrinciples
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.
Exact Match
2358 purchase date
https://w3id.org/class/redaktor/purchaseDate
Definition
The date the item e.g. vehicle was purchased by the current owner.Exact Match
2485 qualifications
https://w3id.org/class/redaktor/qualifications
Definition
Specific qualifications required for this role or Occupation.Exact Match
2177 quarantine guidelines
https://w3id.org/class/redaktor/quarantineGuidelines
Definition
Guidelines about quarantine rules, e.g. in the context of a pandemic.Exact Match
2178 quest
https://w3id.org/class/redaktor/quest
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
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
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Place",
"name": "Fresno Area",
"latitude": 36.75,
"longitude": 119.7667,
"radius": 15,
"units": "miles"
}
Exact Match
2378 rating count
https://w3id.org/class/redaktor/ratingCount
Definition
The count of total number of ratings.Exact Match
2406 rating explanation
https://w3id.org/class/redaktor/ratingExplanation
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]].Exact Match
2405 rating value
https://w3id.org/class/redaktor/ratingValue
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.
Exact Match
2179 read by
https://w3id.org/class/redaktor/readBy
Definition
A person who reads (performs) the audiobook.Exact Match
2180 recipe category
https://w3id.org/class/redaktor/recipeCategory
Definition
The category of the recipe—for example, appetizer, entree, etc.Exact Match
2181 recipe cuisine
https://w3id.org/class/redaktor/recipeCuisine
Definition
The cuisine of the recipe (for example, French or Ethiopian).Exact Match
2182 recipe ingredient
https://w3id.org/class/redaktor/recipeIngredient
Definition
A single ingredient used in the recipe, e.g. sugar, flour or garlic.Exact Match
2183 recipe instructions
https://w3id.org/class/redaktor/recipeInstructions
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.Exact Match
2184 recipe yield
https://w3id.org/class/redaktor/recipeYield
Definition
The quantity produced by the recipe (for example, number of people served, number of servings, etc).Exact Match
2185 recognized by
https://w3id.org/class/redaktor/recognizedBy
Definition
An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation.Exact Match
2186 recorded as
https://w3id.org/class/redaktor/recordedAs
Definition
An audio recording of the work.Exact Match
2187 recorded at
https://w3id.org/class/redaktor/recordedAt
Definition
The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.Exact Match
2188 recording of
https://w3id.org/class/redaktor/recordingOf
Definition
The composition this track is a recording of.Exact Match
c6 redaktor
https://w3id.org/class/redaktor/redaktor
Definition
redaktorScope Note
https://redaktor.me/activitypub#2470 refund type
https://w3id.org/class/redaktor/refundType
Definition
A refund type, from an enumerated list.Exact Match
2346 regions allowed
https://w3id.org/class/redaktor/regionsAllowed
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.Exact Match
499 rel
https://w3id.org/class/redaktor/rel
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
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Link",
"href": "http://example.org/abc",
"hreflang": "en",
"mediaType": "text/html",
"name": "Preview",
"rel": ["canonical", "preview"]
}
Exact Match
3211 relationship
https://w3id.org/class/redaktor/relationship
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
: PropertyExample
{
"@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
Definition
The release date of a product or product model. This can be used to distinguish the exact variant of a product.Exact Match
2190 release notes
https://w3id.org/class/redaktor/releaseNotes
Definition
Description of what changed in this version.Exact Match
2191 released event
https://w3id.org/class/redaktor/releasedEvent
Definition
The place and time the release was issued, expressed as a PublicationEvent.Exact Match
142 replies
https://w3id.org/class/redaktor/replies
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
: PropertyExample
{
"@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"
}
]
}
}
Exact Match
2192 requirements
https://w3id.org/class/redaktor/requirements
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).Exact Match
2348 requires subscription
https://w3id.org/class/redaktor/requiresSubscription
Definition
Indicates if use of the media require a subscription (either paid or free). Allowed values aretrue
or false
(note that an earlier version had 'yes', 'no').Exact Match
2480 responsibilities
https://w3id.org/class/redaktor/responsibilities
Definition
Responsibilities associated with this role or Occupation.Exact Match
2463 restocking fee
https://w3id.org/class/redaktor/restockingFee
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.Exact Match
240 result
https://w3id.org/class/redaktor/result
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
: PropertyExample
{
"@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
Definition
The type of return fees for purchased products (for any return reason)Exact Match
2468 return label source
https://w3id.org/class/redaktor/returnLabelSource
Definition
The method (from an enumeration) by which the customer obtains a return shipping label for a product returned for any reason.Exact Match
2473 return method
https://w3id.org/class/redaktor/returnMethod
Definition
The type of return method offered, specified from an enumeration.Exact Match
2460 return policy category
https://w3id.org/class/redaktor/returnPolicyCategory
Definition
Specifies an applicable return policy (from an enumeration).Exact Match
2461 return policy country
https://w3id.org/class/redaktor/returnPolicyCountry
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.Exact Match
2476 return policy seasonal override
https://w3id.org/class/redaktor/returnPolicySeasonalOverride
Definition
Seasonal override of a return policy.Exact Match
2471 return shipping fees amount
https://w3id.org/class/redaktor/returnShippingFeesAmount
Definition
Amount of shipping costs for product returns (for any reason). Applicable when property [[returnFees]] equals [[ReturnShippingFees]].Exact Match
2402 review aspect
https://w3id.org/class/redaktor/reviewAspect
Definition
This Review or Rating is relevant to this part or facet of the itemReviewed.Exact Match
2502 review body
https://w3id.org/class/redaktor/reviewBody
Definition
The actual body of the review.Exact Match
2377 review count
https://w3id.org/class/redaktor/reviewCount
Definition
The count of total number of reviews.Exact Match
2496 review rating
https://w3id.org/class/redaktor/reviewRating
Definition
The rating given in this review. Note that reviews can themselves be rated. ThereviewRating
applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work.Exact Match
2195 runtime
https://w3id.org/class/redaktor/runtime
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
Definition
Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).Exact Match
2197 sample type
https://w3id.org/class/redaktor/sampleType
Definition
What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.Exact Match
2338 saturated fat content
https://w3id.org/class/redaktor/saturatedFatContent
Definition
The number of grams of saturated fat.Exact Match
2198 schema version
https://w3id.org/class/redaktor/schemaVersion
Definition
Indicates (by URL or string) a particular version of a schema used in some CreativeWork. This property was created primarily toindicate 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.Exact Match
2199 school closures info
https://w3id.org/class/redaktor/schoolClosuresInfo
Definition
Information about school closures.Exact Match
2200 screen count
https://w3id.org/class/redaktor/screenCount
Definition
The number of screens in the movie theater.Exact Match
2201 screenshot
https://w3id.org/class/redaktor/screenshot
Definition
A link to a screenshot image of the app.Exact Match
2202 SD date published
https://w3id.org/class/redaktor/sdDatePublished
Definition
Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]Exact Match
2203 SD license
https://w3id.org/class/redaktor/sdLicense
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
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.
Exact Match
2308 number of episodes
https://w3id.org/class/redaktor/seasonNumber
Definition
Position of the season within an ordered group of seasons.Exact Match
2388 seat number
https://w3id.org/class/redaktor/seatNumber
Definition
The location of the reserved seat (e.g., 27).Exact Match
2387 seat row
https://w3id.org/class/redaktor/seatRow
Definition
The row location of the reserved seat (e.g., B).Exact Match
2386 seat section
https://w3id.org/class/redaktor/seatSection
Definition
The section location of the reserved seat (e.g. Orchestra).Exact Match
2437 seating capacity
https://w3id.org/class/redaktor/seatingCapacity
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
Exact Match
2385 seating type
https://w3id.org/class/redaktor/seatingType
Definition
The type/class of the seat.Exact Match
2205 seeks
https://w3id.org/class/redaktor/seeks
Definition
A pointer to products or services sought by the organization or person (demand).Exact Match
2206 seller
https://w3id.org/class/redaktor/seller
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
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
: ExtensionExample
{}
2207 serial number
https://w3id.org/class/redaktor/serialNumber
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.Exact Match
2395 server status
https://w3id.org/class/redaktor/serverStatus
Definition
Status of a game server.Exact Match
2208 serves cuisine
https://w3id.org/class/redaktor/servesCuisine
Definition
The cuisine of the restaurant.Exact Match
2209 service area
https://w3id.org/class/redaktor/serviceArea
Definition
The geographic area where the service is provided.Exact Match
2210 service audience
https://w3id.org/class/redaktor/serviceAudience
Definition
The audience eligible for this service.Exact Match
2449 service location
https://w3id.org/class/redaktor/serviceLocation
Definition
The location (e.g. civic structure, local business, etc.) where a person can go to access the service.Exact Match
2451 service operator
https://w3id.org/class/redaktor/serviceOperator
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.Exact Match
2211 service output
https://w3id.org/class/redaktor/serviceOutput
Definition
The tangible thing generated by the service, e.g. a passport, permit, etc.Exact Match
2447 service phone
https://w3id.org/class/redaktor/servicePhone
Definition
The phone number to use to access the service.Exact Match
2445 service postal address
https://w3id.org/class/redaktor/servicePostalAddress
Definition
The address for accessing the service by mail.Exact Match
2444 service SMS-Number
https://w3id.org/class/redaktor/serviceSmsNumber
Definition
The number to access the service by text message.Exact Match
2212 service type
https://w3id.org/class/redaktor/serviceType
Definition
The type of service being offered, e.g. veterans' benefits, emergency relief, etc.Exact Match
2446 service Url
https://w3id.org/class/redaktor/serviceUrl
Definition
The website to access the service.Exact Match
2328 serving size
https://w3id.org/class/redaktor/servingSize
Definition
The serving size, in terms of the number of volume or mass.Exact Match
2354 sha256
https://w3id.org/class/redaktor/sha256
Definition
The SHA-2 SHA256 hash of the content of the item. For example, a zero-length input has value 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'Exact Match
2503 shipping destination
https://w3id.org/class/redaktor/shippingDestination
Definition
indicates (possibly multiple) shipping destinations. These can be defined in several ways e.g. postalCode ranges.Exact Match
2214 shipping details
https://w3id.org/class/redaktor/shippingDetails
Definition
Indicates information about the shipping policies and options associated with an [[Offer]].Exact Match
2507 shipping label
https://w3id.org/class/redaktor/shippingLabel
Definition
Label to match an [[OfferShippingDetails]] with a [[ShippingRateSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).Exact Match
2509 shipping rate
https://w3id.org/class/redaktor/shippingRate
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.Exact Match
2505 shipping settings link
https://w3id.org/class/redaktor/shippingSettingsLink
Definition
Link to a page containing [[ShippingRateSettings]] and [[DeliveryTimeSettings]] details.Exact Match
179 sign client key
https://w3id.org/class/redaktor/signClientKey
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
Definition
Video file size in bytes.see peertube documentation
Scope Note
ActivityPub CommunityExample
{
"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}
]
}
Exact Match
2484 skills
https://w3id.org/class/redaktor/skills
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
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
Definition
A slogan or motto associated with the item.Exact Match
1499 slug
https://w3id.org/class/redaktor/slug
Definition
Proposed Hashtags for this element.Exact Match
1007 smoking allowed
https://w3id.org/class/redaktor/smokingAllowed
Definition
Indicates whether it is allowed to smoke in the place.Exact Match
2331 sodium content
https://w3id.org/class/redaktor/sodiumContent
Definition
The number of milligrams of sodium.Exact Match
2220 software add on
https://w3id.org/class/redaktor/softwareAddOn
Definition
Additional content for a software application.Exact Match
2221 software help
https://w3id.org/class/redaktor/softwareHelp
Definition
Software application help.Exact Match
2222 software requirements
https://w3id.org/class/redaktor/softwareRequirements
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).Exact Match
2223 software version
https://w3id.org/class/redaktor/softwareVersion
Definition
Version of the software instance.Exact Match
144 source
https://w3id.org/class/redaktor/source
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 PropertyExample
{
"@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"
}
}
Exact Match
2224 source organization
https://w3id.org/class/redaktor/sourceOrganization
Definition
The Organization on whose behalf the creator was working.Exact Match
2225 spatial
https://w3id.org/class/redaktor/spatial
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
Definition
The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty ofcontentLocation 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.
Exact Match
2227 speakable
https://w3id.org/class/redaktor/speakable
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
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
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
Definition
A type of sport (e.g. Baseball).Exact Match
2231 star rating
https://w3id.org/class/redaktor/starRating
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).Exact Match
997 start index
https://w3id.org/class/redaktor/startIndex
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
: PropertyExample
{
"@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
Definition
The start time of the clip expressed as the number of seconds from the beginning of the work.Exact Match
131 start time
https://w3id.org/class/redaktor/startTime
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
: PropertyExample
{
"@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
Definition
number, format: secondsin PlaylistElement
Scope Note
ActivityPub CommunityExact Match
1532 state
https://w3id.org/class/redaktor/state
Definition
represents the internal state of the video processing within the PeerTube instance.see peertube documentation
Scope Note
ActivityPub CommunityExample
peertube API documentationExact Match
2416 steering position
https://w3id.org/class/redaktor/steeringPosition
Definition
The position of the steering wheel or similar device (mostly for cars).Exact Match
2233 step
https://w3id.org/class/redaktor/step
Definition
A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.Exact Match
2234 steps
https://w3id.org/class/redaktor/steps
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
Definition
number, format: secondsin PlaylistElement
Scope Note
ActivityPub CommunityExact Match
2235 storage requirements
https://w3id.org/class/redaktor/storageRequirements
Definition
Storage requirements (free space required).Exact Match
173 streams
https://w3id.org/class/redaktor/streams
Definition
A list of supplementary Collections which may be of interest.see https://www.w3.org/TR/activitypub/#streams-property
Scope Note
ActivityPub PropertyExact Match
1568 street
https://w3id.org/class/redaktor/streetAddress
Definition
The street address as text.Example
1 Pl. de VerdunExact Match
2236 sub organization
https://w3id.org/class/redaktor/subOrganization
Definition
A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.Exact Match
2237 sub trip
https://w3id.org/class/redaktor/subTrip
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
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
: PropertyExample
{
"@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"
}
}
Exact Match
1547 subtitle languages
https://w3id.org/class/redaktor/subtitleLanguage
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"
}
}
Exact Match
2333 sugar content
https://w3id.org/class/redaktor/sugarContent
Definition
The number of grams of sugar.Exact Match
2239 suitable for diet
https://w3id.org/class/redaktor/suitableForDiet
Definition
Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.Exact Match
119 summary
https://w3id.org/class/redaktor/summary
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
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"name": "Cane Sugar Processing",
"type": "Note",
"summary": "A simple <em>note</em>"
}
Related
Exact Match
120 summary map
https://w3id.org/class/redaktor/summaryMap
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
: PropertyAlt 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
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
Definition
A text to tell the audience how to support the video/content creator.see peertube documentation
Scope Note
ActivityPub CommunityExample
{
"type": "Video",
"views": 35,
"support": "Pay me a coffee when you see me",
"waitTranscoding": true
}
Exact Match
2241 supporting data
https://w3id.org/class/redaktor/supportingData
Definition
Supporting data for a SoftwareApplication.Exact Match
1518 suspended
https://w3id.org/class/redaktor/suspended
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 CommunityExample
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"toot": "http://joinmastodon.org/ns#",
"suspended": ":suspended"
}
],
"id": "https://example.com/@eve",
"type": "Person",
"suspended": true
}
Exact Match
145 tag
https://w3id.org/class/redaktor/tag
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
: PropertyExample
{
"@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"
}
]
}
Exact Match
253 target
https://w3id.org/class/redaktor/target
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
: PropertyExample
{
"@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"
}
Exact Match
2242 target description
https://w3id.org/class/redaktor/targetDescription
Definition
The description of a node in an established educational framework.Exact Match
2243 target name
https://w3id.org/class/redaktor/targetName
Definition
The name of a node in an established educational framework.Exact Match
2244 target platform
https://w3id.org/class/redaktor/targetPlatform
Definition
Type of app development: phone, Metro style, desktop, XBox, etc.Exact Match
2245 target product
https://w3id.org/class/redaktor/targetProduct
Definition
Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.Exact Match
2246 target url
https://w3id.org/class/redaktor/targetUrl
Definition
The URL of a node in an established educational framework.Exact Match
2247 tax ID
https://w3id.org/class/redaktor/taxID
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
Definition
The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.Exact Match
2250 temporal
https://w3id.org/class/redaktor/temporal
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
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.
Exact Match
2252 term code
https://w3id.org/class/redaktor/termCode
Definition
A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]Exact Match
2253 terms of service
https://w3id.org/class/redaktor/termsOfService
Definition
Human-readable terms of service documentation.Exact Match
2254 text
https://w3id.org/class/redaktor/text
Definition
The textual content of this CreativeWork.Exact Match
2255 thumbnail url
https://w3id.org/class/redaktor/thumbnailUrl
Definition
A thumbnail image relevant to the Thing.Exact Match
2256 ticker symbol
https://w3id.org/class/redaktor/tickerSymbol
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.Exact Match
2257 ticket number
https://w3id.org/class/redaktor/ticketNumber
Definition
The unique identifier for the ticket.Exact Match
2258 ticket token
https://w3id.org/class/redaktor/ticketToken
Definition
Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.Exact Match
2259 ticketed seat
https://w3id.org/class/redaktor/ticketedSeat
Definition
The seat associated with the ticket.Exact Match
2260 time required
https://w3id.org/class/redaktor/timeRequired
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'.Exact Match
113 to
https://w3id.org/class/redaktor/to
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
: PropertyExample
{
"@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" ]
}
Exact Match
2261 Toc continuation
https://w3id.org/class/redaktor/tocContinuation
Definition
A [[HyperTocEntry]] can have a [[tocContinuation]] indicated, which is another [[HyperTocEntry]] that would be the default next item to play or render.Exact Match
2262 Toc entry
https://w3id.org/class/redaktor/tocEntry
Definition
Indicates a [[HyperTocEntry]] in a [[HyperToc]].Exact Match
2432 tongue weight
https://w3id.org/class/redaktor/tongueWeight
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.
Exact Match
2263 tool
https://w3id.org/class/redaktor/tool
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
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
: PropertyExample
{
"@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
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.
Exact Match
2265 total time
https://w3id.org/class/redaktor/totalTime
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
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.Exact Match
2267 tourist type
https://w3id.org/class/redaktor/touristType
Definition
Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc.Exact Match
2268 track
https://w3id.org/class/redaktor/track
Definition
A music recording (track)—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
Definition
Shipper tracking number.Exact Match
2490 tracking Url
https://w3id.org/class/redaktor/trackingUrl
Definition
Tracking url for the parcel delivery.Exact Match
2269 tracks
https://w3id.org/class/redaktor/tracks
Definition
A music recording (track)—usually a single song.Exact Match
2270 trailer
https://w3id.org/class/redaktor/trailer
Definition
The trailer of a movie or tv/radio series, season, episode, etc.Exact Match
2410 trailer weight
https://w3id.org/class/redaktor/trailerWeight
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.
Exact Match
2271 train name
https://w3id.org/class/redaktor/trainName
Definition
The name of the train (e.g. The Orient Express).Exact Match
2272 train number
https://w3id.org/class/redaktor/trainNumber
Definition
The unique identifier for the train.Exact Match
2335 trans-fat content
https://w3id.org/class/redaktor/transFatContent
Definition
The number of grams of trans fat.Exact Match
2506 transit time label
https://w3id.org/class/redaktor/transitTimeLabel
Definition
Label to match an [[OfferShippingDetails]] with a [[DeliveryTimeSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).Exact Match
2273 translation of work
https://w3id.org/class/redaktor/translationOfWork
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
Definition
Agent who adapts any kind of written text from one language to another2275 travel bans
https://w3id.org/class/redaktor/travelBans
Definition
Information about travel bans, e.g. in the context of a pandemic.Exact Match
102 type
https://w3id.org/class/redaktor/type
Definition
Identifies the Object or Link type. Multiple values may be specified.Scope Note
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"summary": "A foo",
"type": "http://example.org/Foo"
}
Exact Match
2398 type of bed
https://w3id.org/class/redaktor/typeOfBed
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
Definition
The product that this structured value is referring to.Exact Match
2276 typical age range
https://w3id.org/class/redaktor/typicalAgeRange
Definition
The typical expected age range, e.g. '7-9', '11-'.Exact Match
2277 under name
https://w3id.org/class/redaktor/underName
Definition
The person or organization the reservation or ticket is for.Exact Match
2315 unit code
https://w3id.org/class/redaktor/unitCode
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
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
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
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Place",
"name": "Fresno Area",
"latitude": 36.75,
"longitude": 119.7667,
"radius": 15,
"units": "miles"
}
Exact Match
2278 unnamed sources policy
https://w3id.org/class/redaktor/unnamedSourcesPolicy
Definition
For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.Exact Match
2337 unsaturated fat content
https://w3id.org/class/redaktor/unsaturatedFatContent
Definition
The number of grams of unsaturated fat.Exact Match
124 updated
https://w3id.org/class/redaktor/updated
Definition
The date and time at which the object was updated.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-updated
Scope Note
: PropertyExample
{
"@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"
}
Exact Match
2351 upload date
https://w3id.org/class/redaktor/uploadDate
Definition
Date when this media object was uploaded to this site.Exact Match
181 upload Media Endpoint
https://w3id.org/class/redaktor/uploadMedia
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
Definition
Identifies one or more links to representations of the object.see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-url
Scope Note
: PropertyExample
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Document",
"name": "4Q Sales Forecast",
"url": "http://example.org/4q-sales-forecast.pdf"
}
Exact Match
2279 usage info
https://w3id.org/class/redaktor/usageInfo
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
Definition
The number of interactions for the CreativeWork using the WebSite or SoftwareApplication.Exact Match
2280 utterances
https://w3id.org/class/redaktor/utterances
Definition
Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]].Exact Match
2281 valid for
https://w3id.org/class/redaktor/validFor
Definition
The duration of validity of a permit or similar thing.Exact Match
2282 valid from
https://w3id.org/class/redaktor/validFrom
Definition
The date when the item becomes valid.Exact Match
2283 valid in
https://w3id.org/class/redaktor/validIn
Definition
The geographic area where a permit or similar thing is valid.Exact Match
2284 valid through
https://w3id.org/class/redaktor/validThrough
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.Exact Match
1543 value
https://w3id.org/class/redaktor/value
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
Definition
Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.Exact Match
2311 value reference
https://w3id.org/class/redaktor/valueReference
Definition
A secondary value that provides additional information on the original value, e.g. a reference temperature or a type of measurement.Exact Match
2319 variable measured
https://w3id.org/class/redaktor/variableMeasured
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.Exact Match
2285 vat ID
https://w3id.org/class/redaktor/vatID
Definition
The Value-added Tax ID of the organization or person.Exact Match
2435 vehicle configuration
https://w3id.org/class/redaktor/vehicleConfiguration
Definition
A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.Exact Match
2411 vehicle engine
https://w3id.org/class/redaktor/vehicleEngine
Definition
Information about the engine or engines of the vehicle.Exact Match
2440 vehicle Identification Number
https://w3id.org/class/redaktor/vehicleIdentificationNumber
Definition
The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.Exact Match
2427 vehicle interior color
https://w3id.org/class/redaktor/vehicleInteriorColor
Definition
The color or color combination of the interior of the vehicle.Exact Match
2418 vehicle interior type
https://w3id.org/class/redaktor/vehicleInteriorType
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.Exact Match
2434 vehicle model date
https://w3id.org/class/redaktor/vehicleModelDate
Definition
The release date of a vehicle model (often used to differentiate versions of the same make and model).Exact Match
2431 vehicle seating capacity
https://w3id.org/class/redaktor/vehicleSeatingCapacity
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.
Exact Match
2442 vehicle special usage
https://w3id.org/class/redaktor/vehicleSpecialUsage
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.Exact Match
2422 vehicle transmission
https://w3id.org/class/redaktor/vehicleTransmission
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).Exact Match
2286 verification fact checking policy
https://w3id.org/class/redaktor/verificationFactCheckingPolicy
Definition
Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]].Exact Match
2287 version
https://w3id.org/class/redaktor/version
Definition
The version of the CreativeWork embodied by a specified resource.Exact Match
1535 video
https://w3id.org/class/redaktor/video
Definition
Associated Video for the entryin PlaylistElement
Scope Note
ActivityPub Community2289 video format
https://w3id.org/class/redaktor/videoFormat
Definition
The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).Exact Match
1536 views
https://w3id.org/class/redaktor/views
Definition
views count of the videosee peertube documentation
Scope Note
ActivityPub CommunityExample
{
"type": "Video",
"views": 35,
"support": "Pay me a coffee when you see me",
"waitTranscoding": true
}
Exact Match
2290 volume number
https://w3id.org/class/redaktor/volumeNumber
Definition
Identifies the volume of publication or multi-part work; for example, “iii” or “2”.Exact Match
1519 voters count
https://w3id.org/class/redaktor/votersCount
Definition
mastodon “poll” (Question) voters countScope Note
ActivityPub CommunityExact Match
1537 wait transcoding
https://w3id.org/class/redaktor/waitTranscoding
Definition
Whether or not we wait transcoding before publish the video.ver peertube documentation
Scope Note
ActivityPub CommunityExample
{
"type": "Video",
"views": 35,
"support": "Pay me a coffee when you see me",
"waitTranscoding": true
}
Exact Match
2291 warranty
https://w3id.org/class/redaktor/warranty
Definition
The warranty promise(s) included in the offer.Exact Match
2383 warranty scope
https://w3id.org/class/redaktor/warrantyScope
Definition
The scope of the warranty promise.Exact Match
2292 web checkin time
https://w3id.org/class/redaktor/webCheckinTime
Definition
The time when a passenger can check into the flight online.Exact Match
2293 web feed
https://w3id.org/class/redaktor/webFeed
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
Definition
The weight of the product or person.Exact Match
2414 weight total
https://w3id.org/class/redaktor/weightTotal
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.
Exact Match
2417 wheelbase
https://w3id.org/class/redaktor/wheelbase
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
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
: PropertyExample
{
"@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
Definition
The number of words in the text of the Article.Exact Match
2296 work example
https://w3id.org/class/redaktor/workExample
Definition
Example/instance/realization/derivation of the concept of this creative work. eg. The paperback edition, first edition, or eBook.Exact Match
2297 work location
https://w3id.org/class/redaktor/workLocation
Definition
A contact location for a person's place of work.Exact Match
2298 work presented
https://w3id.org/class/redaktor/workPresented
Definition
The movie presented during this event.Exact Match
2299 work translation
https://w3id.org/class/redaktor/workTranslation
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.Exact Match
2300 works for
https://w3id.org/class/redaktor/worksFor
Definition
Organizations that the person works for.Exact Match
2403 worst rating
https://w3id.org/class/redaktor/worstRating
Definition
The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.Exact Match
2301 XPath
https://w3id.org/class/redaktor/xpath
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
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
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
Definition
yuforiumScope Note
https://yuforium.com/ns/activitypub159 owner
https://w3id.org/security/v1owner
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 CommunityExample
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-----
"
}
Exact Match
160 public key
https://w3id.org/security/v1publicKey
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 CommunityExample
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-----
"
}
Exact Match
161 public key PEM
https://w3id.org/security/v1publicKeyPem
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 CommunityExample
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-----
"
}
Exact Match
162 signature
https://w3id.org/security/v1signature
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 CommunityExample
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="
}
}
Exact Match
163 signature algorithm
https://w3id.org/security/v1signatureAlgorithm
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 CommunityExample
{
"@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
Definition
The signature value is used to express the output of the signature algorithm expressed in base-64 format.Scope Note
ActivityPub CommunityExample
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="
}
}
Exact Match
ActivityPub and friends – An ontology of the fediverse
https://w3id.org/class/redaktor/scheme
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]