---
title: "Coffee"
url: "https://devportal.jilson.dev/apis/coffee-api-basic-auth-1/versions/fda4cb4b-55ba-4429-adda-18b0f29a2ef0/schemas/Coffee"
---

> Full API specification: https://devportal.jilson.dev/apis/coffee-api-basic-auth-1/versions/fda4cb4b-55ba-4429-adda-18b0f29a2ef0.md

# Coffee

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Coffee API
  version: 1.0.0
servers:
  - url: https://kong-a854e05124usljo2h.kongcloud.dev/
    description: Main server
components:
  schemas:
    Coffee:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the coffee
          example: a1b2c3d4-e5f6-7890-1234-567890abcdef
        name:
          type: string
          description: Name of the coffee
          example: Latte
        description:
          type: string
          description: Description of the coffee
          example: Rich and creamy coffee with steamed milk
        price:
          type: number
          format: float
          description: Price of the coffee
          example: 3.5
      required:
        - id
        - name
        - description
        - price
```
