{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SellingPrice", "title": "SellingPrice", "required": [ "value", "quantity" ], "type": "object", "properties": { "value": { "type": "integer" }, "quantity": { "type": "integer" } }, "example": { "value": 5000, "quantity": 1 } }