{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SectionRequest", "title": "SectionRequest", "type": "object", "properties": { "name": { "description": "The text to be displayed as the section name. This cannot be an empty string.", "type": "string", "example": "Next Actions" }, "insert_before": { "description": "An existing section within this project before which the added section should be inserted. Cannot be provided together with insert_after.", "type": "string", "example": "86420" }, "insert_after": { "description": "An existing section within this project after which the added section should be inserted. Cannot be provided together with insert_before.", "type": "string", "example": "987654" } }, "required": [ "name" ] }