{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "uniqueItems": false,
      "items": {
        "type": "object",
        "properties": {
          "track_placement_key": {
            "type": "string",
            "minLength": 1
          },
          "order_number": {
            "type": "integer",
            "minimum": 0
          },
          "storeid": {
            "type": "integer",
            "minimum": 0
          },
          "playlist_title": {
            "type": "string",
            "minLength": 1
          },
          "playlist_author": {
            "type": "string",
            "minLength": 1
          },
          "playlist_link": {
            "type": "string",
            "minLength": 1
          },
          "streams": {
            "type": "integer",
            "minimum": 0
          },
          "unique_streams": {
            "type": "integer",
            "minimum": 0
          },
          "date_added": {
            "type": "string",
            "minLength": 1
          },
          "start_date": {
            "type": "string",
            "minLength": 1
          },
          "end_date": {
            "type": "string",
            "minLength": 1
          }
        },
        "required": [
          "track_placement_key",
          "order_number",
          "streams",
          "storeid",
          "unique_streams",
          "playlist_title",
          "playlist_author",
          "playlist_link",
          "date_added",
          "start_date",
          "end_date"
        ]
      }
    }
  },
  "required": [
    "items"
  ]
}
