{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.therealer.com/docs/api/schemas/http-feed-data-batch-response.schema.json",
  "title": "Realer HTTP feed-data batch response",
  "type": "object",
  "required": ["code", "status", "results"],
  "properties": {
    "code": {
      "type": "integer",
      "enum": [2000]
    },
    "status": {
      "type": "string",
      "enum": ["processed"]
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["item_index", "code", "status", "message_id"],
        "properties": {
          "item_index": { "type": "integer" },
          "code": { "type": "integer" },
          "status": { "type": "string" },
          "feed_data_id": { "type": "integer" },
          "message_id": { "type": "string" },
          "warnings": {
            "type": "array",
            "items": { "type": "string" }
          },
          "error": { "type": "object" }
        },
        "additionalProperties": true
      }
    }
  },
  "additionalProperties": true
}
