{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Dimensions", "title": "Dimensions", "required": [ "height", "length", "width" ], "type": "object", "properties": { "height": { "type": "string", "description": "Package height in centimeters." }, "length": { "type": "string", "description": "Package length in centimeters." }, "width": { "type": "string", "description": "Package width in centimeters." } }, "example": { "height": "5", "length": "11", "width": "7" } }