Anrok · Schema

NormalTransactionResponse

Normal transaction

Sales TaxVATTax ComplianceSaaSFintechTax AutomationNexusE-Invoicing
View JSON Schema on GitHub

JSON Schema

normal-transaction-response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/anrok/main/json-schema/normal-transaction-response.json",
  "title": "NormalTransactionResponse",
  "description": "Normal transaction",
  "type": "object",
  "allOf": [
    {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "normal"
          ]
        }
      }
    },
    {
      "$ref": "#/components/schemas/CommonTransactionProperties"
    },
    {
      "type": "object",
      "properties": {
        "body": {
          "$ref": "#/components/schemas/NormalTransactionBody"
        }
      }
    }
  ]
}