action smart_me_actions_get { label: "Gets all available Actions of a Device" description: "Gets all available Actions of a Device" provider: smart_me method: GET path: "/api/Actions/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "The Information about an Action of a device" properties: { ActionType: { type: "string" description: "The Type of this action." enum: ["OnOffAction", "AnalogAction"] } MaxValue: { type: "number" format: "double" description: "The maximum value of this action (e.g. for an AnalogAction)" } MinValue: { type: "number" format: "double" description: "The minimum value of this action (e.g. for an AnalogAction)" } Name: { type: "string" description: "The Name of this action" } ObisCode: { type: "string" description: "The Obis Code of this action. This is used as ID." } } } } }