{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MaxDimension", "title": "MaxDimension", "required": [ "weight", "height", "width", "length", "maxSumDimension" ], "type": "object", "properties": { "weight": { "type": "integer", "format": "int32" }, "height": { "type": "integer", "format": "int32" }, "width": { "type": "integer", "format": "int32" }, "length": { "type": "integer", "format": "int32" }, "maxSumDimension": { "type": "integer", "format": "int32" } }, "example": { "weight": 0, "height": 0, "width": 0, "length": 0, "maxSumDimension": 0 } }