All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ineall.json-schema-inferrer_3.0.0.2-rc4.source-code.expected.json Maven / Gradle / Ivy

Go to download

Scala library for automating JSON Schema generation from data and merging schemas for comprehensive data modeling.

There is a newer version: 0.1.0
Show newest version
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "items": {
      "type": "object",
      "properties": {
        "item": {
          "type": "array",
          "items": [
            {
              "type": "object",
              "properties": {
                "id": { "type": "string" },
                "type": { "type": "string" },
                "name": { "type": "string" },
                "ppu": { "type": "number" },
                "batters": {
                  "type": "object",
                  "properties": {
                    "batter": {
                      "type": "array",
                      "items": [
                        {
                          "type": "object",
                          "properties": {
                            "id": { "type": "string" },
                            "type": { "type": "string" }
                          },
                          "required": ["id", "type"]
                        }
                      ]
                    }
                  },
                  "required": ["batter"]
                },
                "topping": {
                  "type": "array",
                  "items": [
                    {
                      "type": "object",
                      "properties": {
                        "id": { "type": "string" },
                        "type": { "type": "string" }
                      },
                      "required": ["id", "type"]
                    }
                  ]
                }
              },
              "required": ["batters", "id", "name", "ppu", "topping", "type"]
            }
          ]
        }
      },
      "required": ["item"]
    }
  },
  "required": ["items"]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy