{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PriceChangeRequest", "title": "PriceChangeRequest", "required": [ "price" ], "type": "object", "properties": { "price": { "type": "integer", "format": "int32", "description": "The new price of the item." } }, "example": { "price": 10000 } }