2 Commits

Author SHA1 Message Date
770ee003e7 Add message-envelope type
All checks were successful
Generate and Release Protos / release (push) Successful in 27s
2026-01-14 18:51:14 +00:00
a5675b1442 Add 'service_id' field. Used to include the message senders hostname
All checks were successful
Generate and Release Protos / release (push) Successful in 26s
2026-01-13 18:54:10 +00:00
2 changed files with 37 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
{
"$id": "https://schema.owlboard.info/data-ingress/message-envelope.schema.json",
"$schema": "https://json-schema.org/draft-07/schema#",
"title": "MessageEnvelope",
"type": "object",
"properties": {
"service_name": {
"type": "string",
"description": "Name of the service submitting the update"
},
"service_id": {
"type": "string",
"description": "ID of the service sending the message - usually a hostname"
},
"data_type": {
"type": "string",
"enum": ["file"],
"description": "The type of data contained in this message object"
},
"sent_timestamp": {
"type": "integer",
"description": "Unix timestamp representing the time the message was sent"
},
"data_kind": {
"type": "string",
"enum": ["pis", "timetable", "knowledgebase"],
"description": "The data type contained in the message. Currently supported PIS: PIS Data, Timetable: CIF or VSTP Data, Knowledgebase: Station Data"
}
},
"required": ["service_name", "service_id", "data_type", "sent_timestamp"],
"additionalProperties": true
}

View File

@@ -8,6 +8,10 @@
"type": "string", "type": "string",
"description": "Name of the service submitting the update" "description": "Name of the service submitting the update"
}, },
"service_id": {
"type": "string",
"description": "ID of the service sending the message - usually a hostname"
},
"data_type": { "data_type": {
"type": "string", "type": "string",
"enum": ["file"], "enum": ["file"],
@@ -38,6 +42,6 @@
"additionalProperties": false "additionalProperties": false
} }
}, },
"required": ["service_name", "data_type", "sent_timestamp", "data_kind", "payload"], "required": ["service_name", "service_id", "data_type", "sent_timestamp", "data_kind", "payload"],
"additionalProperties": false "additionalProperties": false
} }