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