Ordoro · Schema

Tag Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
color string
text string
name string
link string
id integer
View JSON Schema on GitHub

JSON Schema

ordoro-tag-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-tag-schema.json",
  "title": "Tag Schema",
  "type": "object",
  "properties": {
    "color": {
      "type": "string"
    },
    "text": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "link": {
      "type": "string"
    },
    "id": {
      "type": "integer"
    }
  },
  "required": [
    "color",
    "text",
    "link",
    "id"
  ]
}