swagger: '2.0'
info:
  description: Get forms in a specified folder
  version: '1.0'
  title: List forms in a specified folder
host: localhost:4502
schemes:
  - http
paths:
  /content/azuredemo/api/listFormsInFolder/jcr:content.json:
    get:
      summary: Get list of forms in a specified folder
      description: Returns list of forms in specified folder 
      operationId: listFormsInFolder
      parameters:
        - name: folderPath
          type: string
          in: query
          required: true
          description: Form Path
      consumes:
        - application/json
      produces:
        - application/json
      responses:
        '200':
          description: OK
          schema:
              type: array
              items:
                $ref: '#/definitions/Forms'
definitions:
  Forms:
    type: object
    properties:
      formPath:
        type: string
      formTitle:
        type: string
