Ordoro · Schema

Preset Object Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
link string
id integer
company_id integer
name string
body object
archive_date object
created_date string
updated_date string
View JSON Schema on GitHub

JSON Schema

ordoro-preset-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-preset-schema.json",
  "title": "Preset Object Schema",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "link": {
      "type": "string"
    },
    "id": {
      "type": "integer"
    },
    "company_id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "body": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "overrides": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "properties": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "label_config": {
          "type": "object"
        }
      }
    },
    "archive_date": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "created_date": {
      "type": "string"
    },
    "updated_date": {
      "type": "string"
    }
  },
  "required": []
}