{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/createTag.json", "title": "createTag", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "item": { "type": "object", "required": [ "tag", "class_name", "item_id" ], "properties": { "tag": { "type": "string", "description": "the tag name " }, "class_name": { "type": "string", "description": "the item type to tag", "example": "Biocollections::Antibody" }, "item_id": { "type": "string", "description": "the id of the item to to tag" } } } } }