lab-development-imb/web/05/demos/flowers_components.json

71 lines
1.1 KiB
JSON

{
"openapi": "3.0.0",
"info": {
"title": "Flowers API",
"version": "1.0.0"
},
"servers": [
{
"url": "http://localhost:8080"
}
],
"paths": {
"/yellow-flowers": {
"get": {
"summary": "Fetches a list of yellow flowers",
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Flower"
}
}
}
}
}
}
}
},
"/blue-flowers": {
"get": {
"summary": "Fetches a list of blue flowers",
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Flower"
}
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"Flower": {
"type": "object",
"properties": {
"id": {
"type": "number",
"example": 4
},
"name": {
"type": "string",
"example": "Mädchenauge"
}
}
}
}
}
}