Finlight · Schema

Article

A financial news article enriched with AI-driven sentiment analysis and company entity extraction

Financial NewsSentiment AnalysisMarket DataEquitiesCurrencyCommoditiesReal-TimeWebhookWebSocket

Properties

Name Type Description
link string Original URL of the article
title string Article headline
publishDate string Date and time when the article was published
source string Domain of the news source
language string ISO 639-1 language code
sentiment string AI-generated sentiment classification for the article
confidence number Confidence score for the sentiment classification (0.0 to 1.0)
summary string AI-generated brief summary of the article
images array URLs of images associated with the article
content string Full article content text
companies array Companies mentioned and extracted from the article
createdAt string Timestamp when Finlight ingested the article
revisedDate string Timestamp when the article was last revised by the publisher
isUpdate boolean Whether this article is an update to a previously published piece
categories array Content categories assigned to the article
countries array ISO 3166-1 alpha-2 country codes relevant to the article
View JSON Schema on GitHub

JSON Schema

article.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://finlight.me/schemas/article.json",
  "title": "Article",
  "description": "A financial news article enriched with AI-driven sentiment analysis and company entity extraction",
  "type": "object",
  "required": ["link", "title", "publishDate", "source", "language"],
  "properties": {
    "link": {
      "type": "string",
      "format": "uri",
      "description": "Original URL of the article"
    },
    "title": {
      "type": "string",
      "description": "Article headline"
    },
    "publishDate": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time when the article was published"
    },
    "source": {
      "type": "string",
      "description": "Domain of the news source"
    },
    "language": {
      "type": "string",
      "pattern": "^[a-z]{2}$",
      "description": "ISO 639-1 language code",
      "examples": ["en", "de", "fr", "es"]
    },
    "sentiment": {
      "type": "string",
      "enum": ["positive", "negative", "neutral"],
      "description": "AI-generated sentiment classification for the article"
    },
    "confidence": {
      "type": "number",
      "minimum": 0,
      "maximum": 1,
      "description": "Confidence score for the sentiment classification (0.0 to 1.0)"
    },
    "summary": {
      "type": "string",
      "description": "AI-generated brief summary of the article"
    },
    "images": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "description": "URLs of images associated with the article"
    },
    "content": {
      "type": "string",
      "description": "Full article content text"
    },
    "companies": {
      "type": "array",
      "items": {
        "$ref": "company.json"
      },
      "description": "Companies mentioned and extracted from the article"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when Finlight ingested the article"
    },
    "revisedDate": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the article was last revised by the publisher"
    },
    "isUpdate": {
      "type": "boolean",
      "description": "Whether this article is an update to a previously published piece"
    },
    "categories": {
      "type": "array",
      "items": {
        "$ref": "article-category.json"
      },
      "description": "Content categories assigned to the article"
    },
    "countries": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^[A-Z]{2}$"
      },
      "description": "ISO 3166-1 alpha-2 country codes relevant to the article"
    }
  },
  "additionalProperties": false
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/article"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.