Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add $Id Management in the generator. With it, it is possible to #1632

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

martineaus83
Copy link

@martineaus83 martineaus83 commented Sep 14, 2024

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

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 in
src/test/resources/json/examples_$id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant