swagger: '2.0'
info:
  description: Practice User API
  version: '1.0'
  title: Practice User API
host: localhost:4502
schemes:
  - http
paths:
  /content/azuredemo/api/getSearchFields/jcr:content.json:
    get:
      summary: Get Searchable fieldsfor a given form path
      description: Returns searhable fields for a given form
      operationId: getSearchableFields
      parameters:
        - name: formPath
          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/MetaDataTags'
definitions:
  MetaDataTags:
    type: object
    properties:
      fieldName:
        type: string
      fieldPath:
        type: string
