action lambdatest_devices { label: "Fetch all available device combinations." description: "Fetch all os devices combinations available on lambdatest platform." provider: lambdatest method: GET path: "/devices" encoding: json input: { type: "object" properties: { os: { type: "string" } } additionalProperties: false } output: { properties: { "android 7.0": { type: "object" properties: { devices: { type: "array" items: { type: "string" } } } } "ios 12.0": { type: "object" properties: { devices: { type: "array" items: { type: "string" } } } } } } }