JSONSchema2PoPo2
JSONSchema2PoPo2 copied to clipboard
Generate Python data objects from a JSON Schema input
Results
1
JSONSchema2PoPo2 issues
Sort by
recently updated
recently updated
newest added
Given the following schema `test_schema.json`: ``` { "$schema": "http://json-schema.org/draft-07/schema#", "title": "test schema", "type": "object", "additionalProperties": false, "properties": { "id": { "$ref": "#/definitions/Identified" } }, "definitions": { "Identifier": { "anyOf": [...