big tings

This commit is contained in:
Max Richter
2025-08-17 15:16:17 +02:00
parent 40b9be887d
commit c687eff53d
958 changed files with 32279 additions and 704 deletions

View File

@@ -0,0 +1,29 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:UpdateAction",
"title": "UpdateAction",
"description": "The act of managing by changing/editing the state of the object.",
"type": "object",
"allOf": [
{
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html).",
"$ref": "schema:Action"
}
],
"properties": {
"collection": {
"description": "A sub property of object. The collection target of the action.",
"oneOf": [
{ "$ref": "schema:Thing" },
{ "type": "array", "items": { "$ref": "schema:Thing" } }
]
},
"targetCollection": {
"description": "A sub property of object. The collection target of the action.",
"oneOf": [
{ "$ref": "schema:Thing" },
{ "type": "array", "items": { "$ref": "schema:Thing" } }
]
}
}
}