Open martineaus83 opened 2 months ago
reference ($ref) other Schemas by it's $id like Dialect 2020-12 declares it. Samples is provided in jsonschema2pojo-integration-tests project in src/test/resources/json/examples_$id
$ref
$id
src/test/resources/json/examples_$id
Other example bellow:
{ "$id": "http://test.jsonschema2pojo.org/schema-json-test/main-data", "title": "main-data", "description": "Describe An Object.", "type": "object", "properties": { "DataFirst1": { "description": "Reference to http://test.jsonschema2pojo.org/schema-json-test/data-first", "type": "array", "items": { "$ref": "http://test.jsonschema2pojo.org/schema-json-test/data-first" }, "uniqueItems": true } } }
reference (
$ref
) other Schemas by it's$id
like Dialect 2020-12 declares it. Samples is provided in jsonschema2pojo-integration-tests project insrc/test/resources/json/examples_$id
Other example bellow: