Event that represents a successful invoice monitoring request

Type: object
Domain: depositary
Event: invoice_monitoring
Version: 1

|
access_key

Title: Access key
Description: Access Key invoice identifier
Type: string
Example:
access-key

document_number

Title: Document number
Description: Document number
Type: string
Example:
10358728000143

b3_response

Title: Items referring to B3 response
Type: array
Example:

[
    "[{\"op\":\"op\",\"path\":\"/path\",\"value\":0.00}]"
]
{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "Event that represents a successful invoice monitoring request",
    "type": "object",
    "properties": {
        "access_key": {
            "type": "string",
            "title": "Access key",
            "description": "Access Key invoice identifier",
            "examples": [
                "access-key"
            ]
        },
        "document_number": {
            "type": "string",
            "title": "Document number",
            "description": "Document number",
            "examples": [
                "10358728000143"
            ]
        },
        "b3_response": {
            "type": "array",
            "title": "Items referring to B3 response",
            "examples": [
                "[{\"op\":\"op\",\"path\":\"/path\",\"value\":0.00}]"
            ]
        }
    }
}
{
    "access_key": "access-key",
    "document_number": "10358728000143",
    "b3_response": [
        "[{\"op\":\"op\",\"path\":\"/path\",\"value\":0.00}]"
    ]
}