Untitled

 avatar
unknown
plain_text
2 years ago
885 B
13
Indexable
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "shop": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "productID": {
              "type": "integer"
            },
            "productName": {
              "type": "string"
            },
            "price": {
              "type": "number"
            },
            "tags": {
              "type": "array",
              "items": [
                {
                  "type": "string"
                },
                {
                  "type": "string"
                }
              ]
            }
          },
          "required": [
            "productID",
            "productName",
            "price",
            "tags"
          ]
        }
      ]
    }
  },
  "required": [
    "shop"
  ]
}
Editor is loading...