|
862 | 862 | { |
863 | 863 | "description": "URN ref with nested pointer ref", |
864 | 864 | "schema": { |
| 865 | + "$schema": "https://json-schema.org/draft/2019-09/schema", |
865 | 866 | "$ref": "urn:uuid:deadbeef-4321-ffff-ffff-1234feebdaed", |
866 | 867 | "$defs": { |
867 | 868 | "foo": { |
|
887 | 888 | { |
888 | 889 | "description": "ref to if", |
889 | 890 | "schema": { |
| 891 | + "$schema": "https://json-schema.org/draft/2019-09/schema", |
890 | 892 | "$ref": "http://example.com/ref/if", |
891 | 893 | "if": { |
892 | 894 | "$id": "http://example.com/ref/if", |
|
909 | 911 | { |
910 | 912 | "description": "ref to then", |
911 | 913 | "schema": { |
| 914 | + "$schema": "https://json-schema.org/draft/2019-09/schema", |
912 | 915 | "$ref": "http://example.com/ref/then", |
913 | 916 | "then": { |
914 | 917 | "$id": "http://example.com/ref/then", |
|
931 | 934 | { |
932 | 935 | "description": "ref to else", |
933 | 936 | "schema": { |
| 937 | + "$schema": "https://json-schema.org/draft/2019-09/schema", |
934 | 938 | "$ref": "http://example.com/ref/else", |
935 | 939 | "else": { |
936 | 940 | "$id": "http://example.com/ref/else", |
|
953 | 957 | { |
954 | 958 | "description": "ref with absolute-path-reference", |
955 | 959 | "schema": { |
| 960 | + "$schema": "https://json-schema.org/draft/2019-09/schema", |
956 | 961 | "$id": "http://example.com/ref/absref.json", |
957 | 962 | "$defs": { |
958 | 963 | "a": { |
|
982 | 987 | { |
983 | 988 | "description": "$id with file URI still resolves pointers - *nix", |
984 | 989 | "schema": { |
| 990 | + "$schema": "https://json-schema.org/draft/2019-09/schema", |
985 | 991 | "$id": "file:///folder/file.json", |
986 | 992 | "$defs": { |
987 | 993 | "foo": { |
|
1006 | 1012 | { |
1007 | 1013 | "description": "$id with file URI still resolves pointers - windows", |
1008 | 1014 | "schema": { |
| 1015 | + "$schema": "https://json-schema.org/draft/2019-09/schema", |
1009 | 1016 | "$id": "file:///c:/folder/file.json", |
1010 | 1017 | "$defs": { |
1011 | 1018 | "foo": { |
|
1030 | 1037 | { |
1031 | 1038 | "description": "empty tokens in $ref json-pointer", |
1032 | 1039 | "schema": { |
| 1040 | + "$schema": "https://json-schema.org/draft/2019-09/schema", |
1033 | 1041 | "$defs": { |
1034 | 1042 | "": { |
1035 | 1043 | "$defs": { |
|
0 commit comments