Emburse · Schema

APITransaction

Emburse APITransaction schema

Expense ManagementAP AutomationCorporate CardsVirtual CardsReceipt CaptureReimbursementInvoice ProcessingFinanceFintech

Properties

Name Type Description
id string
url string
amount string
currency_code string
foreign_amount string
foreign_currency_code string
state string
response_code string
merchant string
vendor string
bank_account string
card object
is_online boolean
member object
category object
department object
label object
location object
note string
receipt string
attachments string
time string
created_at string
posted_at string
review_status string
requisition string
type string
purchase_details object
View JSON Schema on GitHub

JSON Schema

emburse-transaction.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/emburse/refs/heads/main/json-schema/emburse-transaction.json",
  "title": "APITransaction",
  "description": "Emburse APITransaction schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "url": {
      "type": "string",
      "readOnly": true
    },
    "amount": {
      "type": "string",
      "readOnly": true
    },
    "currency_code": {
      "type": "string",
      "readOnly": true,
      "nullable": true,
      "maxLength": 4
    },
    "foreign_amount": {
      "type": "string",
      "readOnly": true
    },
    "foreign_currency_code": {
      "type": "string",
      "readOnly": true,
      "nullable": true,
      "maxLength": 3
    },
    "state": {
      "type": "string",
      "readOnly": true
    },
    "response_code": {
      "type": "string",
      "readOnly": true
    },
    "merchant": {
      "type": "string",
      "readOnly": true
    },
    "vendor": {
      "type": "string",
      "readOnly": true
    },
    "bank_account": {
      "type": "string",
      "readOnly": true
    },
    "card": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid",
          "readOnly": true
        },
        "url": {
          "type": "string",
          "readOnly": true
        },
        "state": {
          "type": "string",
          "readOnly": true
        },
        "description": {
          "type": "string",
          "readOnly": true,
          "maxLength": 255
        },
        "last_four": {
          "type": "string",
          "readOnly": true,
          "pattern": "^[0-9]{4}$",
          "maxLength": 4
        }
      },
      "required": [
        "description",
        "last_four"
      ],
      "readOnly": true
    },
    "is_online": {
      "type": "boolean",
      "readOnly": true
    },
    "member": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid",
          "readOnly": true
        },
        "url": {
          "type": "string",
          "readOnly": true
        },
        "email": {
          "type": "string",
          "readOnly": true
        },
        "code": {
          "type": "string",
          "readOnly": true,
          "nullable": true,
          "pattern": "^[0-9A-z\\.\\-]+$",
          "maxLength": 36,
          "minLength": 1
        },
        "first_name": {
          "type": "string",
          "readOnly": true,
          "maxLength": 255
        },
        "last_name": {
          "type": "string",
          "readOnly": true,
          "maxLength": 255
        }
      },
      "required": [
        "first_name",
        "last_name"
      ],
      "readOnly": true
    },
    "category": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid"
        },
        "name": {
          "type": "string",
          "readOnly": true,
          "maxLength": 255
        },
        "code": {
          "type": "string",
          "readOnly": true,
          "nullable": true,
          "pattern": "^[0-9A-z\\.\\-]+$",
          "maxLength": 36,
          "minLength": 1
        },
        "parent": {
          "type": "object",
          "properties": {},
          "readOnly": true
        },
        "is_archived": {
          "type": "boolean",
          "readOnly": true
        },
        "created_at": {
          "type": "string",
          "format": "date-time",
          "readOnly": true
        },
        "url": {
          "type": "string",
          "readOnly": true
        }
      },
      "required": [
        "name",
        "parent"
      ],
      "nullable": true
    },
    "department": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid"
        },
        "name": {
          "type": "string",
          "readOnly": true,
          "maxLength": 255
        },
        "code": {
          "type": "string",
          "readOnly": true,
          "nullable": true,
          "pattern": "^[0-9A-z\\.\\-]+$",
          "maxLength": 36,
          "minLength": 1
        },
        "parent": {
          "type": "object",
          "properties": {},
          "readOnly": true
        },
        "is_archived": {
          "type": "boolean",
          "readOnly": true
        },
        "created_at": {
          "type": "string",
          "format": "date-time",
          "readOnly": true
        },
        "url": {
          "type": "string",
          "readOnly": true
        }
      },
      "required": [
        "name",
        "parent"
      ],
      "nullable": true
    },
    "label": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid"
        },
        "name": {
          "type": "string",
          "readOnly": true,
          "maxLength": 255
        },
        "code": {
          "type": "string",
          "readOnly": true,
          "nullable": true,
          "pattern": "^[0-9A-z\\.\\-]+$",
          "maxLength": 36,
          "minLength": 1
        },
        "parent": {
          "type": "object",
          "properties": {},
          "readOnly": true
        },
        "is_archived": {
          "type": "boolean",
          "readOnly": true
        },
        "created_at": {
          "type": "string",
          "format": "date-time",
          "readOnly": true
        },
        "url": {
          "type": "string",
          "readOnly": true
        }
      },
      "required": [
        "name",
        "parent"
      ],
      "nullable": true
    },
    "location": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid"
        },
        "name": {
          "type": "string",
          "readOnly": true,
          "maxLength": 255
        },
        "code": {
          "type": "string",
          "readOnly": true,
          "nullable": true,
          "pattern": "^[0-9A-z\\.\\-]+$",
          "maxLength": 36,
          "minLength": 1
        },
        "parent": {
          "type": "object",
          "properties": {},
          "readOnly": true
        },
        "is_archived": {
          "type": "boolean",
          "readOnly": true
        },
        "created_at": {
          "type": "string",
          "format": "date-time",
          "readOnly": true
        },
        "url": {
          "type": "string",
          "readOnly": true
        }
      },
      "required": [
        "name",
        "parent"
      ],
      "nullable": true
    },
    "note": {
      "type": "string",
      "maxLength": 1000
    },
    "receipt": {
      "type": "string",
      "readOnly": true
    },
    "attachments": {
      "type": "string",
      "readOnly": true
    },
    "time": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "posted_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "review_status": {
      "enum": [
        "pending",
        "approved",
        "denied",
        "out_of_policy",
        "exempt"
      ],
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "requisition": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "type": {
      "type": "string",
      "readOnly": true
    },
    "purchase_details": {
      "type": "object",
      "readOnly": true
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/emburse-transaction"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.