Avalara · JSON Structure

Business Order Response Structure

OrderResponse schema from Avalara API

Type: object Properties: 4
Taxes

OrderResponse is a JSON Structure definition published by Avalara, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

orderId accountId status createdDate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-structure/business-order-response-structure.json",
  "description": "OrderResponse schema from Avalara API",
  "type": "object",
  "properties": {
    "orderId": {
      "type": "string"
    },
    "accountId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Pending",
        "Confirmed",
        "Completed",
        "Cancelled"
      ]
    },
    "createdDate": {
      "type": "datetime"
    }
  },
  "name": "OrderResponse"
}