aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMilo Casagrande <milo.casagrande@linaro.org>2015-03-03 14:58:58 +0100
committerMilo Casagrande <milo.casagrande@linaro.org>2015-03-03 14:58:58 +0100
commitb7e63caef0f3d9c7ea36bb2ba2638c04fade8175 (patch)
tree20662ee876d63d84087cc0e471918ccd7fd44681 /doc
parent48bfb5d967f6776e99a5e698a388594e4d97eb72 (diff)
doc: Fix schema URL.
Change-Id: Ie33409afc0defd7db04aa2318e18b35e245d5a0f
Diffstat (limited to 'doc')
-rw-r--r--doc/schema/1.0/test_case_post.json4
-rw-r--r--doc/schema/1.0/test_set_post.json4
-rw-r--r--doc/schema/1.0/test_suite_post.json8
3 files changed, 8 insertions, 8 deletions
diff --git a/doc/schema/1.0/test_case_post.json b/doc/schema/1.0/test_case_post.json
index 342298d..8eb5a50 100644
--- a/doc/schema/1.0/test_case_post.json
+++ b/doc/schema/1.0/test_case_post.json
@@ -1,6 +1,6 @@
{
- "$schema": "http://api.kernelci.org/schema/1.0/test_case_post.json",
- "id": "http://api.kernelci.org/schema/1.0/test_case_post.json",
+ "$schema": "http://api.kernelci.org/json-schema/1.0/test_case_post.json",
+ "id": "http://api.kernelci.org/json-schema/1.0/test_case_post.json",
"title": "test_case",
"description": "A test case JSON object",
"type": "object",
diff --git a/doc/schema/1.0/test_set_post.json b/doc/schema/1.0/test_set_post.json
index 33df132..b81d8d4 100644
--- a/doc/schema/1.0/test_set_post.json
+++ b/doc/schema/1.0/test_set_post.json
@@ -1,6 +1,6 @@
{
- "$schema": "http://api.kernelci.org/schema/1.0/test_set_post.json",
- "id": "http://api.kernelci.org/schema/1.0/test_set_post.json",
+ "$schema": "http://api.kernelci.org/json-schema/1.0/test_set_post.json",
+ "id": "http://api.kernelci.org/json-schema/1.0/test_set_post.json",
"title": "test_set",
"description": "A test set JSON object",
"type": "object",
diff --git a/doc/schema/1.0/test_suite_post.json b/doc/schema/1.0/test_suite_post.json
index c150a43..3c32cbe 100644
--- a/doc/schema/1.0/test_suite_post.json
+++ b/doc/schema/1.0/test_suite_post.json
@@ -1,6 +1,6 @@
{
- "$schema": "http://api.kernelci.org/schema/1.0/test_suite_post.json",
- "id": "http://api.kernelci.org/schema/1.0/test_suite_post.json",
+ "$schema": "http://api.kernelci.org/json-schema/1.0/test_suite_post.json",
+ "id": "http://api.kernelci.org/json-schema/1.0/test_suite_post.json",
"title": "test_suite",
"description": "A test suite JSON object",
"type": "object",
@@ -69,13 +69,13 @@
"test_set": {
"type": "array",
"description": "The list of test_set IDs executed by this test suite",
- "items": {"$ref": "http://api.kernelci.org/schema/1.0/test_set_post.json"},
+ "items": {"$ref": "http://api.kernelci.org/json-schema/1.0/test_set_post.json"},
"additionalItems": true
},
"test_case": {
"type": "array",
"description": "The list of test_case IDs executed by this test suite",
- "items": {"$ref": "http://api.kernelci.org/schema/1.0/test_case_post.json"},
+ "items": {"$ref": "http://api.kernelci.org/json-schema/1.0/test_case_post.json"},
"additionalItems": true
},
"metadata": {