AYLIEN · Schema

Hashtags

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
text object
language object
hashtags array Detected hashtags
View JSON Schema on GitHub

JSON Schema

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