AssignmentInfo Data Type
- Abstract Type
- Subtypes
- IDCAssignmentInfo, SignalReaderAssignmentInfo, Area5AssignmentInfo
name | data type | constraints | description |
---|---|---|---|
id | number | required long | |
name | string | The name of the assignment. | |
ownerLoginID | string | The username of the owner of the assignment. | |
vehicleProfileVersion | VehicleProfileVersion | The vehicle profile the assignment is based on. | |
usingLatestVehicleProfile | boolean | required boolean | Whether the assignment is using the latest version of the vehicle profile or not. |
creationDate | string | The creation date of the assignment in UTC as an extended ISO 8601 string. | |
string | The last edited date of the assignment in UTC as an extended ISO 8601 string. | ||
comment | string | ||
accessRights | AssignmentAccessType | The access rights of this assignment. | |
canEdit | boolean | required boolean | True if the assignment is public or if the requesting user has access to edit the assignment. |
Example
This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{ "id" : 12345, "name" : "Assignment test 1", "ownerLoginID" : "anders.svensson", "vehicleProfileVersion" : { "version-id" : 12345, "name" : "Vehicle profile 1" }, "usingLatestVehicleProfile" : true, "creationDate" : "2024-04-01T12:52:32Z", "" : "2024-04-02T12:52:32Z", "comment" : "...", "accessRights" : "PUBLIC", "canEdit" : true }