Unified.to · Schema

CommerceItemOption

IntegrationsUnified API

Properties

Name Type Description
id string
name string
position number
values object
View JSON Schema on GitHub

JSON Schema

unified-to-commerceitemoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommerceItemOption",
  "title": "CommerceItemOption",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "position": {
      "type": "number"
    },
    "values": {
      "$ref": "#/components/schemas/property_CommerceItemOption_values"
    }
  },
  "required": [
    "name",
    "values"
  ],
  "type": "object"
}