Emburse · Schema

APIShippingAddress

Emburse APIShippingAddress schema

Expense ManagementAP AutomationCorporate CardsVirtual CardsReceipt CaptureReimbursementInvoice ProcessingFinanceFinTech

Properties

Name Type Description
id string
url string
address_1 string
address_2 string
city string
state string
country string
postal_code string
zip_code string
created_at string
View JSON Schema on GitHub

JSON Schema

emburse-shippingaddress.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-shippingaddress.json",
  "title": "APIShippingAddress",
  "description": "Emburse APIShippingAddress schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "url": {
      "type": "string",
      "readOnly": true
    },
    "address_1": {
      "type": "string",
      "maxLength": 255
    },
    "address_2": {
      "type": "string",
      "default": ""
    },
    "city": {
      "type": "string",
      "maxLength": 255
    },
    "state": {
      "type": "string",
      "maxLength": 255
    },
    "country": {
      "type": "string",
      "default": "US",
      "maxLength": 2
    },
    "postal_code": {
      "type": "string"
    },
    "zip_code": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  }
}