{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SectionTaskInsertRequest", "title": "SectionTaskInsertRequest", "type": "object", "properties": { "task": { "description": "The task to add to this section.", "type": "string", "example": "123456" }, "insert_before": { "description": "An existing task within this section before which the added task should be inserted. Cannot be provided together with insert_after.", "type": "string", "example": "86420" }, "insert_after": { "description": "An existing task within this section after which the added task should be inserted. Cannot be provided together with insert_before.", "type": "string", "example": "987654" } }, "required": [ "task" ] }