AYLIEN · Schema

Article

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
author string Article author name
image string Article image
article string Article text
title string Article title
publishDate string Article publication date
tags array Article tags
videos array Attached videos
feeds array Related feeds
View JSON Schema on GitHub

JSON Schema

text-api-Article.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Article",
  "type": "object",
  "properties": {
    "author": {
      "description": "Article author name",
      "type": "string"
    },
    "image": {
      "description": "Article image",
      "type": "string"
    },
    "article": {
      "description": "Article text",
      "type": "string"
    },
    "title": {
      "description": "Article title",
      "type": "string"
    },
    "publishDate": {
      "description": "Article publication date",
      "type": "string",
      "format": "date-time"
    },
    "tags": {
      "description": "Article tags",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "videos": {
      "description": "Attached videos",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "feeds": {
      "description": "Related feeds",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}