
/**
 * @openapi
 * definitions:
*   DeviceRegistration:
 *     type: object
 *     properties:
 *       username:
 *         type: string
 *         example: karthik
 *       device_name:
 *         type: string
 *         example: apple
 *       device_unique_id:
 *         type: string
 *         example: 1001
 * 
 * */

/**
 * @openapi
 * /app/test:
 *   get:
 *     tags:
 *       - Test
 *     summary: Test API
 *     responses:
 *       200:
 *         description: OK
 *     security:
 *       - AccessToken: []
 *       - Language: []
 */

/**
 * @openapi
 * /app/device-registration:
 *   post:
 *     tags:
 *       - Mobile device registration
 *     summary: Mobile device registration.
 *     requestBody:
 *       content:
 *         'application/json':
 *           schema:
 *             $ref: '#/definitions/DeviceRegistration'
 *     responses:
 *       200:
 *         description: OK
 *     security:
 *       - AccessToken: []
 *       - Language: []
 */