hc99's picture
Add files using upload-large-folder tool
d8ad0fd verified
PARENT_SCHEMA = {
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://example.com/schemas/parent.json",
"type": "object",
"properties": {
"ParentSchema": {
"$ref": "https://SCHEMA",
},
},
}
CHILD_SCHEMA = {
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://example.com/schemas/child.json",
"type": "object",
"properties": {
"project": {
"type": "string",
},
},
"required": ["project"],
}