{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Label", "title": "Label", "required": [ "id", "name", "url", "type" ], "type": "object", "properties": { "id": { "type": "string", "description": "Label ID." }, "name": { "type": "string", "description": "Name of the label." }, "url": { "type": "string", "description": "Label URL." }, "type": { "type": "string", "description": "Label's type of file." } }, "example": { "id": "78c83922-d658-48bf-89d5-0658a6a94e27", "name": "Shipping label", "url": "https://sandbox-download.postmen.com/label/2024-03-09/258a26a4-45ae-49eb-b64d-929d3b81f46d-1709947994279763.pdf", "type": "PDF" } }