Created
October 12, 2021 07:55
-
-
Save scudelletti/3bbaa30c447863af1f56a28770c09280 to your computer and use it in GitHub Desktop.
child.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"$id": "child.json", | |
"type": "integer" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"$id": "parent.json", | |
"type": "object", | |
"properties": { | |
"version": { | |
"$ref": "child.json" | |
} | |
}, | |
"additionalProperties": false, | |
"required": [ | |
"version" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment