5121 any of

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

JSON

Inbox

Definition

Identifie une option inclusive pour une question. L'utilisation de anyOf implique que la question peut avoir plusieurs réponses. Pour indiquer qu'une question ne peut avoir qu'une seule réponse, utilisez oneOf.
voir https://www.w3.org/TR/activitystreams-vocabulary/#dfn-anyof

Scope Note

: Property

Example

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