2024-11-29 23:52:44 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
// These represent the information needed in the nats message
|
|
|
|
// to perform the operation, they are encoded to json
|
|
|
|
|
|
|
|
// Requests are sent from maps-service to validator
|
|
|
|
|
2024-12-12 22:29:20 +00:00
|
|
|
type ValidateRequest struct {
|
2024-11-29 23:52:44 +00:00
|
|
|
// submission_id is passed back in the response message
|
|
|
|
SubmissionID int64
|
2024-12-20 00:49:22 +00:00
|
|
|
ModelID int64
|
|
|
|
ModelVersion int64
|
|
|
|
ValidatedModelID int64 // optional value
|
2024-11-29 23:52:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new map
|
2024-12-12 22:29:20 +00:00
|
|
|
type PublishNewRequest struct {
|
2024-11-29 23:52:44 +00:00
|
|
|
SubmissionID int64
|
2024-12-20 00:49:22 +00:00
|
|
|
ModelID int64
|
|
|
|
ModelVersion int64
|
2024-12-15 08:21:01 +00:00
|
|
|
ModelName string
|
2024-11-29 23:52:44 +00:00
|
|
|
}
|
|
|
|
|
2024-12-12 22:29:20 +00:00
|
|
|
type PublishFixRequest struct {
|
2024-11-29 23:52:44 +00:00
|
|
|
SubmissionID int64
|
2024-12-20 00:49:22 +00:00
|
|
|
ModelID int64
|
|
|
|
ModelVersion int64
|
|
|
|
TargetAssetID int64
|
2024-11-29 23:52:44 +00:00
|
|
|
}
|