summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-02-09 16:53:20 +0100
committerWojtek Kosior <koszko@koszko.org>2022-02-09 16:53:20 +0100
commit15d58dac1975a5429f9d1223676dddc1026b2a75 (patch)
tree3731854ffb0392d440760a5259d9fc72311baf8f
parentc72c8438875d20b156d22d975523a19bbb407d95 (diff)
downloadhydrilla-json-schemas-15d58dac1975a5429f9d1223676dddc1026b2a75.tar.gz
hydrilla-json-schemas-15d58dac1975a5429f9d1223676dddc1026b2a75.zip
make resource dependency specifier an object
-rw-r--r--common_definitions-1.schema.json27
1 files changed, 19 insertions, 8 deletions
diff --git a/common_definitions-1.schema.json b/common_definitions-1.schema.json
index 0deca24..b8149a8 100644
--- a/common_definitions-1.schema.json
+++ b/common_definitions-1.schema.json
@@ -80,6 +80,16 @@
"type": "string",
"pattern": "^[-0-9a-z]+$"
},
+ "item_dep_specifier": {
+ "description": "Simple reference to an item as a dependency",
+ "type": "object",
+ "required": ["identifier"],
+ "properties": {
+ "identifier": {
+ "$ref": "#/definitions/item_identifier"
+ }
+ }
+ },
"item_ref": {
"description": "An object containing a subset of fields from full item definition",
"type": "object",
@@ -156,6 +166,14 @@
"description": "What scripts are included in the resource",
"$ref": "#/definitions/file_ref_list",
"default": []
+ },
+ "dependencies": {
+ "description": "Which other resources this resource depends on",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/item_dep_specifier"
+ },
+ "default": []
}
}
}]
@@ -175,14 +193,7 @@
"payloads": {
"description": "Which payloads are to be applied to which URLs",
"additionalProperties": {
- "description": "Which payload applies to URLs matching given pattern",
- "type": "object",
- "required": ["identifier"],
- "properties": {
- "identifier": {
- "$ref": "#/definitions/item_identifier"
- }
- }
+ "$ref": "#/definitions/item_dep_specifier"
},
"default": {},
"examples": [{