AYLIEN · Schema

EntitySurfaceForm

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
text string The entity text
indices array The indices of the entity text
View JSON Schema on GitHub

JSON Schema

news-api-EntitySurfaceForm.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EntitySurfaceForm",
  "properties": {
    "text": {
      "description": "The entity text",
      "type": "string"
    },
    "indices": {
      "description": "The indices of the entity text",
      "items": {
        "items": {
          "format": "int32",
          "type": "integer"
        },
        "type": "array"
      },
      "type": "array"
    }
  },
  "type": "object"
}