5123 one of
https://w3id.org/class/redaktor/oneOf
Definition
Bezeichnet eine exklusive Option für eine Frage. Die Verwendung von oneOf impliziert, dass die Frage nur eine einzige Antwort haben kann. Um anzugeben, dass eine Frage mehrere Antworten haben kann, verwenden Sie anyOf.siehe 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"
}
]
}