mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-15 01:46:25 +08:00
31 lines
496 B
Protocol Buffer
31 lines
496 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package commandproto;
|
|
|
|
message Event {
|
|
string id = 1;
|
|
int64 time = 2;
|
|
Payload payload = 3;
|
|
string device_udid = 4;
|
|
}
|
|
|
|
message Payload {
|
|
string command_uuid = 1;
|
|
Command command = 2;
|
|
}
|
|
|
|
message Command {
|
|
string request_type = 1;
|
|
DeviceInformation device_information = 2;
|
|
InstallProfile install_profile = 3;
|
|
}
|
|
|
|
message DeviceInformation {
|
|
repeated string queries = 1;
|
|
}
|
|
|
|
message InstallProfile {
|
|
bytes payload = 1;
|
|
}
|
|
|