5121 any of

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

JSON

Inbox

Definition

Identifies an inclusive option for a Question. Use of anyOf implies that the Question can have multiple answers. To indicate that a Question can have only one answer, use oneOf.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-anyof

Scope Note

: Property

Example

Example 92

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Question",
  "name": "What is the answer?",
  "anyOf": [
    {
      "type": "Note",
      "name": "Option A"
    },
    {
      "type": "Note",
      "name": "Option B"
    }
  ]
}