schema_analysis 0.7.0

Analyze the schema of any self describing format
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "age": {
      "type": "integer"
    },
    "active": {
      "type": "boolean"
    },
    "scores": {
      "type": "array",
      "items": {
        "type": "integer"
      }
    }
  },
  "required": [
    "name",
    "age",
    "active",
    "scores"
  ]
}