Ordoro · Schema

Put Packing List Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
name string
branded_tracking object
custom_layouts object
custom_text object
email object
phone object
website object
footer object
return_email_subject object
return_email_content object
ship_from_alias_name object
customer_notes_label object
logo_hash object
logo object to be deprecated: deprecated by the app, use logo_hash instead
View JSON Schema on GitHub

JSON Schema

ordoro-put_packing_list-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-put_packing_list-schema.json",
  "title": "Put Packing List Schema",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 255
    },
    "branded_tracking": {
      "anyOf": [
        {
          "type": "object"
        },
        {
          "type": "null"
        }
      ]
    },
    "custom_layouts": {
      "type": "object"
    },
    "custom_text": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "email": {
      "maxLength": 75,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "phone": {
      "maxLength": 255,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "website": {
      "maxLength": 255,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "footer": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "return_email_subject": {
      "maxLength": 255,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "return_email_content": {
      "maxLength": 1024,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "ship_from_alias_name": {
      "maxLength": 255,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "customer_notes_label": {
      "maxLength": 255,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "logo_hash": {
      "maxLength": 255,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "logo": {
      "description": "to be deprecated: deprecated by the app, use logo_hash instead",
      "type": "object",
      "properties": {
        "data": {
          "description": "base64 encoded image data, cannot validate type"
        },
        "mime_type": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ]
        }
      },
      "required": [
        "data",
        "mime_type"
      ]
    }
  }
}