fork of hey-api/openapi-ts because I need some additional things
at main 60 lines 1.2 kB view raw
1{ 2 "openapi": "3.1.1", 3 "info": { 4 "title": "OpenAPI 3.1.1 negative property names example", 5 "version": "1" 6 }, 7 "components": { 8 "schemas": { 9 "ReactionRollup": { 10 "title": "Reaction Rollup", 11 "type": "object", 12 "properties": { 13 "url": { 14 "format": "uri", 15 "type": "string" 16 }, 17 "total_count": { 18 "type": "integer" 19 }, 20 "+1": { 21 "type": "integer" 22 }, 23 "-1": { 24 "type": "integer" 25 }, 26 "laugh": { 27 "type": "integer" 28 }, 29 "confused": { 30 "type": "integer" 31 }, 32 "heart": { 33 "type": "integer" 34 }, 35 "hooray": { 36 "type": "integer" 37 }, 38 "eyes": { 39 "type": "integer" 40 }, 41 "rocket": { 42 "type": "integer" 43 } 44 }, 45 "required": [ 46 "url", 47 "total_count", 48 "+1", 49 "-1", 50 "laugh", 51 "confused", 52 "heart", 53 "hooray", 54 "eyes", 55 "rocket" 56 ] 57 } 58 } 59 } 60}