AYLIEN · Schema

StoryCluster

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
id integer A unique identification for the cluster
phrases array Suggested labels for the cluster
score number The cluster score
size integer Size of the cluster
stories array Story ids which are in the cluster
View JSON Schema on GitHub

JSON Schema

news-api-StoryCluster.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StoryCluster",
  "properties": {
    "id": {
      "description": "A unique identification for the cluster",
      "format": "int64",
      "type": "integer"
    },
    "phrases": {
      "description": "Suggested labels for the cluster",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "score": {
      "description": "The cluster score",
      "format": "double",
      "type": "number"
    },
    "size": {
      "description": "Size of the cluster",
      "format": "int32",
      "type": "integer"
    },
    "stories": {
      "description": "Story ids which are in the cluster",
      "items": {
        "format": "int64",
        "type": "integer"
      },
      "type": "array"
    }
  },
  "type": "object"
}