{
  "additionalProperties": false,
  "properties": {
    "products": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "availability": {
            "enum": [
              "in_stock",
              "low_stock",
              "out_of_stock",
              "unknown"
            ],
            "type": "string"
          },
          "brand": {
            "maxLength": 256,
            "minLength": 1,
            "type": "string"
          },
          "description": {
            "maxLength": 2048,
            "minLength": 1,
            "type": "string"
          },
          "has_more_variants": {
            "type": "boolean"
          },
          "image_url": {
            "maxLength": 2048,
            "minLength": 1,
            "type": "string"
          },
          "options": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "name": {
                  "maxLength": 128,
                  "minLength": 1,
                  "type": "string"
                },
                "values": {
                  "items": {
                    "maxLength": 256,
                    "minLength": 1,
                    "type": "string"
                  },
                  "maxItems": 64,
                  "type": "array"
                }
              },
              "required": [
                "name",
                "values"
              ],
              "type": "object"
            },
            "maxItems": 32,
            "type": "array"
          },
          "price": {
            "additionalProperties": false,
            "properties": {
              "amount": {
                "type": "number"
              },
              "amount_decimal": {
                "maxLength": 64,
                "minLength": 1,
                "type": "string"
              },
              "currency": {
                "maxLength": 8,
                "minLength": 3,
                "type": "string"
              }
            },
            "required": [
              "amount",
              "amount_decimal",
              "currency"
            ],
            "type": "object"
          },
          "sku": {
            "maxLength": 256,
            "minLength": 1,
            "type": "string"
          },
          "title": {
            "maxLength": 512,
            "minLength": 1,
            "type": "string"
          },
          "url": {
            "maxLength": 2048,
            "minLength": 1,
            "type": "string"
          },
          "variants": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "availability": {
                  "enum": [
                    "in_stock",
                    "low_stock",
                    "out_of_stock",
                    "unknown"
                  ],
                  "type": "string"
                },
                "options": {
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "name": {
                        "maxLength": 128,
                        "minLength": 1,
                        "type": "string"
                      },
                      "value": {
                        "maxLength": 256,
                        "minLength": 1,
                        "type": "string"
                      }
                    },
                    "required": [
                      "name",
                      "value"
                    ],
                    "type": "object"
                  },
                  "maxItems": 32,
                  "type": "array"
                },
                "price": {
                  "additionalProperties": false,
                  "properties": {
                    "amount": {
                      "type": "number"
                    },
                    "amount_decimal": {
                      "maxLength": 64,
                      "minLength": 1,
                      "type": "string"
                    },
                    "currency": {
                      "maxLength": 8,
                      "minLength": 3,
                      "type": "string"
                    }
                  },
                  "required": [
                    "amount",
                    "amount_decimal",
                    "currency"
                  ],
                  "type": "object"
                },
                "sku": {
                  "maxLength": 256,
                  "minLength": 1,
                  "type": "string"
                },
                "title": {
                  "maxLength": 512,
                  "minLength": 1,
                  "type": "string"
                }
              },
              "required": [
                "sku",
                "title",
                "price",
                "availability"
              ],
              "type": "object"
            },
            "maxItems": 64,
            "type": "array"
          }
        },
        "required": [
          "sku",
          "title",
          "price",
          "availability"
        ],
        "type": "object"
      },
      "maxItems": 128,
      "type": "array"
    }
  },
  "required": [
    "products"
  ],
  "type": "object"
}
