Add 'service_id' field. Used to include the message senders hostname
All checks were successful
Generate and Release Protos / release (push) Successful in 26s

This commit is contained in:
2026-01-13 18:54:10 +00:00
parent a927ccc732
commit a5675b1442

View File

@@ -8,6 +8,10 @@
"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"],
@@ -38,6 +42,6 @@
"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
}