File tree Expand file tree Collapse file tree 5 files changed +38
-3
lines changed Expand file tree Collapse file tree 5 files changed +38
-3
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "$id" : " http://localhost:1234/draft-next/format-assertion-false.json" ,
3
+ "$schema" : " https://json-schema.org/draft/next/schema" ,
4
+ "$vocabulary" : {
5
+ "https://json-schema.org/draft/next/vocab/core" : true ,
6
+ "https://json-schema.org/draft/next/vocab/format-assertion" : false
7
+ },
8
+ "allOf" : [
9
+ { "$ref" : " https://json-schema.org/draft/next/schema/meta/core" },
10
+ { "$ref" : " https://json-schema.org/draft/next/schema/meta/format-assertion" }
11
+ ]
12
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "$id" : " http://localhost:1234/draft-next/format-assertion-true.json" ,
3
+ "$schema" : " https://json-schema.org/draft/next/schema" ,
4
+ "$vocabulary" : {
5
+ "https://json-schema.org/draft/next/vocab/core" : true ,
6
+ "https://json-schema.org/draft/next/vocab/format-assertion" : true
7
+ },
8
+ "allOf" : [
9
+ { "$ref" : " https://json-schema.org/draft/next/schema/meta/core" },
10
+ { "$ref" : " https://json-schema.org/draft/next/schema/meta/format-assertion" }
11
+ ]
12
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "$id" : " http://localhost:1234/draft-next/metaschema-no-validation.json" ,
3
+ "$vocabulary" : {
4
+ "https://json-schema.org/draft/next/vocab/applicator" : true ,
5
+ "https://json-schema.org/draft/next/vocab/core" : true
6
+ },
7
+ "allOf" : [
8
+ { "$ref" : " https://json-schema.org/draft/next/meta/applicator" },
9
+ { "$ref" : " https://json-schema.org/draft/next/meta/core" }
10
+ ]
11
+ }
Original file line number Diff line number Diff line change 3
3
"description" : " schema that uses custom metaschema with format-assertion: false" ,
4
4
"schema" : {
5
5
"$id" : " https://schema/using/format-assertion/false" ,
6
- "$schema" : " http://localhost:1234/draft2020-12 /format-assertion-false.json" ,
6
+ "$schema" : " http://localhost:1234/draft-next /format-assertion-false.json" ,
7
7
"format" : " ipv4"
8
8
},
9
9
"tests" : [
23
23
"description" : " schema that uses custom metaschema with format-assertion: true" ,
24
24
"schema" : {
25
25
"$id" : " https://schema/using/format-assertion/true" ,
26
- "$schema" : " http://localhost:1234/draft2020-12 /format-assertion-true.json" ,
26
+ "$schema" : " http://localhost:1234/draft-next /format-assertion-true.json" ,
27
27
"format" : " ipv4"
28
28
},
29
29
"tests" : [
Original file line number Diff line number Diff line change 3
3
"description" : " schema that uses custom metaschema with with no validation vocabulary" ,
4
4
"schema" : {
5
5
"$id" : " https://schema/using/no/validation" ,
6
- "$schema" : " http://localhost:1234/draft2020-12 /metaschema-no-validation.json" ,
6
+ "$schema" : " http://localhost:1234/draft-next /metaschema-no-validation.json" ,
7
7
"properties" : {
8
8
"badProperty" : false ,
9
9
"numberProperty" : {
You can’t perform that action at this time.
0 commit comments