Ordoro · Schema

Warehouse Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
_link string
id integer
address object
cart object
is_configured_for_shipping boolean
is_default_location boolean
View JSON Schema on GitHub

JSON Schema

ordoro-warehouse-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-warehouse-schema.json",
  "title": "Warehouse Schema",
  "additionalProperties": false,
  "type": "object",
  "properties": {
    "_link": {
      "type": "string"
    },
    "id": {
      "type": "integer"
    },
    "address": {
      "$ref": "#/components/schemas/address"
    },
    "cart": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "is_configured_for_shipping": {
      "type": "boolean"
    },
    "is_default_location": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "address",
    "cart",
    "is_configured_for_shipping",
    "is_default_location"
  ]
}