/menu-template/pdf/{storeid}/{id}/{token}:
  get:
    tags:
      - menuTemplate
    description: Return the menu template with given id
    operationId: loadMenuTemplate
    security:
      - bearerAuth: []
    parameters:
      - $ref#storeid: "./parameters/storeid.yaml"
      - $ref#id: "./parameters/objectid.yaml"
      - name: token
        in: path
        required: true
        description: authorization token
        schema:
          type: string
    responses:
      $ref#4xx: "./responses/4xx.yaml"
      200:
        description: template as pdf
        content:
          application/pdf:
            schema:
              type: string
              format: binary
