AYLIEN · Schema

Media

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
content_length integer The content length of media
format object
height integer The height of media
type object
url string A URL which points to the media file
width integer The width of media
View JSON Schema on GitHub

JSON Schema

news-api-Media.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Media",
  "properties": {
    "content_length": {
      "description": "The content length of media",
      "format": "int32",
      "type": "integer"
    },
    "format": {
      "$ref": "#/components/schemas/MediaFormat"
    },
    "height": {
      "description": "The height of media",
      "format": "int32",
      "type": "integer"
    },
    "type": {
      "$ref": "#/components/schemas/MediaType"
    },
    "url": {
      "description": "A URL which points to the media file",
      "type": "string"
    },
    "width": {
      "description": "The width of media",
      "format": "int32",
      "type": "integer"
    }
  },
  "type": "object"
}