Taste Taste Engine API API

The Taste Engine API API from Taste — 1 operation(s) for taste engine api.

OpenAPI Specification

taste-taste-engine-api-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Taste Engine health Taste Engine API API
  description: API for extracting design guidelines and generating creative briefs
  version: 1.0.0
tags:
- name: Taste Engine API
paths:
  /:
    get:
      summary: Root
      description: Root endpoint.
      operationId: root__get
      parameters:
      - name: Authorization
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Taste Engine API
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError