big tings
This commit is contained in:
39
registry/schema-org/ChooseAction.schema.json
Normal file
39
registry/schema-org/ChooseAction.schema.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "schema:ChooseAction",
|
||||
"title": "ChooseAction",
|
||||
"description": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.",
|
||||
"type": "object",
|
||||
"allOf": [
|
||||
{
|
||||
"description": "The act of forming one's opinion, reaction or sentiment.",
|
||||
"$ref": "schema:AssessAction"
|
||||
}
|
||||
],
|
||||
"properties": {
|
||||
"actionOption": {
|
||||
"description": "A sub property of object. The options subject to this action.",
|
||||
"oneOf": [
|
||||
{ "anyOf": [{ "type": "string" }, { "$ref": "schema:Thing" }] },
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"anyOf": [{ "type": "string" }, { "$ref": "schema:Thing" }]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"option": {
|
||||
"description": "A sub property of object. The options subject to this action.",
|
||||
"oneOf": [
|
||||
{ "anyOf": [{ "type": "string" }, { "$ref": "schema:Thing" }] },
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"anyOf": [{ "type": "string" }, { "$ref": "schema:Thing" }]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user