openapi: 3.0.3 info: title: Factset Analytics Datastore About Link 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: Link paths: /v1/custom-symbols/{customSymbolId}/link-standard-symbol: post: tags: - Link summary: Factset Link Custom Symbol to Standard Symbol operationId: LinkCustomSymbolToStandardSymbol parameters: - name: customSymbolId in: path description: customSymbolId associated with custom symbol required: true schema: type: string format: uuid requestBody: description: standard symbol name content: application/json-patch+json: schema: $ref: '#/components/schemas/StandardSymbolDto' application/json: schema: $ref: '#/components/schemas/StandardSymbolDto' text/json: schema: $ref: '#/components/schemas/StandardSymbolDto' application/*+json: schema: $ref: '#/components/schemas/StandardSymbolDto' responses: '200': description: Success x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: StandardSymbolDto: required: - standardSymbol type: object properties: standardSymbol: type: string example: example_value additionalProperties: false securitySchemes: basicAuth: type: http scheme: basic externalDocs: url: https://developer.factset.com/api-catalog/analytics-datastore-api description: API Documentation