Skip to content

Commit bb234b4

Browse files
committed
Update openapi.json
1 parent c2fa6e2 commit bb234b4

File tree

1 file changed

+60
-0
lines changed
  • tests/test-javalin-jsonb/src/main/resources/public

1 file changed

+60
-0
lines changed

tests/test-javalin-jsonb/src/main/resources/public/openapi.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,6 +1154,40 @@
11541154
}
11551155
}
11561156
},
1157+
"/test/byteArray" : {
1158+
"get" : {
1159+
"tags" : [
1160+
1161+
],
1162+
"summary" : "",
1163+
"description" : "",
1164+
"requestBody" : {
1165+
"content" : {
1166+
"application/json" : {
1167+
"schema" : {
1168+
"type" : "array",
1169+
"items" : {
1170+
"$ref" : "#/components/schemas/byte"
1171+
}
1172+
}
1173+
}
1174+
},
1175+
"required" : true
1176+
},
1177+
"responses" : {
1178+
"200" : {
1179+
"description" : "",
1180+
"content" : {
1181+
"application/json" : {
1182+
"schema" : {
1183+
"type" : "string"
1184+
}
1185+
}
1186+
}
1187+
}
1188+
}
1189+
}
1190+
},
11571191
"/test/ctx" : {
11581192
"get" : {
11591193
"tags" : [
@@ -1470,6 +1504,32 @@
14701504
}
14711505
}
14721506
},
1507+
"/test/inputStream" : {
1508+
"get" : {
1509+
"tags" : [
1510+
1511+
],
1512+
"summary" : "",
1513+
"description" : "",
1514+
"requestBody" : {
1515+
"content" : {
1516+
"application/json" : {
1517+
"schema" : {
1518+
"$ref" : "#/components/schemas/InputStream"
1519+
}
1520+
}
1521+
},
1522+
"required" : true
1523+
},
1524+
"responses" : {
1525+
"200" : {
1526+
"description" : "",
1527+
"content" : {
1528+
"application/json" : {
1529+
"schema" : {
1530+
"type" : "string"
1531+
}
1532+
}
14731533
}
14741534
}
14751535
}

0 commit comments

Comments
 (0)