OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "namespace": "enums", | 3 "namespace": "enums", |
| 4 "description": "The enums API.", |
4 "types": [ | 5 "types": [ |
5 { | 6 { |
6 "id": "Enumeration", | 7 "id": "Enumeration", |
7 "type": "string", | 8 "type": "string", |
8 "enum": ["one", "two", "three"] | 9 "enum": ["one", "two", "three"] |
9 }, | 10 }, |
10 { | 11 { |
11 "id": "EnumType", | 12 "id": "EnumType", |
12 "type": "object", | 13 "type": "object", |
13 "properties": { | 14 "properties": { |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 { | 204 { |
204 "name": "secondEnum", | 205 "name": "secondEnum", |
205 "type": "string", | 206 "type": "string", |
206 "enum": ["spam", "ham", "eggs"] | 207 "enum": ["spam", "ham", "eggs"] |
207 } | 208 } |
208 ] | 209 ] |
209 } | 210 } |
210 ] | 211 ] |
211 } | 212 } |
212 ] | 213 ] |
OLD | NEW |