{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/createUnit.json", "title": "createUnit", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "item": { "type": "object", "required": [ "name", "type_for" ], "properties": { "name": { "type": "string", "description": "unit name " }, "type_for": { "type": "string", "description": "weight/volume/concentration" } } } } }