{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/createStock.json", "title": "createStock", "allOf": [ { "$ref": "#/components/schemas/StockBaseRequest" }, { "type": "object", "properties": { "item": { "type": "object", "required": [ "name", "storage_id", "storage_type", "stockable_type", "stockable_id" ] } } } ] }