{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StatusCreateRequest", "title": "StatusCreateRequest", "additionalProperties": false, "description": "Details of the statuses being created and their scope.", "properties": { "scope": { "$ref": "#/components/schemas/StatusScope" }, "statuses": { "description": "Details of the statuses being created.", "items": { "$ref": "#/components/schemas/StatusCreate" }, "type": "array" } }, "required": [ "scope", "statuses" ], "type": "object" }