AYLIEN · Schema

Entity

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
id string The unique ID of the entity
indices array The indices of the entity text
links object
text string The entity text
stock_ticker string The stock_ticker of the entity (might be null)
types array An array of the entity types
sentiment object
surface_forms array
View JSON Schema on GitHub

JSON Schema

news-api-Entity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Entity",
  "properties": {
    "id": {
      "description": "The unique ID of the entity",
      "type": "string"
    },
    "indices": {
      "description": "The indices of the entity text",
      "items": {
        "items": {
          "format": "int32",
          "type": "integer"
        },
        "type": "array"
      },
      "type": "array"
    },
    "links": {
      "$ref": "#/components/schemas/EntityLinks"
    },
    "text": {
      "description": "The entity text",
      "type": "string"
    },
    "stock_ticker": {
      "description": "The stock_ticker of the entity (might be null)",
      "type": "string"
    },
    "types": {
      "description": "An array of the entity types",
      "items": {
        "description": "An entity type",
        "type": "string"
      },
      "type": "array"
    },
    "sentiment": {
      "$ref": "#/components/schemas/EntitySentiment"
    },
    "surface_forms": {
      "items": {
        "$ref": "#/components/schemas/EntitySurfaceForm"
      },
      "type": "array"
    }
  },
  "type": "object"
}