AYLIEN · Schema

Entities

Entities root

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
text object
language object
entities object
View JSON Schema on GitHub

JSON Schema

text-api-Entities.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Entities",
  "type": "object",
  "description": "Entities root",
  "properties": {
    "text": {
      "$ref": "#/definitions/GenericInputText"
    },
    "language": {
      "$ref": "#/definitions/GenericInputLanguage"
    },
    "entities": {
      "type": "object",
      "properties": {
        "keyword": {
          "type": "array",
          "items": {
            "description": "Detected entity",
            "type": "string"
          }
        }
      }
    }
  }
}