i'm trying to define some request body example in a file and link this file to the actual request, i saw we can use Swagger $ref to do that Reusing Examples but i can't find the correct L5 Swagger
syntax to do it please any help.
my code:
/**
* @OA\Post(
* operationId="vehicleStore",
* tags={"vehicle"},
* summary="Store Vehicle - with components and trips (damages & loads)",
* description="Store vehicle",
* path="/vehicle",
* security={{"bearerAuth":{}}},
*
* @OA\RequestBody(
* @OA\JsonContent(
* allOf={
* @OA\Schema(ref="#/components/schemas/APIResponse"),
* @OA\Schema(ref="#/components/schemas/CustomResponse")
* },
* examples={ @OA\Examples( externalValue="http://api.nytimes.com/svc/search/v2/articlesearch.json", summary="1" ) }
* )
* ),
*
* @OA\Response(
* response="200",
* description="Successful",
* @OA\JsonContent()
* ),
* )
*
* @return JsonResponse
*
*/
i'm trying to use @OA\Examples
please if any one can do an example of how we can us it, that will be great
update
i tried something like
/**
*
* @OA\Examples(
* summary="VehicleStore",
* example = "VehicleStore",
* value = {
* "result": null,
* "message": "Unauthorized, you don't have access to this content, Invalid token.",
* "status": 401
* },
* )
*/
then
/**
* @OA\Post(
* operationId="vehicleStore",
* tags={"vehicle"},
* summary="Store Vehicle - with components and trips (damages & loads)",
* description="Store vehicle",
* path="/vehicle",
* security={{"bearerAuth":{}}},
*
* @OA\RequestBody(
* @OA\JsonContent(
* allOf={
* @OA\Schema(ref="#/components/schemas/APIResponse"),
* @OA\Schema(ref="#/components/schemas/CustomRequestBody")
* },
* examples = {
* @OA\Schema( ref="#/components/examples/VehicleStore")
*
* }
*
* )
* ),
*
* @OA\Response(
* response="200",
* description="Successful",
* @OA\JsonContent()
* ),
* )
*
* @return JsonResponse
*
*/
in the ui its show example: VehicleStore but the Example Value
still empty in the ui
i found the correct L5 syntax to do multiple examples with using refs also :
so first i define the examples as:
then i defined a request body because i need multiple examples for one request i think the same thing can be done to a response also if any one need response with multiple examples so my request body was:
then i linked the request body to the request as:
and that generated the flowing objects in api-docs.json
hope this will help any one searching how to do response or request with multiple examples