Ordoro · Schema

Order Financial Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
credit_card_issuer object
discount_amount object Not calculated
product_amount object Not calculated
shipping_amount object Not calculated
tax_amount object Not calculated
grand_total object Not calculated
View JSON Schema on GitHub

JSON Schema

ordoro-order_financial-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-order_financial-schema.json",
  "title": "Order Financial Schema",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "credit_card_issuer": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "discount_amount": {
      "description": "Not calculated",
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "null"
        }
      ]
    },
    "product_amount": {
      "description": "Not calculated",
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "null"
        }
      ]
    },
    "shipping_amount": {
      "description": "Not calculated",
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "null"
        }
      ]
    },
    "tax_amount": {
      "description": "Not calculated",
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "null"
        }
      ]
    },
    "grand_total": {
      "description": "Not calculated",
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "null"
        }
      ]
    }
  }
}