fork of hey-api/openapi-ts because I need some additional things
at main 40 lines 838 B view raw
1{ 2 "components": { 3 "schemas": { 4 "ExternalSharedModel": { 5 "type": "object", 6 "properties": { 7 "id": { "type": "string" }, 8 "name": { "type": "string" } 9 }, 10 "required": ["id"] 11 }, 12 "ExternalSharedModelWithUuid": { 13 "type": "string", 14 "format": "uuid" 15 }, 16 "ExternalNested": { 17 "type": "object", 18 "properties": { 19 "inner": { 20 "type": "object", 21 "properties": { 22 "deep": { "type": "string" } 23 } 24 } 25 } 26 }, 27 "ExternalNestedNumeric": { 28 "type": "object", 29 "properties": { 30 "0": { 31 "type": "object", 32 "properties": { 33 "1": { "type": "string" } 34 } 35 } 36 } 37 } 38 } 39 } 40}