action smart_me_pico_loadmanagement_group_get { label: "GET: api/pico/loadmanagementgroup \n \n Returns a pico load management group by it's id" provider: smart_me method: GET path: "/api/pico/loadmanagementgroup/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "DTO for the pico loadmanagement group" properties: { Id: { type: "string" description: "The ID of the loadmanagement group" } MaxCurrent: { type: "number" format: "double" description: "The max current of this loadmanagement group" } Name: { type: "string" description: "The name of the station" } NumberOfStations: { type: "integer" format: "int32" description: "The number of assigned stations" } } } }