{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CardOrderItemDeliveryStatus", "title": "CardOrderItemDeliveryStatus", "properties": { "errorMessage": { "description": "An error message.", "type": "string" }, "status": { "description": "The status of the PIN delivery.", "enum": [ "created", "delivered", "notApplicable", "processing", "produced", "rejected", "shipped", "unknown" ], "type": "string" }, "trackingNumber": { "description": "The tracking number of the PIN delivery.", "type": "string" } }, "type": "object" }