{ "$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" } } }