openapi: 3.0.3 info: title: Factset Analytics Datastore About Sentiments 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: Sentiments paths: /v1/sentiments: get: tags: - Sentiments summary: Factset Get All Sentiments operationId: GetSentiments responses: '200': description: Success content: application/json: schema: type: array items: $ref: '#/components/schemas/SentimentConfigDto' x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: SentimentConfigDto: type: object properties: id: type: string format: uuid example: abc123 name: type: string nullable: true example: Example Title code: type: integer format: int32 example: 10 color: type: string nullable: true example: example_value isHidden: type: boolean example: true additionalProperties: false securitySchemes: basicAuth: type: http scheme: basic externalDocs: url: https://developer.factset.com/api-catalog/analytics-datastore-api description: API Documentation