Finlight · Schema

Source

A financial news source available in the Finlight platform

Financial NewsSentiment AnalysisMarket DataEquitiesCurrenciesCommoditiesReal-TimeWebhooksWebSocket

Properties

Name Type Description
domain string Domain name of the news source
isContentAvailable boolean Whether full article content can be retrieved from this source
isDefaultSource boolean Whether this source is included in the default source set when no sources filter is specified
View JSON Schema on GitHub

JSON Schema

source.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://finlight.me/schemas/source.json",
  "title": "Source",
  "description": "A financial news source available in the Finlight platform",
  "type": "object",
  "required": ["domain", "isContentAvailable", "isDefaultSource"],
  "properties": {
    "domain": {
      "type": "string",
      "description": "Domain name of the news source",
      "examples": ["reuters.com", "bloomberg.com", "wsj.com"]
    },
    "isContentAvailable": {
      "type": "boolean",
      "description": "Whether full article content can be retrieved from this source"
    },
    "isDefaultSource": {
      "type": "boolean",
      "description": "Whether this source is included in the default source set when no sources filter is specified"
    }
  },
  "additionalProperties": false
}