summaryrefslogtreecommitdiff
path: root/json/tests/draft2020-12/content.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft2020-12/content.json')
-rw-r--r--json/tests/draft2020-12/content.json4
1 files changed, 4 insertions, 0 deletions
diff --git a/json/tests/draft2020-12/content.json b/json/tests/draft2020-12/content.json
index 44688e8..33814d7 100644
--- a/json/tests/draft2020-12/content.json
+++ b/json/tests/draft2020-12/content.json
@@ -2,6 +2,7 @@
{
"description": "validation of string-encoded content based on media type",
"schema": {
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
"contentMediaType": "application/json"
},
"tests": [
@@ -25,6 +26,7 @@
{
"description": "validation of binary string-encoding",
"schema": {
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
"contentEncoding": "base64"
},
"tests": [
@@ -48,6 +50,7 @@
{
"description": "validation of binary-encoded media type documents",
"schema": {
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
"contentMediaType": "application/json",
"contentEncoding": "base64"
},
@@ -77,6 +80,7 @@
{
"description": "validation of binary-encoded media type documents with schema",
"schema": {
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
"contentMediaType": "application/json",
"contentEncoding": "base64",
"contentSchema": { "required": ["foo"], "properties": { "foo": { "type": "string" } } }