openapi: 3.0.3
info:
  title: Tatari Puhastus Services API
  description: Live upholstery cleaning prices for Tatari Puhastus (CarpetPro OÜ). Synced with website calculator.
  version: "1.0.0"
  contact:
    name: Tatari Puhastus
    url: https://tataripuhastus.ee
    email: TatariPuhastus@gmail.com
servers:
  - url: https://tataripuhastus.ee
paths:
  /api/services.json:
    get:
      summary: Service catalog with prices
      operationId: getServices
      responses:
        "200":
          description: JSON catalog
          content:
            application/json:
              schema:
                type: object
                properties:
                  currency:
                    type: string
                    example: EUR
                  bookingUrl:
                    type: string
                  fees:
                    type: object
                  services:
                    type: array
                    items:
                      type: object
  /api/prices.csv:
    get:
      summary: Downloadable price list (CSV)
      operationId: getPricesCsv
      responses:
        "200":
          description: CSV file
          content:
            text/csv:
              schema:
                type: string
