|
| 1 | +{ |
| 2 | + "$schema": "http://json-schema.org/draft-07/schema", |
| 3 | + "type": "object", |
| 4 | + "properties": { |
| 5 | + "object": { |
| 6 | + "type": "object", |
| 7 | + "properties": { |
| 8 | + "string": { "type": "string" }, |
| 9 | + "multiline_string": { "type": "string" }, |
| 10 | + "integer_1": { "type": "integer" }, |
| 11 | + "integer_2": { "type": "integer" }, |
| 12 | + "integer_3": { "type": "integer" }, |
| 13 | + "float_1": { "type": "number" }, |
| 14 | + "float_2": { "type": "number" }, |
| 15 | + "float_3": { "type": "number" }, |
| 16 | + "float_4": { "type": "number" }, |
| 17 | + "float_5": { "type": "number" }, |
| 18 | + "float_6": { "type": "number" }, |
| 19 | + "float_7": { "type": "number" }, |
| 20 | + "float_8": { "type": "number" }, |
| 21 | + "infinite_1": { "type": "number" }, |
| 22 | + "infinite_2": { "type": "number" }, |
| 23 | + "infinite_3": { "type": "number" }, |
| 24 | + "not_a_number_1": { "type": "number" }, |
| 25 | + "not_a_number_2": { "type": "number" }, |
| 26 | + "not_a_number_3": { "type": "number" }, |
| 27 | + "hexadecimal_1": { "type": "number" }, |
| 28 | + "hexadecimal_2": { "type": "number" }, |
| 29 | + "hexadecimal_3": { "type": "number" }, |
| 30 | + "octal_1": { "type": "number" }, |
| 31 | + "octal_2": { "type": "number" }, |
| 32 | + "binary": { "type": "number" }, |
| 33 | + "null_1": { "type": "null" }, |
| 34 | + "null_2": { "type": "null" }, |
| 35 | + "boolean_1": { "type": "boolean" }, |
| 36 | + "boolean_2": { "type": "boolean" }, |
| 37 | + "boolean_3": { "type": "boolean" }, |
| 38 | + "boolean_4": { "type": "boolean" }, |
| 39 | + "boolean_5": { "type": "boolean" }, |
| 40 | + "boolean_6": { "type": "boolean" }, |
| 41 | + "offset_datetime_1": { "type": "string", "format": "date-time" }, |
| 42 | + "offset_datetime_2": { "type": "string", "format": "date-time" }, |
| 43 | + "offset_datetime_3": { "type": "string", "format": "date-time" }, |
| 44 | + "offset_datetime_4": { "type": "string", "format": "date-time" }, |
| 45 | + "offset_datetime_5": { "type": "string", "format": "date-time" }, |
| 46 | + "offset_datetime_6": { "type": "string", "format": "date-time" }, |
| 47 | + "datetime_1": { "type": "string", "format": "date-time" }, |
| 48 | + "datetime_2": { "type": "string", "format": "date-time" }, |
| 49 | + "local_date_1": { "type": "string", "format": "date" }, |
| 50 | + "local_date_2": { "type": "string", "format": "date" }, |
| 51 | + "time_1": { "type": "string", "format": "time" }, |
| 52 | + "time_2": { "type": "string", "format": "time" }, |
| 53 | + "duration_1": { "type": "string", "format": "duration" }, |
| 54 | + "array_1": { "type": "array" }, |
| 55 | + "array_2": { "type": "array" }, |
| 56 | + "nested_object_1": { |
| 57 | + "type": "object", |
| 58 | + "properties": { "foo": { "type": "string" } } |
| 59 | + }, |
| 60 | + "nested_object_2": { |
| 61 | + "type": "object", |
| 62 | + "properties": { "foo": { "type": "string" } } |
| 63 | + }, |
| 64 | + "array_of_objects_1": { |
| 65 | + "type": "array", |
| 66 | + "items": { |
| 67 | + "type": "object", |
| 68 | + "properties": { "foo": { "type": "string" } } |
| 69 | + } |
| 70 | + }, |
| 71 | + "nested_array_of_objects_1": { |
| 72 | + "type": "array", |
| 73 | + "items": { |
| 74 | + "type": "object", |
| 75 | + "properties": { "foo": { "type": "string" } } |
| 76 | + } |
| 77 | + } |
| 78 | + } |
| 79 | + } |
| 80 | + } |
| 81 | +} |
0 commit comments