@@ -176,7 +176,7 @@ paths:
176
176
content :
177
177
application/json :
178
178
schema :
179
- $ref : ' #/components/schemas/Category '
179
+ $ref : ' #/components/schemas/CategoriesResponse '
180
180
example :
181
181
apiVersion : ' 1.0'
182
182
categories :
@@ -253,7 +253,7 @@ paths:
253
253
content :
254
254
application/json :
255
255
schema :
256
- $ref : ' #/components/schemas/Category_data '
256
+ $ref : ' #/components/schemas/CategoryResponse '
257
257
example :
258
258
apiVersion : ' 1.0'
259
259
category :
@@ -350,7 +350,7 @@ paths:
350
350
content :
351
351
application/json :
352
352
schema :
353
- $ref : ' #/components/schemas/Language_data '
353
+ $ref : ' #/components/schemas/Language '
354
354
example :
355
355
apiVersion : ' 1.0'
356
356
language :
@@ -494,7 +494,7 @@ paths:
494
494
content :
495
495
application/json :
496
496
schema :
497
- $ref : ' #/components/schemas/Resource_data '
497
+ $ref : ' #/components/schemas/Resource '
498
498
example :
499
499
apiVersion : ' 1.0'
500
500
resource :
@@ -538,7 +538,7 @@ paths:
538
538
content :
539
539
application/json :
540
540
schema :
541
- $ref : ' #/components/schemas/Resource_data '
541
+ $ref : ' #/components/schemas/Resource '
542
542
example :
543
543
apiVersion : ' 1.0'
544
544
resource :
@@ -582,7 +582,7 @@ paths:
582
582
content :
583
583
application/json :
584
584
schema :
585
- $ref : ' #/components/schemas/Resource_data '
585
+ $ref : ' #/components/schemas/Resource '
586
586
example :
587
587
apiVersion : ' 1.0'
588
588
resource :
@@ -705,7 +705,7 @@ paths:
705
705
content :
706
706
application/json :
707
707
schema :
708
- $ref : ' #/components/schemas/Resource_list '
708
+ $ref : ' #/components/schemas/ResourceList '
709
709
example :
710
710
apiVersion : ' 1.0'
711
711
resources :
@@ -733,7 +733,7 @@ paths:
733
733
content :
734
734
application/json :
735
735
schema :
736
- $ref : ' #/components/schemas/Error_list '
736
+ $ref : ' #/components/schemas/ErrorResponse '
737
737
example :
738
738
apiVersion : ' 1.0'
739
739
errors :
@@ -764,14 +764,14 @@ components:
764
764
type : string
765
765
description : API version
766
766
errors :
767
- $ref : ' #/components/schemas/Error_data '
767
+ $ref : ' #/components/schemas/ErrorData '
768
768
status :
769
769
type : string
770
770
description : Status message
771
771
status_code :
772
772
type : integer
773
773
description : Status code
774
- Error_data :
774
+ ErrorData :
775
775
type : object
776
776
description : The response errors
777
777
properties :
@@ -830,22 +830,22 @@ components:
830
830
message :
831
831
description : Error message
832
832
type : string
833
- Error_list :
833
+ ErrorResponse :
834
834
type : object
835
835
properties :
836
836
apiVersion :
837
837
type : string
838
838
description : API version
839
839
errors :
840
- $ref : ' #/components/schemas/Error_list_data '
840
+ $ref : ' #/components/schemas/ErrorDataList '
841
841
status :
842
842
type : string
843
843
description : Status message
844
844
status_code :
845
845
type : integer
846
846
description : Status code
847
847
848
- Error_list_data :
848
+ ErrorDataList :
849
849
type : array
850
850
items :
851
851
type : object
@@ -917,21 +917,21 @@ components:
917
917
type : string
918
918
description : API version
919
919
resource :
920
- $ref : ' #/components/schemas/Resource_data '
920
+ $ref : ' #/components/schemas/ResourceData '
921
921
status :
922
922
type : string
923
923
description : Status message
924
924
status_code :
925
925
type : integer
926
926
description : Status code
927
927
928
- Category :
928
+ CategoriesResponse :
929
929
type : object
930
930
properties :
931
931
apiVersion :
932
932
type : string
933
933
category :
934
- $ref : ' #/components/schemas/Category_data '
934
+ $ref : ' #/components/schemas/CategoryDataList '
935
935
status :
936
936
type : string
937
937
description : Status message
@@ -940,17 +940,34 @@ components:
940
940
description : Status code
941
941
total_count :
942
942
type : integer
943
- Category_data :
944
- type : array
945
- items :
946
- type : object
947
- properties :
943
+ CategoryResponse :
944
+ type : object
945
+ properties :
946
+ apiVersion :
947
+ type : string
948
+ category :
949
+ $ref : ' #/components/schemas/CategoryData'
950
+ status :
951
+ type : string
952
+ description : Status message
953
+ status_code :
954
+ type : integer
955
+ description : Status code
956
+ total_count :
957
+ type : integer
958
+ CategoryData :
959
+ type : object
960
+ properties :
948
961
id :
949
962
type : integer
950
963
description : Category ID
951
964
name :
952
965
type : string
953
966
description : Category name
967
+ CategoryDataList :
968
+ type : array
969
+ items :
970
+ $ref : ' #/components/schemas/CategoryData'
954
971
955
972
Language :
956
973
type : object
@@ -960,7 +977,7 @@ components:
960
977
type : string
961
978
description : API version
962
979
languages :
963
- $ref : ' #/components/schemas/Language_data '
980
+ $ref : ' #/components/schemas/LanguageData '
964
981
status :
965
982
type : string
966
983
description : Status message
@@ -970,7 +987,7 @@ components:
970
987
total_count :
971
988
type : integer
972
989
description : Total languages retrieved
973
- Language_data :
990
+ LanguageData :
974
991
type : object
975
992
properties :
976
993
id :
@@ -1035,7 +1052,7 @@ components:
1035
1052
type : string
1036
1053
description : Resource url
1037
1054
1038
- Resource_data :
1055
+ ResourceData :
1039
1056
type : object
1040
1057
properties :
1041
1058
category :
@@ -1076,10 +1093,10 @@ components:
1076
1093
type : string
1077
1094
description : Resource url
1078
1095
1079
- Resource_list :
1096
+ ResourceList :
1080
1097
type : array
1081
1098
items :
1082
- $ref : ' #/components/schemas/Resource_data '
1099
+ $ref : ' #/components/schemas/ResourceData '
1083
1100
1084
1101
SearchResponse :
1085
1102
type : object
@@ -1090,7 +1107,7 @@ components:
1090
1107
resources :
1091
1108
type : array
1092
1109
items :
1093
- $ref : ' #/components/schemas/Resource_data '
1110
+ $ref : ' #/components/schemas/ResourceData '
1094
1111
number_of_pages :
1095
1112
type : integer
1096
1113
description : Total pages
@@ -1119,7 +1136,7 @@ components:
1119
1136
resources :
1120
1137
type : array
1121
1138
items :
1122
- $ref : ' #/components/schemas/Resource_data '
1139
+ $ref : ' #/components/schemas/ResourceData '
1123
1140
has_next :
1124
1141
type : boolean
1125
1142
description : Additional pages
@@ -1164,14 +1181,14 @@ components:
1164
1181
type : string
1165
1182
description : API version
1166
1183
credentials :
1167
- $ref : ' #/components/schemas/ApiKeyResponse_data '
1184
+ $ref : ' #/components/schemas/ApiKeyResponseData '
1168
1185
status :
1169
1186
type : string
1170
1187
description : Status message
1171
1188
status_code :
1172
1189
type : integer
1173
1190
description : Status code
1174
- ApiKeyResponse_data :
1191
+ ApiKeyResponseData :
1175
1192
type : object
1176
1193
properties :
1177
1194
apikey :
0 commit comments