openapi: 3.0.3 info: title: Factset Analytics Datastore About Tenant 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: Tenant paths: /v1/{tenant}/data-sources: get: operationId: getAllDataSources tags: - Tenant summary: Factset Lists All Datasources description: List all datasources the user has permission to see parameters: - in: path name: tenant description: The code of the tenancy schema: type: string required: true - in: query name: _sort description: The column to sort on. Append - to sort in descending order. If parameter is not given, no sorting will be done required: false style: form explode: false schema: type: array maxItems: 1 items: type: string examples: name: value: - name description: The name of the datasource to sort type: value: - type description: The type of the datasource to sort outputRecordSet: value: - outputRecordSet description: The output recordset of the datasource to sort code: value: - code description: The code of the datasource to sort releaseTag: value: - releaseTag description: The release tag of the datasource to sort lastUpdatedBy: value: - lastUpdatedBy description: The last updated by user of the datasource to sort lastUpdated: value: - lastUpdated description: The last updated by date of the datasource to sort - in: query name: _paginationLimit description: Non-negative maximum number of entries to return. Default is 25 schema: type: integer examples: pageSize: value: 25 description: Non-negative maximum number of entries to return - in: query name: _paginationOffset description: Non-negative number of entries to skip. Default is 0 schema: type: integer examples: startIndex: value: 0 description: Non-negative number of entries to skip responses: '200': description: Successful operation content: application/json: schema: $ref: '#/components/schemas/DataSourceList' '401': description: Unauthorised content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthenticated title: User is not authenticated '403': description: No permissions to view datasources in VRS content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthorized title: No permissions to view this item '406': description: Unsupported Accept header. Header needs to be set to application/json. content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAcceptable title: Unsupported Accept header. Header needs to be set to application/json x-microcks-operation: delay: 0 dispatcher: FALLBACK /v1/{tenant}/data-sources/{dataSourceCode}: get: operationId: getDataSourceByCode tags: - Tenant summary: Factset Gets a Datasource description: Gets a datasource based on the code passed parameters: - in: path name: tenant description: The code of the tenancy schema: type: string required: true - in: path name: dataSourceCode description: The code of the datasource schema: type: string required: true responses: '200': description: Successful operation content: application/json: schema: $ref: '#/components/schemas/DataSourceData' '401': description: Unauthorised content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthenticated title: User is not authenticated '403': description: No permissions to view datasources in VRS content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthorized title: No permissions to view this item '404': description: The supplied datasource code was not found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notFound title: The datasource code passed was not found '406': description: Unsupported Accept header. Header needs to be set to application/json. content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAcceptable title: Unsupported Accept header. Header needs to be set to application/json x-microcks-operation: delay: 0 dispatcher: FALLBACK /v1/{tenant}/data-sources/{dataSourceCode}/data: get: operationId: getDataSourceData tags: - Tenant summary: Factset Gets the Data for the Datasource description: Gets the data for the datasource. There are optional query parameters to filter the data parameters: - in: path name: tenant description: The code of the tenancy schema: type: string required: true - in: path name: dataSourceCode description: The code of the datasource schema: type: string required: true - in: query name: entityCodes description: 'A series of query parameter used to filter the data for a datasource. This represents the entities for the datasource. E.g.: entityCodes=ACCOUNT&entityCodes=FUNDS' schema: type: string - in: query name: entityKeys description: 'A series of query parameter used to filter the data for a datasource. This is the entity key value for an entity selection. E.g.: entityKeys=1&entityKeys=Test2' schema: type: string - in: query name: _paginationLimit description: Non-negative maximum number of entries to return. Default is 25 schema: type: integer examples: pageSize: value: 25 description: Non-negative maximum number of entries to return - in: query name: _paginationOffset description: Non-negative number of entries to skip. Default is 0 schema: type: integer examples: startIndex: value: 0 description: Non-negative number of entries to skip responses: '200': description: Successful operation - returns data for the datasource content: application/json: schema: $ref: '#/components/schemas/DataSourceDataInstance' '400': description: The supplied datasource code was either missing or invalid, or the query parameters are invalid content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: parameterError title: The datasource code passed was invalid '401': description: Unauthorised content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthenticated title: User is not authenticated '403': description: No permissions to view datasources in VRS content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthorized title: No permissions to view this item '404': description: The supplied datasource code was not found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notFound title: The datasource code passed was not found '406': description: Unsupported Accept header. Header needs to be set to application/json. content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAcceptable title: Unsupported Accept header. Header needs to be set to application/json x-microcks-operation: delay: 0 dispatcher: FALLBACK /v1/{tenant}/entities/{entityCode}/values: get: operationId: getEntityValuesByCode tags: - Tenant summary: Factset Gets the Entity Values description: Gets the entity values for the specified entity parameters: - in: path name: tenant description: The code of the tenancy schema: type: string required: true - in: path name: entityCode description: The code of the entity schema: type: string required: true - in: query name: _sort description: The entity field to sort on. Can only be sorted on entity key, description or secondary key fields. Append "-" to sort in descending order. If no parameter given, it will be sorted by key field in ascending order by default required: false style: form explode: false schema: type: array maxItems: 1 items: type: string examples: entity key field: value: - entity key field description: The name of the entity key field entity description field: value: - entity description field description: The name of the entity description field entity secondary key field: value: - entity secondary key field description: The name of the entity secondary key field - in: query name: _paginationLimit description: Non-negative maximum number of entries to return. Default is 25 schema: type: integer examples: pageSize: value: 25 description: Non-negative maximum number of entries to return - in: query name: _paginationOffset description: Non-negative number of entries to skip. Default is 0 schema: type: integer examples: startIndex: value: 0 description: Non-negative number of entries to skip - in: query name: showAll description: Whether to show all field values for each entity row. Value should either be 1 or 0. Default is 0 (false) schema: type: integer examples: showAll: value: 1 description: 'Show all field values in a JSON array named "fieldsWithValues", with each array value being a string in the format of "** : **". Both key and description field values will be included in this JSON array too.' responses: '200': description: Successful operation content: application/json: schema: $ref: '#/components/schemas/EntityFieldValueDTO' '400': description: The supplied entity code was either missing or invalid, or the entity was not found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: parameterError title: The entity code passed was invalid '401': description: Unauthorised content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthenticated title: User is not authenticated '403': description: No permissions to view datasources in VRS content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthorized title: No permissions to view this item '404': description: The supplied entity code was not found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notFound title: The entity code passed was not found '406': description: Unsupported Accept header. Header needs to be set to application/json. content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAcceptable title: Unsupported Accept header. Header needs to be set to application/json x-microcks-operation: delay: 0 dispatcher: FALLBACK /v1/{tenant}/reports: get: operationId: getAllReportDefinitions tags: - Tenant summary: Factset Gets All Report Definitions description: Gets all report definitions the user has permissions for parameters: - in: path name: tenant description: The code of the tenancy schema: type: string required: true - in: query name: _sort description: The column to sort on. Can add - to sort required: false style: form explode: false schema: type: array maxItems: 1 items: type: string examples: name: value: - name description: The name of the report to sort type: value: - templateOwner description: The template owner of the report to sort code: value: - code description: The code of the report to sort releaseTag: value: - releaseTag description: The release tag of the report to sort lastUpdatedBy: value: - lastUpdatedBy description: The last updated by user of the report to sort lastModifiedBy: value: - lastModifiedBy description: The last updated by date of the report to sort - in: query name: _paginationLimit description: Non-negative maximum number of entries to return schema: type: integer examples: pageSize: value: 25 description: Non-negative maximum number of entries to return - in: query name: _paginationOffset description: Non-negative number of entries to skip schema: type: integer examples: startIndex: value: 0 description: Non-negative maximum number of entries to return responses: '200': description: Successful operation content: application/json: schema: $ref: '#/components/schemas/ReportDefinitionList' '400': description: The supplied report definition code was either missing or invalid, or the report definition was not found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: parameterError title: The report definition code passed was invalid '401': description: Unauthorised content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthenticated title: User is not authenticated '403': description: No permissions to view reports in VRS content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthorized title: No permissions to view this item '406': description: Unsupported Accept header. Header needs to be set to application/json. content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAcceptable title: Unsupported Accept header. Header needs to be set to application/json x-microcks-operation: delay: 0 dispatcher: FALLBACK /v1/{tenant}/reports/{reportDefinitionCode}: get: operationId: getReportDefinitionByCode tags: - Tenant summary: Factset Gets a Report Definition description: Gets a report defintion based on the code specified parameters: - in: path name: tenant description: The code of the tenancy schema: type: string required: true - in: path name: reportDefinitionCode description: The code of the report definition required: true schema: type: string responses: '200': description: Successful operation content: application/json: schema: $ref: '#/components/schemas/ReportDefinitionData' '400': description: The supplied report definition code was either missing or invalid, or the report definition was not found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: parameterError title: The report definition code passed was invalid '401': description: Unauthorised content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthenticated title: User is not authenticated '403': description: No permissions to view reports in VRS content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthorized title: No permissions to view this item '404': description: The supplied report definition code was was not found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notFound title: The report definition code passed was not found '406': description: Unsupported Accept header. Header needs to be set to application/json. content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAcceptable title: Unsupported Accept header. Header needs to be set to application/json x-microcks-operation: delay: 0 dispatcher: FALLBACK /v1/{tenant}/report-instances/{reportInstanceId}: delete: operationId: cancelReport tags: - Tenant summary: Factset Cancels a Report Generation description: Sends a request to cancel a report generation based on the report instance id passed parameters: - in: path name: tenant description: The code of the tenancy schema: type: string required: true - in: path name: reportInstanceId description: The id of the report instance required: true schema: type: string responses: '204': description: Successful operation - no response '400': description: The supplied report instance id was either missing or invalid content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: parameterError title: The ID passed is not a numerical value '401': description: Unauthorised content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthenticated title: User is not authenticated '403': description: No permissions to view reports in VRS content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthorized title: No permissions to view this item '404': description: The supplied report instance ID could not be found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notFound title: The report definition code passed was not found '406': description: Unsupported Accept header. Header needs to be set to application/json. content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAcceptable title: Unsupported Accept header. Header needs to be set to application/json x-microcks-operation: delay: 0 dispatcher: FALLBACK get: operationId: getReportInstanceById tags: - Tenant summary: Factset Gets a Report Instance Based on the Id description: Gets a report instance object based on the ID passed parameters: - in: path name: reportInstanceId description: The ID of the report instance schema: type: string required: true - in: path name: tenant description: The code of the tenancy schema: type: string required: true responses: '200': description: Report generation has completed and the report is ready to download headers: Location: schema: type: string description: A callback URL to the report file on VRS ready to download '202': description: Expected response returned if the report generation is not yet completed. content: application/json: schema: $ref: '#/components/schemas/ReportInstanceData' '400': description: The supplied report instance id was either missing or invalid, or the report instance was not found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: parameterError title: The ID passed is not a numerical value '401': description: Unauthorised content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthenticated title: User is not authenticated '403': description: No permissions to view reports in VRS content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthorized title: No permissions to view this item '404': description: The supplied report instance ID could not be found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notFound title: The report definition code passed was not found '406': description: Unsupported Accept header. Header needs to be set to application/json. content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAcceptable title: Unsupported Accept header. Header needs to be set to application/json x-microcks-operation: delay: 0 dispatcher: FALLBACK /v1/{tenant}/report-instances: get: operationId: getAllReportInstances tags: - Tenant summary: Factset Gets a List of Report Instances description: Gets a list of report instances. This can be filtered down further by including query parameters in the URL. For example, a report definition id can be added so the only report instances returned are the ones with a matching id parameters: - in: path name: tenant description: The code of the tenancy schema: type: string required: true - in: query name: reportDefinitionCode description: Acts as a filter for the retrieval process. Filters the report instances that match the report definition code schema: type: string - in: query name: entityCodes description: 'A series of query parameters used to filter the report instances by entity code. E.g: entityCode=DATE&entityCode=SYSTEM_LANG' schema: type: string - in: query name: entityKeys description: 'A series of query parameters used to filter the report instances by entity keys. E.g: entityKey=en-gb' schema: type: string - in: query name: sectionFilter description: Acts as a filter for the retrieval process. Filters the report instances that match the section filter schema: type: string - in: query name: outputFormat description: Acts as a filter for the retrieval process. Filters the report instances that match the output format schema: type: string - in: query name: _sort description: The column to sort on. Append - to sort in descending order. If parameter is not given, sorting will be based on the report instance id in descending order required: false style: form explode: false schema: type: array maxItems: 1 items: type: string examples: reportInstanceId: value: - reportInstanceId description: The id of report instance to sort reportStatus: value: - reportStatus description: The status of the report to sort startDate: value: - startDate description: The start date of the report to sort finishDate: value: - finishDate description: The finish date of the report to sort signOffStatus: value: - signOffStatus description: The sign off status of the report to sort outputFormat: value: - outputFormat description: The output format of report to sort - in: query name: _paginationLimit description: Non-negative maximum number of entries to return schema: type: integer examples: pageSize: value: 25 description: Non-negative maximum number of entries to return - in: query name: _paginationOffset description: Non-negative number of entries to skip schema: type: integer examples: startIndex: value: 0 description: Non-negative maximum number of entries to return responses: '200': description: Successful operation content: application/json: schema: $ref: '#/components/schemas/ReportInstanceList' '401': description: Unauthorised content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthenticated title: User is not authenticated '403': description: No permissions to view reports in VRS content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthorized title: No permissions to view this item '406': description: Unsupported Accept header. Header needs to be set to application/json. content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAcceptable title: Unsupported Accept header. Header needs to be set to application/json x-microcks-operation: delay: 0 dispatcher: FALLBACK /v1/{tenant}/report-instances/{reportInstanceId}/results/{reportFileName}: get: operationId: getReportFile tags: - Tenant summary: Factset Gets the Generated File description: Get the generated file for a report instance. Users can fetch the generated report once the genration is finished. The report instance id and the report file name are passed in as path paramters parameters: - in: path name: tenant description: The code of the tenancy schema: type: string required: true - in: path name: reportInstanceId description: Used to validate that report file name belongs to the report instance passed schema: type: string required: true - in: path name: reportFileName description: 'The report file name that has to be retrieved. report file name. E.g: xyz.pdf' schema: type: string required: true responses: '200': description: Successful operation '400': description: The supplied report instance id was either missing or invalid or the report instance was not found. The supplied report file name was either invalid or not found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: parameterError title: The ID passed is not a numerical value '401': description: Unauthorised content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthenticated title: User is not authenticated '403': description: No permissions to view the generated file in VRS content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthorized title: No permissions to view this item '406': description: Unsupported Accept header. Header needs to be set to application/json. content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAcceptable title: "Unsupported Accept header. Header needs to be set to\n application/json" x-microcks-operation: delay: 0 dispatcher: FALLBACK /v1/{tenant}/report-instances/{reportInstanceId}/logs: get: operationId: getReportGenerationLogs tags: - Tenant summary: Factset Gets a List of Logs for the Report Instance Generation description: Gets a list of logs for the generated report instance. Allows the user to sort on log message, type and date. Also allows for retrieving of just the errors & warnings' parameters: - in: path name: tenant description: The code of the tenancy schema: type: string required: true - in: path name: reportInstanceId description: Used to validate that report file name belongs to the report instance passed schema: type: string required: true - in: query name: errorsOnly description: 'If the parameter is set to true the endpoint should return just errors and warnings E.g: errorsOnly=true' schema: type: string - in: query name: _sort description: The column to sort on. Can add - to sort required: false style: form explode: false schema: type: array maxItems: 1 items: type: string examples: sequenceNumber: value: - sequenceNumber description: The sequence number of the log entry message: value: - message description: The log message to sort type: value: - type description: The type of the log to sort updatedDate: value: - updatdeDate description: The updated date of the log to sort - in: query name: _paginationLimit description: Non-negative maximum number of entries to return schema: type: integer examples: pageSize: value: 25 description: Non-negative maximum number of entries to return - in: query name: _paginationOffset description: Non-negative number of entries to skip schema: type: integer examples: startIndex: value: 0 description: Non-negative maximum number of entries to return responses: '200': description: Successful operation content: application/json: schema: $ref: '#/components/schemas/ReportInstanceLogList' '401': description: Unauthorised content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthenticated title: User is not authenticated '403': description: No permissions to view reports in VRS content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAuthorized title: No permissions to view this item '404': description: The supplied report instance ID could not be found content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notFound title: The report instance ID passed was not found '406': description: Unsupported Accept header. Header needs to be set to application/json. content: application/json: schema: $ref: '#/components/schemas/ErrorList' example: errors: - id: ID of the error code: notAcceptable title: "Unsupported Accept header. Header needs to be set to\n application/json" x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: ReportDefinitionList: type: object properties: meta: type: object properties: pagination: type: object properties: total: type: integer isEstimatedTotal: type: boolean example: example_value data: type: array items: $ref: '#/components/schemas/ReportDefinitionDTO' example: [] DataSourceDataInstance: type: object properties: data: $ref: '#/components/schemas/DataSourceAllData' ReportInstanceDTO: type: object properties: reportInstanceId: type: integer format: int32 example: '500123' reportDefinitionId: type: integer format: int32 example: '500123' reportDefinitionName: type: string example: example_value reportName: type: string example: example_value userFriendlyReportName: type: string example: example_value extension: type: string example: example_value reportRevision: $ref: '#/components/schemas/ReportRevisionDTO' name: type: string example: Example Title DataSourceInstance: type: object properties: dstInstanceId: type: integer example: '500123' dstInstanceType: type: integer example: 10 rows: type: array items: $ref: '#/components/schemas/DataSourceInstanceRows' example: [] EntityDTO: type: object properties: entityId: type: integer format: int32 example: '500123' name: type: string example: Example Title code: type: string example: example_value DataSourceAllData: type: object properties: fields: type: array items: $ref: '#/components/schemas/RecordSetFields' example: [] dstInstance: $ref: '#/components/schemas/DataSourceInstance' Error: type: object properties: id: type: string example: abc123 code: type: string example: example_value title: type: string example: Example Title DataSourceList: type: object properties: meta: type: object properties: pagination: type: object properties: total: type: integer isEstimatedTotal: type: boolean sort: type: array items: type: string example: example_value data: type: array items: $ref: '#/components/schemas/DataSourceDTO' example: [] DataSourceInstanceRows: type: object properties: rowId: type: integer example: '500123' order: type: integer example: 10 fields: type: array items: $ref: '#/components/schemas/RecordSetFieldValues' example: [] ReportInstanceData: type: object properties: data: $ref: '#/components/schemas/ReportInstanceDTO' ReportInstanceLogList: type: object properties: data: type: array items: $ref: '#/components/schemas/ReportInstanceLogDTO' example: [] DataSourceDTO: type: object properties: dataSourceId: type: integer format: int32 example: '500123' name: type: string example: Example Title code: type: string example: example_value dsType: type: string enum: - AUTOMATIC - MANUAL - FILTER example: AUTOMATIC entities: type: array items: $ref: '#/components/schemas/EntityDTO' example: [] outputRecordSet: type: string example: example_value releaseTag: type: string example: example_value defaultDataSourceName: type: string example: example_value dataPreview: type: string example: example_value lastUpdatedBy: type: string example: example_value lastUpdated: type: number example: 42.5 ReportRevisionDTO: type: object properties: reportStatus: type: string enum: - WAITING - STARTING - RETRIEVING_REQUEST - CONTENT_FILTER - STYLE_PROCESSING - RULE_PROCESSING - GETTING_DATA - RI_PROCESSING - COMPILE - SUBSTITUTION - TRANSLATION - GRID_PROCESSING - CHART_PROCESSING - IMPORTED_FILE_PROCESSING - TEXT_PROCESSING_STATUS - TOC_PROCESSING_STATUS - COMPONENT_PROCESSING - POST_PROCESSING - POSTING_TO_WRS - RENDERING - ABORTED - COMPLETED - COMPLETED_CAUTIONS - COMPLETED_ERROR - COMPLETED_MODIFYING - COMPLETED_CHANGED - DELETING - REPORT_ORIGINAL_GENERATION - REPORT_PREVIOUS_REVISION - GENERATING example: WAITING startDate: type: string example: example_value finishDate: type: string example: example_value signOffStatus: type: string enum: - REJECTED - PENDING - APPROVED example: REJECTED signOffNotes: type: string example: example_value reportReasonCd: type: string example: example_value description: type: string example: A sample description. languageCode: type: string example: example_value outputFormat: type: string example: example_value percentageComplete: type: integer format: int32 example: 10 EntityFieldValueDTO: type: object properties: meta: type: object properties: pagination: type: object properties: total: type: integer isEstimatedTotal: type: boolean sort: type: array items: type: string example: example_value data: type: array items: properties: entityRowId: type: integer keyValue: type: string descriptionValue: type: string fieldsWithValues: type: array items: type: string example: [] RecordSetFieldValues: type: object properties: fieldId: type: integer example: '500123' fieldType: type: string enum: - BOOLEAN - DATETIME - DECIMAL - HTML - INTEGER - TEXT example: BOOLEAN fieldValue: type: string example: example_value ReportDefinitionDTO: type: object properties: name: type: string example: Example Title code: type: string example: example_value releaseTag: type: string example: example_value entities: type: array items: $ref: '#/components/schemas/EntityDTO' example: [] ReportInstanceList: type: object properties: meta: type: object properties: pagination: type: object properties: total: type: integer isEstimatedTotal: type: boolean example: example_value data: type: array items: $ref: '#/components/schemas/ReportInstanceDTO' example: [] ErrorList: type: object properties: errors: type: array items: $ref: '#/components/schemas/Error' example: [] ReportDefinitionData: type: object properties: data: $ref: '#/components/schemas/ReportDefinitionDTO' DataSourceData: type: object properties: data: $ref: '#/components/schemas/DataSourceDTO' ReportInstanceLogDTO: type: object properties: sequenceNumber: type: integer format: int32 example: 10 message: type: string example: example_value type: type: string enum: - LOG - ERROR example: LOG updateDate: type: string example: example_value RecordSetFields: type: object properties: fieldType: type: string enum: - BOOLEAN - DATETIME - DECIMAL - HTML - INTEGER - TEXT example: BOOLEAN format: type: string example: example_value id: type: integer example: abc123 hide: type: string example: example_value name: type: string example: Example Title securitySchemes: basicAuth: type: http scheme: basic externalDocs: url: https://developer.factset.com/api-catalog/analytics-datastore-api description: API Documentation