|
| 1 | +{ |
| 2 | + "$schema": "http://json-schema.org/draft-07/schema#", |
| 3 | + "additionalProperties": false, |
| 4 | + "definitions": { |
| 5 | + "ExportAlias": { |
| 6 | + "$ref": "#/definitions/ExportInterface", |
| 7 | + "title": "ExportAlias" |
| 8 | + }, |
| 9 | + "ExportInterface": { |
| 10 | + "additionalProperties": false, |
| 11 | + "properties": { |
| 12 | + "exportValue": { |
| 13 | + "type": "string" |
| 14 | + } |
| 15 | + }, |
| 16 | + "required": [ |
| 17 | + "exportValue" |
| 18 | + ], |
| 19 | + "title": "ExportInterface", |
| 20 | + "type": "object" |
| 21 | + }, |
| 22 | + "MixedAlias": { |
| 23 | + "additionalProperties": false, |
| 24 | + "properties": { |
| 25 | + "privateValue": { |
| 26 | + "type": "string" |
| 27 | + } |
| 28 | + }, |
| 29 | + "required": [ |
| 30 | + "privateValue" |
| 31 | + ], |
| 32 | + "title": "MixedAlias", |
| 33 | + "type": "object" |
| 34 | + }, |
| 35 | + "PublicAnonymousTypeLiteral": { |
| 36 | + "additionalProperties": false, |
| 37 | + "properties": { |
| 38 | + "publicValue": { |
| 39 | + "type": "string" |
| 40 | + } |
| 41 | + }, |
| 42 | + "required": [ |
| 43 | + "publicValue" |
| 44 | + ], |
| 45 | + "title": "PublicAnonymousTypeLiteral", |
| 46 | + "type": "object" |
| 47 | + } |
| 48 | + }, |
| 49 | + "properties": { |
| 50 | + "exportAlias": { |
| 51 | + "$ref": "#/definitions/ExportAlias" |
| 52 | + }, |
| 53 | + "exportInterface": { |
| 54 | + "$ref": "#/definitions/ExportInterface" |
| 55 | + }, |
| 56 | + "mixedAlias": { |
| 57 | + "$ref": "#/definitions/MixedAlias" |
| 58 | + }, |
| 59 | + "mixedInterface": { |
| 60 | + "additionalProperties": false, |
| 61 | + "properties": { |
| 62 | + "mixedValue": { |
| 63 | + "$ref": "#/definitions/ExportAlias" |
| 64 | + } |
| 65 | + }, |
| 66 | + "required": [ |
| 67 | + "mixedValue" |
| 68 | + ], |
| 69 | + "type": "object" |
| 70 | + }, |
| 71 | + "privateAlias": { |
| 72 | + "additionalProperties": false, |
| 73 | + "properties": { |
| 74 | + "privateValue": { |
| 75 | + "type": "string" |
| 76 | + } |
| 77 | + }, |
| 78 | + "required": [ |
| 79 | + "privateValue" |
| 80 | + ], |
| 81 | + "type": "object" |
| 82 | + }, |
| 83 | + "privateAnonymousTypeLiteral": { |
| 84 | + "additionalProperties": false, |
| 85 | + "properties": { |
| 86 | + "privateValue": { |
| 87 | + "type": "string" |
| 88 | + } |
| 89 | + }, |
| 90 | + "required": [ |
| 91 | + "privateValue" |
| 92 | + ], |
| 93 | + "type": "object" |
| 94 | + }, |
| 95 | + "privateInterface": { |
| 96 | + "additionalProperties": false, |
| 97 | + "properties": { |
| 98 | + "privateValue": { |
| 99 | + "type": "string" |
| 100 | + } |
| 101 | + }, |
| 102 | + "required": [ |
| 103 | + "privateValue" |
| 104 | + ], |
| 105 | + "type": "object" |
| 106 | + }, |
| 107 | + "publicAnonymousTypeLiteral": { |
| 108 | + "$ref": "#/definitions/PublicAnonymousTypeLiteral" |
| 109 | + } |
| 110 | + }, |
| 111 | + "required": [ |
| 112 | + "exportInterface", |
| 113 | + "exportAlias", |
| 114 | + "privateInterface", |
| 115 | + "privateAlias", |
| 116 | + "mixedInterface", |
| 117 | + "mixedAlias", |
| 118 | + "publicAnonymousTypeLiteral", |
| 119 | + "privateAnonymousTypeLiteral" |
| 120 | + ], |
| 121 | + "type": "object" |
| 122 | +} |
0 commit comments