Skip to content

Commit 5f98c4a

Browse files
committed
Update to draft 7. Fixes YousefED#205, fixes YousefED#227, fixes YousefED#221
1 parent a4f884f commit 5f98c4a

File tree

88 files changed

+89
-91
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+89
-91
lines changed

README.md

+1-1

test/programs/annotation-default/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"varBoolean": {
55
"default": true,

test/programs/annotation-id/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MySubObject": {
55
"id": "filled#",

test/programs/annotation-ref/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MySubObject": {
55
"type": "object"

test/programs/annotation-tjs/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"dateTime": {
55
"format": "date-time",

test/programs/array-and-description/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"description": {
55
"type": "string"

test/programs/array-readonly/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"items": {
44
"type": "number"
55
},

test/programs/array-types/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"items": {
44
"type": [
55
"string",

test/programs/builtin-names/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"Ext.Array": {
55
"type": "object"

test/programs/class-extends/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"propA": {
55
"type": "number"

test/programs/class-single/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"propA": {
55
"type": "number"

test/programs/comments-override/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MySubObject": {
55
"additionalProperties": true,

test/programs/comments/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"additionalProperties": false,
44
"description": "Description of MyObject, a top level object,\nwhich also has a comment that spans\nmultiple lines",
55
"properties": {

test/programs/default-properties/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"varBoolean": {
55
"anyOf": [

test/programs/enums-compiled-compute/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"enum": [
44
1,
55
2,

test/programs/enums-mixed/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"Enum": {
55
"enum": [

test/programs/enums-number-initialized/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"enum": [
44
1,
55
10,

test/programs/enums-number/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"Enum": {
55
"enum": [

test/programs/enums-string/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"Enum": {
55
"enum": [

test/programs/enums-value-in-interface/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"A.B": {
55
"enum": [

test/programs/extra-properties/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"additionalProperties": {
44
"type": [
55
"string",

test/programs/force-type-imported/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"Widget": {
55
"type": "number"

test/programs/force-type/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"Widget": {
55
"type": "number"

test/programs/generate-all-types/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MyEnum": {
55
"enum": [

test/programs/generic-anonymous/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MyGeneric<number,string>": {
55
"properties": {

test/programs/generic-arrays/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"numberArray": {
55
"items": {

test/programs/generic-hell/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"GenericA<\"alias\">": {
55
"properties": {

test/programs/generic-multiargs/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MyGeneric<number,string>": {
55
"properties": {

test/programs/generic-multiple/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MyGeneric<number>": {
55
"properties": {

test/programs/generic-recursive/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$ref": "#/definitions/MyObject",
3-
"$schema": "http://json-schema.org/draft-06/schema#",
3+
"$schema": "http://json-schema.org/draft-07/schema#",
44
"definitions": {
55
"MyGeneric<number,string>": {
66
"properties": {

test/programs/generic-simple/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MyGeneric<number>": {
55
"properties": {

test/programs/ignored-required/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"required": {
55
"type": "boolean"

test/programs/imports/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MyInterface": {
55
"properties": {

test/programs/interface-extends/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"propA": {
55
"type": "number"

test/programs/interface-extra-props/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MyObject": {
55
"type": "object",

test/programs/interface-multi/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MySubObject": {
55
"properties": {

test/programs/interface-recursion/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$ref": "#/definitions/MyObject",
3-
"$schema": "http://json-schema.org/draft-06/schema#",
3+
"$schema": "http://json-schema.org/draft-07/schema#",
44
"definitions": {
55
"MyObject": {
66
"properties": {

test/programs/interface-single/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"propA": {
55
"type": "number"

test/programs/map-types/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MyMap1": {
55
"additionalProperties": {

test/programs/module-interface-deep/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MyModule.Def": {
55
"id": "MyModule.Def",

test/programs/module-interface-single/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"propA": {
55
"type": "number"

test/programs/namespace-deep-1/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"RootNamespace.Def": {
55
"properties": {

test/programs/namespace-deep-2/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"RootNamespace.Def": {
55
"properties": {

test/programs/namespace/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"enum": [
44
"x",
55
"y"

test/programs/optionals-derived/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"type": "object",
44
"required": [ "baseRequired", "derivedRequired" ],
55
"properties": {

test/programs/optionals/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"optional": {
55
"type": "number"

test/programs/private-members/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"publicMember": {
55
"type": "string"

test/programs/strict-null-checks/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"val": {
55
"type": "number"

test/programs/string-literals-inline/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"bar": {
55
"type": "string"

test/programs/string-literals/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"result": {
55
"enum": [

test/programs/type-alias-single-annotated/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"description": "This is a description",
44
"type": "string",
55
"pattern": "^mystring-[a-zA-Z0-9]+$",
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"type": "string"
44
}
55

test/programs/type-aliases-alias-ref-topref/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MyObject": {
55
"type": "object",

test/programs/type-aliases-alias-ref/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"properties": {
44
"prop": {
55
"type": "number"

test/programs/type-aliases-anonymous/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"definitions": {
44
"MyObject": {
55
"type": "object",

test/programs/type-aliases-fixed-size-array/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json-schema.org/draft-06/schema#",
2+
"$schema": "http://json-schema.org/draft-07/schema#",
33
"additionalItems": {
44
"anyOf": [
55
{

0 commit comments

Comments
 (0)