AYLIEN · Schema

Entities

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
body array An array of extracted entities from the story body
title array An array of extracted entities from the story title
View JSON Schema on GitHub

JSON Schema

news-api-Entities.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Entities",
  "properties": {
    "body": {
      "description": "An array of extracted entities from the story body",
      "items": {
        "$ref": "#/components/schemas/Entity"
      },
      "type": "array"
    },
    "title": {
      "description": "An array of extracted entities from the story title",
      "items": {
        "$ref": "#/components/schemas/Entity"
      },
      "type": "array"
    }
  },
  "type": "object"
}