File size: 527 Bytes
d8ad0fd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 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"],
}
|