summaryrefslogtreecommitdiff
path: root/api_query_result-1.schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'api_query_result-1.schema.json')
-rw-r--r--api_query_result-1.schema.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/api_query_result-1.schema.json b/api_query_result-1.schema.json
new file mode 100644
index 0000000..a8dd30a
--- /dev/null
+++ b/api_query_result-1.schema.json
@@ -0,0 +1,23 @@
+{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "$id": "https://hydrilla.koszko.org/api_query_result-1.schema.json",
+ "title": "Query result",
+ "description": "Object with a list of references to mappings that contain payloads for requested URL",
+ "type": "object",
+ "required": [
+ "api_schema_version",
+ "mappings"
+ ],
+ "properties": {
+ "api_schema_version": {
+ "$ref": "./common_definitions-1.schema.json#/definitions/schema_version"
+ },
+ "mappings": {
+ "description": "References to mappings using at least one pattern that matches the requested URL",
+ "type": "array",
+ "items": {
+ "$ref": "./common_definitions-1.schema.json#/definitions/item_ref"
+ }
+ }
+ }
+}