openapi: 3.2.0 info: title: Fast Get Shares API version: 0.1.0 tags: - name: GetShares paths: /getShares: get: summary: Get Shares operationId: get_shares_getShares_get parameters: - name: projectId in: query required: false schema: anyOf: - type: integer - type: 'null' title: Projectid - name: projectIds[] in: query required: false schema: type: array items: type: integer default: [] title: Projectids[] - name: page in: query required: false schema: type: integer default: 1 title: Page - name: pageSize in: query required: false schema: type: integer default: 25 title: Pagesize - name: sortBy in: query required: false schema: anyOf: - type: string - type: 'null' default: created_desc title: Sortby - name: search in: query required: false schema: anyOf: - type: string - type: 'null' title: Search - name: category in: query required: false schema: anyOf: - type: string - type: 'null' title: Category - name: type in: query required: false schema: anyOf: - type: string - type: 'null' title: Type - name: createdBy in: query required: false schema: anyOf: - type: string - type: 'null' title: Createdby - name: light in: query required: false schema: type: boolean default: false title: Light responses: '200': description: Successful Response content: application/json: schema: {} '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' tags: - GetShares components: schemas: ValidationError: properties: loc: items: anyOf: - type: string - type: integer type: array title: Location msg: type: string title: Message type: type: string title: Error Type type: object required: - loc - msg - type title: ValidationError HTTPValidationError: properties: detail: items: $ref: '#/components/schemas/ValidationError' type: array title: Detail type: object title: HTTPValidationError