{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/StorageBaseRequest.json", "title": "StorageBaseRequest", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "system_storage_storage": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the storage unit." }, "storage_type_id": { "type": "integer", "description": "The ID of the storage type.
Examples include: 1 (Room), 21 (Shelf), 61 (Closet), 81 (Drawer), 111 (Cage), 120 (Refrigerator), 121 (Freezer), 201 (Cryo container), 251 (Slide Rack), 322 (Rack), 321 (Other)." }, "description": { "type": "string", "description": "description of the storage unit" }, "temperature": { "type": "integer", "description": "temperature of the storage unit." } } } } }