{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.therealer.com/docs/api/schemas/mqtt-feed-data-publish.schema.json",
  "title": "Realer MQTT feed-data publish payload",
  "type": "object",
  "required": ["message_id", "value", "value_received_at"],
  "properties": {
    "message_id": { "type": "string" },
    "value": { "type": "string" },
    "value_received_at": { "type": "string", "format": "date-time" },
    "desired_id": { "type": "string" },
    "report_status": {
      "type": "string",
      "enum": ["reported", "applied", "rejected", "stale"]
    },
    "sequence_number": { "type": "integer" }
  },
  "additionalProperties": true
}
