/app/store/{storeid}/screens:
  get:
    tags:
      - screen
    description: return list of available DS Screen inside a store
    operationId: listDSScreen
    parameters:
      - $ref#storeid: "../parameters/storeid.yaml"
    responses:
      $ref#4xx: "../responses/4xx.yaml"
      200:
        description: list of screens
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: "#/components/schemas/DSScreen"

/app/store/{storeid}/screen/{screenid}:
  get:
    tags:
      - screen
    description: return detail of a DS Screen
    operationId: loadDSScreen
    parameters:
      - $ref#storeid: "../parameters/storeid.yaml"
      - name: screenid
        in: path      
        required: true
        description: The screen id to load for
        schema:
          type: string
    responses:
      $ref#4xx: "../responses/4xx.yaml"
      200:
        description: The screen detail information
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/DSScreen"