action sinao_app_rules_get { label: "Get a rule" description: "" provider: sinao method: GET path: "/apps/{appId}/rules/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { properties: { conditions: { type: "array" description: "[ [property, comparator, value], ... ]" items: { type: "array" description: "[property, comparator, value]" items: { type: "string" } } } id: { type: "integer" } on_event: { type: "string" } parameter: { type: "string" } priority: { type: "integer" } value: { type: "string" } } } }