Properties
| Name | Type | Description |
|---|---|---|
| id | string | Label ID. |
| url | string | Label URL. |
| name | string | Label name. |
| type | string | Label type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Data15",
"title": "Data15",
"required": [
"id",
"url",
"name",
"type"
],
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Label ID."
},
"url": {
"type": "string",
"description": "Label URL."
},
"name": {
"type": "string",
"description": "Label name."
},
"type": {
"type": "string",
"description": "Label type."
}
},
"example": {
"id": "JADF8ADF89-7AD7AF-78ADFASDF",
"url": "http://s3://mybucket-alpha/orc/2013-10-04-custdata/label-pickup.pdf",
"name": "Delivery label",
"type": "PDF"
}
}