AYLIEN · Schema

Concept

Single concept

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
surfaceForms array
support number Support factor
types array
View JSON Schema on GitHub

JSON Schema

text-api-Concept.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Concept",
  "type": "object",
  "description": "Single concept",
  "properties": {
    "surfaceForms": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/SurfaceForm"
      }
    },
    "support": {
      "type": "number",
      "description": "Support factor",
      "format": "int"
    },
    "types": {
      "type": "array",
      "items": {
        "type": "string",
        "description": "Concept type"
      }
    }
  }
}