5121 any of

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

JSON

Inbox

Definition

Kennzeichnet eine inklusive Option für eine Frage. Die Verwendung von anyOf impliziert, dass die Frage mehrere Antworten haben kann. Um anzugeben, dass eine Frage nur eine Antwort haben kann, verwenden Sie oneOf.
siehe https://www.w3.org/TR/activitystreams-vocabulary/#dfn-anyof

Scope Note

: Property

Example

Beispiel 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"
    }
  ]
}