Factset · Schema

Error

A single error detail object.

FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch

Properties

Name Type Description
id string A UUID for this particular occurrence of the problem.
code string Error status code description.
title string The plain text error message.
links object The endpoint path for reference.
View JSON Schema on GitHub

JSON Schema

factset-fundamentals-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Error",
  "type": "object",
  "description": "A single error detail object.",
  "properties": {
    "id": {
      "type": "string",
      "description": "A UUID for this particular occurrence of the problem."
    },
    "code": {
      "type": "string",
      "description": "Error status code description."
    },
    "title": {
      "type": "string",
      "description": "The plain text error message."
    },
    "links": {
      "type": "object",
      "description": "The endpoint path for reference."
    }
  }
}