{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InvoiceResponse", "title": "InvoiceResponse", "type": "object", "properties": { "invoiceId": { "type": "string" }, "accessKey": { "type": "string", "description": "44-digit NF-e access key" }, "invoiceNumber": { "type": "integer" }, "series": { "type": "integer" }, "status": { "type": "string", "enum": [ "Authorized", "Cancelled", "Denied", "Pending" ] }, "protocolNumber": { "type": "string" }, "issuanceDate": { "type": "string", "format": "date-time" } } }