GenerateMenu
v1.0.0

This command event is fired when the food team has generated a new menu.
GenerateMenu Schema (yml)
openapi: 3.0.0
info:
  version: "1.0.0"
  title: GenerateMenu
paths: {}
components:
  schemas:
    GenerateMenu:
      type: object
      required:
        - metadata
        - data
      properties:
        data:
          $ref: "#/components/schemas/Data"
        metadata:
          $ref: "#/components/schemas/Metadata"
    Data:
      type: object
      required:
        - date
        - country
        - brand
        - kitchen
        - actor
      properties:
        date:
          type: string
        kitchen:
          type: string
        country:
          type: string
        brand:
          type: string
        actor:
          type: object
          required:
            - id
            - name
            - email
          properties:
            id: 
              type: string
            name:
              type: string
            email:
              type: string

    Metadata:
      type: object
      required:
        - version
      properties:
        version:
          type: string
Edit this pageLast updated on 2024/4/2