{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/createSection.json", "title": "createSection", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "item": { "type": "object", "required": [ "name", "container_id", "container_type" ], "properties": { "name": { "type": "string", "description": "the name of the section" }, "container_id": { "type": "integer", "description": "the id of the experiment/protocol/report the section belongs to" }, "container_type": { "type": "string", "description": "the type of the container - Projects::Experiment | Knowledgebase::Protocol | Knowledgebase::AbstractDocument", "example": "Projects::Experiment" }, "position": { "type": "integer", "description": "the section position" } } } } }