mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-20 16:42:56 +00:00
19 lines
395 B
JSON
19 lines
395 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
"$ref": "#/definitions/MappingSchema",
|
|
"definitions": {
|
|
"MappingSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"schema": {
|
|
"$ref": "https://json-schema.org/draft-07/schema"
|
|
},
|
|
"config": {
|
|
"type": "object"
|
|
}
|
|
},
|
|
"required": ["schema", "config"]
|
|
}
|
|
}
|
|
}
|