openapi: 3.0.3 info: title: Factset Analytics Datastore About Officer API description: Allow clients to fetch precalculated Analytics through predeterministic URLs. contact: name: FactSet Research Systems url: https://developer.factset.com/contact email: api@factset.com license: name: Apache License, Version 2.0 url: https://www.apache.org/licenses/LICENSE-2.0 version: 1.0.0 servers: - url: https://api.factset.com description: Production - url: https://api-sandbox.factset.com description: Sandbox security: - basicAuth: [] tags: - name: Officer paths: /company/board/officer/function/delivery/list: get: tags: - Officer operationId: get/company/board/officer/function/delivery/list x-supportsOffsetBasedPaging: false x-supportsOffsetBasedPagingWithoutTotal: false x-supportsCursorBasedPaging: false x-supportsCursorBasedPagingWithoutTotal: false x-supportsPush: false x-requiresUser: false x-requiresInternalClient: false x-disallowUser: false x-no-merge: false x-maxSortParameterCount: 10 x-supportsPermissionDeniedResponse: false summary: List of officer functions as provided by a delivery. description: List of officer functions as provided by a delivery. responses: '200': $ref: '#/components/responses/GetCompanyBoardOfficerFunctionDeliveryList200Response' parameters: - name: _attributes in: query schema: type: array items: type: string maxLength: 100 exclusiveMaximum: false uniqueItems: true maxItems: 50 style: form explode: false description: Limit the attributes returned in the response to the specified set. - name: _language in: query schema: type: string format: isoLanguage description: ISO 639-1 code of the language. maxLength: 2 minLength: 2 exclusiveMinimum: false exclusiveMaximum: false components: schemas: StatusObject: type: object properties: code: type: number format: int32 description: The HTTP status code of the response, mirroring the code from the Status-Line of the HTTP response message (see [RFC2616] section 6.1). description: The status member contains the status code of the response. required: - code responses: GetCompanyBoardOfficerFunctionDeliveryList200Response: description: Successful Response content: application/json: schema: type: object properties: data: description: List of deliveries, with their officer functions,sorted by name of the delivery and identifier of the function, both ascending. nullable: false type: array items: type: object nullable: false x-property-sort: - id - name - functions properties: id: nullable: true type: number format: id32 x-positive: true description: Identifier of a delivery. name: nullable: true type: string description: Name of the delivery. functions: nullable: false description: List of officer functions. type: array items: type: object nullable: false x-property-sort: - id - name properties: id: nullable: true type: number format: id32 x-positive: true description: Identifier of a function. name: nullable: true type: string format: localizedString description: Name of the function. meta: type: object description: The meta member contains the meta information of the response. properties: status: $ref: '#/components/schemas/StatusObject' x-property-sort: - status securitySchemes: basicAuth: type: http scheme: basic externalDocs: url: https://developer.factset.com/api-catalog/analytics-datastore-api description: API Documentation