Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | The public UUID. |
| type | string | The type of the card. |
| second_line | string | The second line on the card. |
| expiry_date | string | The date this card will expire. |
| status | string | The status of the card. |
| label_user | object | The owner of this card. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LabelCard",
"title": "LabelCard",
"type": "object",
"properties": {
"uuid": {
"type": "string",
"description": "The public UUID.",
"readOnly": true,
"writeOnly": false
},
"type": {
"type": "string",
"description": "The type of the card.",
"readOnly": true,
"writeOnly": false
},
"second_line": {
"type": "string",
"description": "The second line on the card.",
"readOnly": true,
"writeOnly": false
},
"expiry_date": {
"type": "string",
"description": "The date this card will expire.",
"readOnly": true,
"writeOnly": false
},
"status": {
"type": "string",
"description": "The status of the card.",
"readOnly": true,
"writeOnly": false
},
"label_user": {
"type": "object",
"description": "The owner of this card.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/LabelUser"
}
}
}