@@ -28,7 +28,6 @@ typedef enum {
28
28
KIND_PATH ,
29
29
KIND_RESPONSE ,
30
30
KIND_PARAMETER ,
31
- KIND_INFO ,
32
31
KIND_SERVER ,
33
32
KIND_SECURITY ,
34
33
KIND_TAG ,
@@ -47,7 +46,6 @@ static kindDefinition OpenAPIKinds [] = {
47
46
{ true, 'p' , "path" , "paths" },
48
47
{ true, 'R' , "response" , "responses" },
49
48
{ true, 'P' , "parameter" , "parameters" },
50
- { true, 'I' , "info" , "info" },
51
49
{ true, 'S' , "server" , "servers" },
52
50
{ true, 's' , "security" , "security" },
53
51
{ true, 't' , "tag" , "tags" },
@@ -69,7 +67,6 @@ enum openapiKeys {
69
67
KEY_PARAMETERS ,
70
68
KEY_RESPONSES ,
71
69
KEY_DEFINITIONS ,
72
- KEY_INFO ,
73
70
KEY_SERVERS ,
74
71
KEY_SECURITY ,
75
72
KEY_TAG ,
@@ -94,7 +91,6 @@ static const keywordTable OpenAPIKeywordTable[] = {
94
91
{ "parameters" , KEY_PARAMETERS },
95
92
{ "responses" , KEY_RESPONSES },
96
93
{ "definitions" , KEY_DEFINITIONS },
97
- { "info" , KEY_INFO },
98
94
{ "servers" , KEY_SERVERS },
99
95
{ "security" , KEY_SECURITY },
100
96
{ "tags" , KEY_TAG },
@@ -293,11 +289,6 @@ static const enum openapiKeys examples3Keys[] = {
293
289
KEY_COMPONENTS ,
294
290
};
295
291
296
- static const enum openapiKeys info3Keys [] = {
297
- KEY_UNKNOWN ,
298
- KEY_INFO ,
299
- };
300
-
301
292
static const enum openapiKeys server3Keys [] = {
302
293
KEY_URL ,
303
294
KEY_UNKNOWN ,
@@ -324,13 +315,7 @@ static const enum openapiKeys externalDocs3Keys[] = {
324
315
};
325
316
326
317
327
-
328
318
const struct tagSource tagSources [] = {
329
- {
330
- KIND_INFO ,
331
- info3Keys ,
332
- ARRAY_SIZE (info3Keys ),
333
- },
334
319
{
335
320
KIND_EXAMPLE ,
336
321
examples3Keys ,
0 commit comments