{
  "format": "ndjson",
  "definitions": {},
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "$id": "http://example.com/example.json",
  "type": "object",
  "default": {},
  "title": "Brandwatch artist ingestion schema",
  "required": [
    "analysis",
    "request",
    "resultId",
    "status"
  ],
  "properties": {
    "analysis": {
      "type": "object",
      "default": {},
      "title": "The analysis Schema",
      "required": [],
      "properties": {},
      "examples": [{}]
    },
    "request": {
      "type": "object",
      "default": {},
      "title": "The request Schema",
      "required": [
        "analysis",
        "keywords",
        "startDate",
        "endDate",
        "sources"
      ],
      "properties": {
        "analysis": {
          "type": "array",
          "default": [],
          "title": "The analysis Schema",
          "items": {},
          "examples": [
            []
          ]
        },
        "keywords": {
          "type": "string",
          "default": "",
          "title": "The keywords Schema",
          "examples": [
            "Adele"
          ]
        },
        "startDate": {
          "type": "string",
          "default": "",
          "title": "The startDate Schema",
          "examples": [
            "2021-04-13T00:00:00Z"
          ]
        },
        "endDate": {
          "type": "string",
          "default": "",
          "title": "The endDate Schema",
          "examples": [
            "2021-04-14T00:00:00Z"
          ]
        },
        "sources": {
          "type": "array",
          "default": [],
          "title": "The sources Schema",
          "items": {},
          "examples": [
            []
          ]
        }
      },
      "examples": [{
        "analysis": [],
        "keywords": "Adele",
        "startDate": "2021-04-13T00:00:00Z",
        "endDate": "2021-04-14T00:00:00Z",
        "sources": []
      }]
    },
    "resultId": {
      "type": "integer",
      "default": 0,
      "title": "The resultId Schema",
      "examples": [
        43429884720
      ]
    },
    "status": {
      "type": "string",
      "default": "",
      "title": "The status Schema",
      "examples": [
        "DONE"
      ]
    }
  },
  "examples": [{
    "analysis": {},
    "request": {
      "analysis": [],
      "keywords": "Adele",
      "startDate": "2021-04-13T00:00:00Z",
      "endDate": "2021-04-14T00:00:00Z",
      "sources": []
    },
    "resultId": 43429884720,
    "status": "DONE"
  }]
}