A simple json schema generator based on json resource with auto validation tools
Project description
=
JSON Schema Genarotor
=
# About
It is a json schema genarator from any json source.
# Example
Since you have a json file with the above structure":
{
"item_1": "string_value_1",
"item_2": 123,
"item_3": [1, 2, 3],
"item_4": true,
"item_5": null,
"item_6": { "key": "value"},
"item_7": {
"item_7.1": "string_value_1",
"item_7.2": 123,
"item_7.3": [1, 2, 3],
"item_7.4": true,
"item_7.5": null,
"item_7.6": { "key": "value"}
}
}
It should generate a json schema as":
{
"$schema": "http://json-schema.org/draft-03/schema",
"id": "#",
"required": true,
"type": "object",
"properties": {
"item_1": {
"id": "item_1",
"required": true,
"type": "string"
},
"item_2": {
"id": "item_2",
"required": true,
"type": "number"
},
"item_3": {
"id": "item_3",
"required": true,
"type": "array" ,
"items": {
"id": "0",
"required": true,
"type": "number"
}
},
"item_4": {
"id": "item_4",
"required": true,
"type": "boolean"
},
"item_5": {
"id": "item_5",
"required": true,
"type": "null"
},
"item_6": {
"id": "item_6",
"required": true,
"type": "object" ,
"properties": {
"key": {
"id": "key",
"required": true,
"type": "string"
}
}
},
"item_7": {
"id": "item_7",
"required": true,
"type": "object" ,
"properties": {
"item_7.1": {
"id": "item_7.1",
"required": true,
"type": "string"
},
"item_7.2": {
"id": "item_7.2",
"required": true,
"type": "number"
},
"item_7.3": {
"id": "item_7.3",
"required": true,
"type": "array" ,
"items": {
"id": "0",
"required": true,
"type": "number"
}
},
"item_7.4": {
"id": "item_7.4",
"required": true,
"type": "boolean"
},
"item_7.5": {
"id": "item_7.5",
"required": true,
"type": "null"
},
"item_7.6": {
"id": "item_7.6",
"required": true,
"type": "object" ,
"properties": {
"key": {
"id": "key",
"required": true,
"type": "string"
}
}
}
}
}
}
}
JSON Schema Genarotor
=
# About
It is a json schema genarator from any json source.
# Example
Since you have a json file with the above structure":
{
"item_1": "string_value_1",
"item_2": 123,
"item_3": [1, 2, 3],
"item_4": true,
"item_5": null,
"item_6": { "key": "value"},
"item_7": {
"item_7.1": "string_value_1",
"item_7.2": 123,
"item_7.3": [1, 2, 3],
"item_7.4": true,
"item_7.5": null,
"item_7.6": { "key": "value"}
}
}
It should generate a json schema as":
{
"$schema": "http://json-schema.org/draft-03/schema",
"id": "#",
"required": true,
"type": "object",
"properties": {
"item_1": {
"id": "item_1",
"required": true,
"type": "string"
},
"item_2": {
"id": "item_2",
"required": true,
"type": "number"
},
"item_3": {
"id": "item_3",
"required": true,
"type": "array" ,
"items": {
"id": "0",
"required": true,
"type": "number"
}
},
"item_4": {
"id": "item_4",
"required": true,
"type": "boolean"
},
"item_5": {
"id": "item_5",
"required": true,
"type": "null"
},
"item_6": {
"id": "item_6",
"required": true,
"type": "object" ,
"properties": {
"key": {
"id": "key",
"required": true,
"type": "string"
}
}
},
"item_7": {
"id": "item_7",
"required": true,
"type": "object" ,
"properties": {
"item_7.1": {
"id": "item_7.1",
"required": true,
"type": "string"
},
"item_7.2": {
"id": "item_7.2",
"required": true,
"type": "number"
},
"item_7.3": {
"id": "item_7.3",
"required": true,
"type": "array" ,
"items": {
"id": "0",
"required": true,
"type": "number"
}
},
"item_7.4": {
"id": "item_7.4",
"required": true,
"type": "boolean"
},
"item_7.5": {
"id": "item_7.5",
"required": true,
"type": "null"
},
"item_7.6": {
"id": "item_7.6",
"required": true,
"type": "object" ,
"properties": {
"key": {
"id": "key",
"required": true,
"type": "string"
}
}
}
}
}
}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Close
Hashes for json_schema_generator-0.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27b2999483d11124843164013566ee34009909a0c67442db4d19ca949d42476e |
|
MD5 | 8a22268db6dfe68223479c886c4e0845 |
|
BLAKE2b-256 | 633e31b0bb289e02c3cf023ddd4214f4243e5d0af7ade85d9661ae67a546e868 |