{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/updateSection.json", "title": "updateSection", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "item": { "type": "object", "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::Report", "example": "Projects::Experiment" }, "position": { "type": "integer", "description": "the section position" } } } } }