Maker API - example responses for lots of various device types

Is there anyone who'd be willing to share the output of the Maker API's all devices endpoint so I can get an idea of the various devices and attributes/capabilities out there? I'm working on an Android app dashboard but only have a handful of device types to really test. If I had some sample JSON data from others I can try to support more devices and even use it for some mock testing.

The data can be found by going to the Apps section -> Maker API -> "Get all devices with full details" link

There doesn't seem to be anything personally identifiable in this data.. I definitely don't want the access token in the URL string either.

If you want to post it here or just send it to me in an email or DM that works too! I'll post mine if it helps anyone down the line looking for some examples but again I don't have that many devices (yet lol)

here's my full device data:

http://192.168.0.202/apps/api/38/devices/all?access_token=SNIP

[
  {
    "name": "Yale Zigbee Lock",
    "label": "Patio Door Lock",
    "type": "Yale Zigbee Lock",
    "id": "2",
    "date": "2020-05-26T13:33:23+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Battery",
      "Configuration",
      "Lock",
      "Refresh",
      "LockCodes",
      "Actuator"
    ],
    "attributes": {
      "battery": "68",
      "dataType": "NUMBER",
      "values": null,
      "codeChanged": null,
      "codeLength": null,
      "lastCodeName": "master code",
      "lock": "unlocked",
      "lockCodes": null,
      "maxCodes": "250"
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "deleteCode"
      },
      {
        "command": "getCodes"
      },
      {
        "command": "lock"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setCode"
      },
      {
        "command": "setCodeLength"
      },
      {
        "command": "unlock"
      }
    ]
  },
  {
    "name": "3rd floor mini",
    "label": "3rd floor mini",
    "type": "Chromecast Audio",
    "id": "3",
    "date": "2019-11-30T01:15:37+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Actuator",
      "SpeechSynthesis",
      "Initialize",
      "AudioVolume"
    ],
    "attributes": {
      "mediaSource": "None",
      "dataType": "NUMBER",
      "values": null,
      "mute": null,
      "status": "idle",
      "volume": null
    },
    "commands": [
      {
        "command": "initialize"
      },
      {
        "command": "mute"
      },
      {
        "command": "pause"
      },
      {
        "command": "play"
      },
      {
        "command": "playTrack"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setVolume"
      },
      {
        "command": "speak"
      },
      {
        "command": "stop"
      },
      {
        "command": "unmute"
      },
      {
        "command": "volumeDown"
      },
      {
        "command": "volumeUp"
      }
    ]
  },
  {
    "name": "1st floor mini",
    "label": "1st floor mini",
    "type": "Chromecast Audio",
    "id": "4",
    "date": "2019-12-12T00:39:15+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Actuator",
      "SpeechSynthesis",
      "Initialize",
      "AudioVolume"
    ],
    "attributes": {
      "mediaSource": "None",
      "dataType": "NUMBER",
      "values": null,
      "mute": "unmuted",
      "status": "idle",
      "volume": "40"
    },
    "commands": [
      {
        "command": "initialize"
      },
      {
        "command": "mute"
      },
      {
        "command": "pause"
      },
      {
        "command": "play"
      },
      {
        "command": "playTrack"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setVolume"
      },
      {
        "command": "speak"
      },
      {
        "command": "stop"
      },
      {
        "command": "unmute"
      },
      {
        "command": "volumeDown"
      },
      {
        "command": "volumeUp"
      }
    ]
  },
  {
    "name": "Living Room TV",
    "label": "Living Room TV",
    "type": "Chromecast Video",
    "id": "5",
    "date": "2019-11-30T01:15:37+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Actuator",
      "SpeechSynthesis",
      "Initialize",
      "AudioVolume"
    ],
    "attributes": {
      "mediaSource": "None",
      "dataType": "NUMBER",
      "values": null,
      "mute": null,
      "status": "idle",
      "volume": null
    },
    "commands": [
      {
        "command": "initialize"
      },
      {
        "command": "mute"
      },
      {
        "command": "pause"
      },
      {
        "command": "play"
      },
      {
        "command": "playTrack"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setVolume"
      },
      {
        "command": "speak"
      },
      {
        "command": "stop"
      },
      {
        "command": "unmute"
      },
      {
        "command": "volumeDown"
      },
      {
        "command": "volumeUp"
      }
    ]
  },
  {
    "name": "2nd floor mini",
    "label": "2nd floor mini",
    "type": "Chromecast Audio",
    "id": "6",
    "date": "2019-11-30T01:15:38+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Actuator",
      "SpeechSynthesis",
      "Initialize",
      "AudioVolume"
    ],
    "attributes": {
      "mediaSource": "None",
      "dataType": "NUMBER",
      "values": null,
      "mute": null,
      "status": "idle",
      "volume": null
    },
    "commands": [
      {
        "command": "initialize"
      },
      {
        "command": "mute"
      },
      {
        "command": "pause"
      },
      {
        "command": "play"
      },
      {
        "command": "playTrack"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setVolume"
      },
      {
        "command": "speak"
      },
      {
        "command": "stop"
      },
      {
        "command": "unmute"
      },
      {
        "command": "volumeDown"
      },
      {
        "command": "volumeUp"
      }
    ]
  },
  {
    "name": "SHIELD",
    "label": "SHIELD",
    "type": "Chromecast Video",
    "id": "7",
    "date": "2020-05-21T14:38:09+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Actuator",
      "SpeechSynthesis",
      "Initialize",
      "AudioVolume"
    ],
    "attributes": {
      "mediaSource": "Google Play Music",
      "dataType": "NUMBER",
      "values": null,
      "mute": "unmuted",
      "status": "idle",
      "volume": "47"
    },
    "commands": [
      {
        "command": "initialize"
      },
      {
        "command": "mute"
      },
      {
        "command": "pause"
      },
      {
        "command": "play"
      },
      {
        "command": "playTrack"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setVolume"
      },
      {
        "command": "speak"
      },
      {
        "command": "stop"
      },
      {
        "command": "unmute"
      },
      {
        "command": "volumeDown"
      },
      {
        "command": "volumeUp"
      }
    ]
  },
  {
    "name": "S10",
    "label": "S10",
    "type": "Mobile App Device",
    "id": "8",
    "date": "2020-05-25T23:02:13+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "PresenceSensor",
      "Sensor",
      "Notification"
    ],
    "attributes": {
      "notificationText": "hello",
      "dataType": "ENUM",
      "values": [
        "present",
        "not present"
      ],
      "presence": "present"
    },
    "commands": [
      {
        "command": "arrived"
      },
      {
        "command": "departed"
      },
      {
        "command": "deviceNotification"
      }
    ]
  },
  {
    "name": "Generic Z-Wave Smart Switch",
    "label": "Attic Lights",
    "type": "Generic Z-Wave Smart Switch",
    "id": "65",
    "date": "2020-05-26T13:02:20+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Switch",
      "Configuration",
      "Refresh",
      "Actuator"
    ],
    "attributes": {
      "switch": "on",
      "dataType": "ENUM",
      "values": [
        "on",
        "off"
      ]
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "flash"
      },
      {
        "command": "off"
      },
      {
        "command": "on"
      },
      {
        "command": "refresh"
      },
      {
        "command": "refresh"
      }
    ]
  },
  {
    "name": "Generic Zigbee Outlet",
    "label": "Outlet 1",
    "type": "Generic Zigbee Outlet",
    "id": "66",
    "date": "2020-05-23T20:02:27+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Switch",
      "Configuration",
      "PowerMeter",
      "Sensor",
      "Actuator",
      "Outlet"
    ],
    "attributes": {
      "power": "0",
      "dataType": "ENUM",
      "values": [
        "on",
        "off"
      ],
      "switch": "off"
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "off"
      },
      {
        "command": "off"
      },
      {
        "command": "on"
      },
      {
        "command": "on"
      },
      {
        "command": "refresh"
      }
    ]
  },
  {
    "name": "Generic Zigbee Contact Sensor",
    "label": "Patio Door",
    "type": "Generic Zigbee Contact Sensor",
    "id": "67",
    "date": "2020-05-26T11:49:40+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "TemperatureMeasurement",
      "Battery",
      "ContactSensor",
      "Configuration",
      "Refresh",
      "Sensor"
    ],
    "attributes": {
      "battery": "24",
      "dataType": "NUMBER",
      "values": null,
      "contact": "open",
      "temperature": "75.20"
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "refresh"
      }
    ]
  },
  {
    "name": "Generic Zigbee Contact Sensor",
    "label": "Garage Door",
    "type": "Generic Zigbee Contact Sensor",
    "id": "68",
    "date": "2020-05-26T15:50:57+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "TemperatureMeasurement",
      "Battery",
      "ContactSensor",
      "Configuration",
      "Refresh",
      "Sensor"
    ],
    "attributes": {
      "battery": "37",
      "dataType": "NUMBER",
      "values": null,
      "contact": "closed",
      "temperature": "77.00"
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "refresh"
      }
    ]
  },
  {
    "name": "Generic Zigbee Contact Sensor",
    "label": "Back Door",
    "type": "Generic Zigbee Contact Sensor",
    "id": "69",
    "date": "2020-05-26T15:18:18+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "TemperatureMeasurement",
      "Battery",
      "ContactSensor",
      "Configuration",
      "Refresh",
      "Sensor"
    ],
    "attributes": {
      "battery": "24",
      "dataType": "NUMBER",
      "values": null,
      "contact": "open",
      "temperature": "77.00"
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "refresh"
      }
    ]
  },
  {
    "name": "Generic Z-Wave Lock",
    "label": "Back Door Lock",
    "type": "Generic Z-Wave Lock",
    "id": "70",
    "date": "2020-05-26T11:45:20+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Battery",
      "Configuration",
      "Lock",
      "Refresh",
      "LockCodes",
      "Sensor",
      "Actuator"
    ],
    "attributes": {
      "battery": "65",
      "dataType": "NUMBER",
      "values": null,
      "codeChanged": null,
      "codeLength": null,
      "lastCodeName": null,
      "lock": "unlocked",
      "lockCodes": null,
      "maxCodes": "250"
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "deleteCode"
      },
      {
        "command": "getCodes"
      },
      {
        "command": "lock"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setCode"
      },
      {
        "command": "setCodeLength"
      },
      {
        "command": "unlock"
      }
    ]
  },
  {
    "name": "Dome Motion Sensor",
    "label": "Motion Sensor",
    "type": "Dome Motion Sensor",
    "id": "71",
    "date": "2020-05-26T15:51:27+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "IlluminanceMeasurement",
      "Battery",
      "MotionSensor",
      "Refresh",
      "Sensor"
    ],
    "attributes": {
      "battery": "45",
      "dataType": "ENUM",
      "values": [
        "inactive",
        "active"
      ],
      "illuminance": "30",
      "motion": "inactive"
    },
    "commands": [
      {
        "command": "refresh"
      }
    ]
  },
  {
    "name": "Generic Z-Wave Lock",
    "label": "Tool Room Lock",
    "type": "Generic Z-Wave Lock",
    "id": "72",
    "date": "2020-05-23T23:14:29+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Battery",
      "Configuration",
      "Lock",
      "Refresh",
      "LockCodes",
      "Sensor",
      "Actuator"
    ],
    "attributes": {
      "battery": "82",
      "dataType": "NUMBER",
      "values": null,
      "codeChanged": null,
      "codeLength": null,
      "lastCodeName": null,
      "lock": "locked",
      "lockCodes": null,
      "maxCodes": "100"
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "deleteCode"
      },
      {
        "command": "getCodes"
      },
      {
        "command": "lock"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setCode"
      },
      {
        "command": "setCodeLength"
      },
      {
        "command": "unlock"
      }
    ]
  },
  {
    "name": "Generic Zigbee Bulb",
    "label": "Kitchen Nightlight",
    "type": "Generic Zigbee Bulb",
    "id": "73",
    "date": "2020-05-26T13:50:55+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Switch",
      "Configuration",
      "SwitchLevel",
      "Refresh",
      "Actuator",
      "Light",
      "ChangeLevel"
    ],
    "attributes": {
      "level": "84",
      "dataType": "ENUM",
      "values": [
        "on",
        "off"
      ],
      "switch": "on"
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "off"
      },
      {
        "command": "off"
      },
      {
        "command": "on"
      },
      {
        "command": "on"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setLevel"
      },
      {
        "command": "startLevelChange"
      },
      {
        "command": "stopLevelChange"
      }
    ]
  },
  {
    "name": "Zooz Central Scene Switch",
    "label": "Kitchen Lights",
    "type": "Zooz Central Scene Switch",
    "id": "74",
    "date": "2020-05-26T13:50:55+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Switch",
      "Configuration",
      "Refresh",
      "Actuator",
      "HoldableButton",
      "Light",
      "PushableButton",
      "DoubleTapableButton",
      "ReleasableButton"
    ],
    "attributes": {
      "doubleTapped": null,
      "dataType": "ENUM",
      "values": [
        "on",
        "off"
      ],
      "held": null,
      "numberOfButtons": "2",
      "pushed": null,
      "released": null,
      "switch": "on"
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "doubleTap"
      },
      {
        "command": "hold"
      },
      {
        "command": "off"
      },
      {
        "command": "off"
      },
      {
        "command": "on"
      },
      {
        "command": "on"
      },
      {
        "command": "push"
      },
      {
        "command": "refresh"
      },
      {
        "command": "release"
      }
    ]
  },
  {
    "name": "Generic Z-Wave Smart Switch",
    "label": "Flood Lights",
    "type": "Generic Z-Wave Smart Switch",
    "id": "75",
    "date": "2020-05-24T23:45:31+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Switch",
      "Configuration",
      "Refresh",
      "Actuator"
    ],
    "attributes": {
      "switch": "off",
      "dataType": "ENUM",
      "values": [
        "on",
        "off"
      ]
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "flash"
      },
      {
        "command": "off"
      },
      {
        "command": "on"
      },
      {
        "command": "refresh"
      },
      {
        "command": "refresh"
      }
    ]
  },
  {
    "name": "Generic Zigbee Bulb",
    "label": "Outdoor Light",
    "type": "Generic Zigbee Bulb",
    "id": "76",
    "date": "2020-05-26T02:00:00+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Switch",
      "Configuration",
      "SwitchLevel",
      "Refresh",
      "Actuator",
      "Light",
      "ChangeLevel"
    ],
    "attributes": {
      "level": "100",
      "dataType": "ENUM",
      "values": [
        "on",
        "off"
      ],
      "switch": "off"
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "off"
      },
      {
        "command": "off"
      },
      {
        "command": "on"
      },
      {
        "command": "on"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setLevel"
      },
      {
        "command": "startLevelChange"
      },
      {
        "command": "stopLevelChange"
      }
    ]
  },
  {
    "name": "Generic Z-Wave Lock",
    "label": "Front Door Lock",
    "type": "Generic Z-Wave Lock",
    "id": "77",
    "date": null,
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Battery",
      "Configuration",
      "Lock",
      "Refresh",
      "LockCodes",
      "Sensor",
      "Actuator"
    ],
    "attributes": {
      "battery": null,
      "dataType": "NUMBER",
      "values": null,
      "codeChanged": null,
      "codeLength": null,
      "lastCodeName": null,
      "lock": null,
      "lockCodes": null,
      "maxCodes": null
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "deleteCode"
      },
      {
        "command": "getCodes"
      },
      {
        "command": "lock"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setCode"
      },
      {
        "command": "setCodeLength"
      },
      {
        "command": "unlock"
      }
    ]
  },
  {
    "name": "Dome Siren",
    "label": "Siren",
    "type": "Dome Siren",
    "id": "78",
    "date": "2020-05-26T16:00:01+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Switch",
      "Battery",
      "Alarm",
      "Configuration",
      "Tone",
      "Refresh",
      "Actuator",
      "SpeechSynthesis",
      "Chime"
    ],
    "attributes": {
      "alarm": "off",
      "dataType": "ENUM",
      "values": [
        "on",
        "off"
      ],
      "battery": "100",
      "soundEffects": "{1=Chime2, 2=Melody1, 3=Chime3, 4=Chime1, 5=Melody2, 6=Melody3, 7=Alarm1, 8=Alarm2, 9=Tone2, 10=Tone1}",
      "soundName": null,
      "status": "off",
      "switch": "off"
    },
    "commands": [
      {
        "command": "beep"
      },
      {
        "command": "both"
      },
      {
        "command": "configure"
      },
      {
        "command": "off"
      },
      {
        "command": "off"
      },
      {
        "command": "on"
      },
      {
        "command": "playSound"
      },
      {
        "command": "refresh"
      },
      {
        "command": "siren"
      },
      {
        "command": "speak"
      },
      {
        "command": "stop"
      },
      {
        "command": "strobe"
      },
      {
        "command": "testAlarm1"
      },
      {
        "command": "testAlarm2"
      },
      {
        "command": "testChime1"
      },
      {
        "command": "testChime2"
      },
      {
        "command": "testChime3"
      },
      {
        "command": "testMelody1"
      },
      {
        "command": "testMelody2"
      },
      {
        "command": "testMelody3"
      },
      {
        "command": "testTone1"
      },
      {
        "command": "testTone2"
      }
    ]
  },
  {
    "name": "Rachio Controller",
    "label": "Rachio - Sprinkler",
    "type": "Rachio Controller",
    "id": "79",
    "date": "2020-05-26T16:04:34+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Switch",
      "Polling",
      "Refresh",
      "Valve",
      "Sensor",
      "Actuator"
    ],
    "attributes": {
      "activeZoneCnt": "8",
      "dataType": "STRING",
      "values": null,
      "controllerOn": "true",
      "controllerRunStatus": null,
      "curZoneCycleCount": "0",
      "curZoneDuration": "752",
      "curZoneId": null,
      "curZoneIsCycling": "False",
      "curZoneName": "Drip - Back Yard",
      "curZoneNumber": "8",
      "curZoneRunStatus": "Status: Idle",
      "curZoneStartDate": "Not Active",
      "curZoneWaterTime": "10",
      "duration": null,
      "durationNoCycle": null,
      "hardwareDesc": "8-Zone (Gen 2)",
      "hardwareModel": "8ZoneV2",
      "lastUpdatedDt": "May 26, 2020 - 12:04:34 PM",
      "lastWateredDesc": null,
      "lastWateredDt": null,
      "lastWateredDuration": null,
      "rainDelay": "0",
      "rainDelayStr": "No Rain Delay",
      "scheduleType": "Off",
      "standbyMode": "off",
      "startDate": null,
      "switch": "off",
      "totalCycleCount": null,
      "valve": "close",
      "watering": "off"
    },
    "commands": [
      {
        "command": "close"
      },
      {
        "command": "close"
      },
      {
        "command": "decreaseRainDelay"
      },
      {
        "command": "doSetRainDelay"
      },
      {
        "command": "increaseRainDelay"
      },
      {
        "command": "off"
      },
      {
        "command": "on"
      },
      {
        "command": "open"
      },
      {
        "command": "open"
      },
      {
        "command": "poll"
      },
      {
        "command": "refresh"
      },
      {
        "command": "runAllZones"
      },
      {
        "command": "setRainDelay"
      },
      {
        "command": "setZoneWaterTime"
      },
      {
        "command": "standbyOff"
      },
      {
        "command": "standbyOn"
      },
      {
        "command": "stopWatering"
      }
    ]
  },
  {
    "name": "Rachio Zone",
    "label": "Rachio - Drip - Back Yard",
    "type": "Rachio Zone",
    "id": "84",
    "date": "2020-05-26T16:04:34+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Switch",
      "Polling",
      "Refresh",
      "Valve",
      "Sensor",
      "Actuator"
    ],
    "attributes": {
      "availableWater": "0.17",
      "dataType": "NUMBER",
      "values": null,
      "cropName": "Shrubs",
      "cycleCount": null,
      "depthOfWater": "1.28",
      "duration": null,
      "durationNoCycle": null,
      "efficiency": "0.9",
      "inStandby": "false",
      "lastUpdatedDt": "May 26, 2020 - 12:04:34 PM",
      "lastWateredDesc": null,
      "lastWateredDt": null,
      "lastWateredDuration": "0",
      "maxRuntime": "28800",
      "nozzleCategory": null,
      "nozzleName": "Dripline",
      "rootZoneDepth": "15",
      "saturatedDepthOfWater": "1.41",
      "scheduleType": "off",
      "scheduleTypeBtnDesc": null,
      "selectedZone": null,
      "shadeName": "Lots Of Shade",
      "slopeName": "Zero Three",
      "soilCategory": null,
      "soilName": "Loam",
      "startDate": null,
      "switch": "off",
      "totalCycleCount": null,
      "valve": "closed",
      "watering": "off",
      "zoneDuration": "null",
      "zoneId": null,
      "zoneName": "Drip - Back Yard",
      "zoneNumber": "8",
      "zoneRunElapsed": null,
      "zoneSquareFeet": "500",
      "zoneStartDate": "Not Active",
      "zoneTotalDuration": "9804",
      "zoneWaterTime": "10"
    },
    "commands": [
      {
        "command": "close"
      },
      {
        "command": "close"
      },
      {
        "command": "off"
      },
      {
        "command": "on"
      },
      {
        "command": "open"
      },
      {
        "command": "open"
      },
      {
        "command": "pause"
      },
      {
        "command": "poll"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setZoneWaterTime"
      },
      {
        "command": "startZone"
      },
      {
        "command": "stopWatering"
      }
    ]
  },
  {
    "name": "Rachio Zone",
    "label": "Rachio - Front - Drip",
    "type": "Rachio Zone",
    "id": "85",
    "date": "2020-05-26T16:04:34+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Switch",
      "Polling",
      "Refresh",
      "Valve",
      "Sensor",
      "Actuator"
    ],
    "attributes": {
      "availableWater": "0.17",
      "dataType": "NUMBER",
      "values": null,
      "cropName": "Shrubs",
      "cycleCount": null,
      "depthOfWater": "1.28",
      "duration": null,
      "durationNoCycle": null,
      "efficiency": "0.9",
      "inStandby": "false",
      "lastUpdatedDt": "May 26, 2020 - 12:04:34 PM",
      "lastWateredDesc": null,
      "lastWateredDt": null,
      "lastWateredDuration": "0",
      "maxRuntime": "28800",
      "nozzleCategory": null,
      "nozzleName": "Dripline",
      "rootZoneDepth": "15",
      "saturatedDepthOfWater": "1.41",
      "scheduleType": "off",
      "scheduleTypeBtnDesc": null,
      "selectedZone": null,
      "shadeName": "Some Shade",
      "slopeName": "Zero Three",
      "soilCategory": null,
      "soilName": "Loam",
      "startDate": null,
      "switch": "off",
      "totalCycleCount": null,
      "valve": "closed",
      "watering": "off",
      "zoneDuration": "null",
      "zoneId": null,
      "zoneName": "Front - Drip",
      "zoneNumber": "1",
      "zoneRunElapsed": null,
      "zoneSquareFeet": "500",
      "zoneStartDate": "Not Active",
      "zoneTotalDuration": "9804",
      "zoneWaterTime": "10"
    },
    "commands": [
      {
        "command": "close"
      },
      {
        "command": "close"
      },
      {
        "command": "off"
      },
      {
        "command": "on"
      },
      {
        "command": "open"
      },
      {
        "command": "open"
      },
      {
        "command": "pause"
      },
      {
        "command": "poll"
      },
      {
        "command": "refresh"
      },
      {
        "command": "setZoneWaterTime"
      },
      {
        "command": "startZone"
      },
      {
        "command": "stopWatering"
      }
    ]
  },
  {
    "name": "Generic Zigbee Outlet",
    "label": "Landscape Lights",
    "type": "Generic Zigbee Outlet",
    "id": "88",
    "date": "2020-05-26T02:00:00+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Switch",
      "Configuration",
      "PowerMeter",
      "Sensor",
      "Actuator",
      "Outlet"
    ],
    "attributes": {
      "power": "0",
      "dataType": "ENUM",
      "values": [
        "on",
        "off"
      ],
      "switch": "off"
    },
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "off"
      },
      {
        "command": "off"
      },
      {
        "command": "on"
      },
      {
        "command": "on"
      },
      {
        "command": "refresh"
      }
    ]
  },
  {
    "name": "Device",
    "label": "Tool Room Door",
    "type": "Device",
    "id": "89",
    "date": null,
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Configuration"
    ],
    "attributes": {},
    "commands": [
      {
        "command": "configure"
      },
      {
        "command": "getInfo"
      }
    ]
  },
  {
    "name": "Wink Lookout Door/Window Sensor",
    "label": "Front Door",
    "type": "Wink Lookout Door/Window Sensor",
    "id": "90",
    "date": "2020-05-26T14:41:48+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "Battery",
      "ContactSensor",
      "Configuration",
      "Sensor",
      "Actuator"
    ],
    "attributes": {
      "battery": "86",
      "dataType": "ENUM",
      "values": [
        "closed",
        "open"
      ],
      "contact": "closed"
    },
    "commands": [
      {
        "command": "configure"
      }
    ]
  },
  {
    "name": "Weather",
    "label": "Weather",
    "type": "OpenWeatherMap",
    "id": "91",
    "date": "2020-05-26T15:58:06+0000",
    "model": null,
    "manufacturer": null,
    "capabilities": [
      "TemperatureMeasurement",
      "RelativeHumidityMeasurement",
      "Refresh",
      "Sensor"
    ],
    "attributes": {
      "city": "Matthews",
      "dataType": "NUMBER",
      "values": null,
      "cloudiness": "40",
      "country": "US",
      "humidity": "78",
      "pressure": "1021",
      "temperature": "71",
      "weather": "scattered clouds",
      "weatherIcons": "03d",
      "windDirection": "101",
      "windSpeed": "5.82"
    },
    "commands": [
      {
        "command": "refresh"
      }
    ]
  }
]    

side-note - not sure if this is the best way to post all of this data.. wish i could attach a text file

Thanks for working on this. I'll post my device data:

[{"name":" Door Aq Bsmt ->tradfri plug","label":"Door Aq ED44","type":"XiaomiDoor/WindowSensor w/Route","id":"310","date":"2020-04-27T16:45:05+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","Battery","ContactSensor","Sensor"],"attributes":{"battery":"100","dataType":"NUMBER","values":null,"batteryLastReplaced":"Tue Nov 20 22:13:17 EST 2018","contact":"closed","lastCheckin":"1588005905584","lastClosed":"1554091588306","lastOpened":"1554091585158","temperature":"20"},"commands":[{"command":"resetBatteryReplacedDate"},{"command":"resetToClosed"},{"command":"resetToOpen"}]},{"name":"Motion Hue Frt Door","label":"Motion Front Door Hue ","type":"Hue Motion Sensor","id":"712","date":"2020-05-28T14:31:47+0000","model":null,"manufacturer":null,"capabilities":["IlluminanceMeasurement","TemperatureMeasurement","Battery","MotionSensor","Configuration","Refresh","Sensor"],"attributes":{"battery":"64","dataType":"NUMBER","values":null,"illuminance":"67","motion":"inactive","temperature":"71.82"},"commands":[{"command":"configure"},{"command":"refresh"}]},{"name":"Addition Lamp A8B0","label":"Addition Lamp ","type":"Generic Zigbee Bulb","id":"746","date":"2020-05-28T04:45:49+0000","model":null,"manufacturer":null,"capabilities":["Switch","Configuration","SwitchLevel","Refresh","Actuator","Light","ChangeLevel"],"attributes":{"level":"60","dataType":"ENUM","values":["on","off"],"switch":"off"},"commands":[{"command":"configure"},{"command":"off"},{"command":"off"},{"command":"on"},{"command":"on"},{"command":"refresh"},{"command":"setLevel"},{"command":"startLevelChange"},{"command":"stopLevelChange"}]},{"name":"Door Kitchen Sylvania","label":"Door Kitchen","type":"Generic Zigbee Contact Sensor","id":"821","date":"2020-05-28T14:20:10+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","Battery","ContactSensor","Configuration","Refresh","Sensor"],"attributes":{"battery":"75","dataType":"NUMBER","values":null,"contact":"closed","temperature":"73.60"},"commands":[{"command":"configure"},{"command":"refresh"}]},{"name":"Generic Zigbee Contact Sensor","label":"Door Garage 1","type":"Generic Zigbee Contact Sensor","id":"825","date":"2020-05-28T13:16:05+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","Battery","ContactSensor","Configuration","Refresh","Sensor"],"attributes":{"battery":"55","dataType":"NUMBER","values":null,"contact":"closed","temperature":"66.20"},"commands":[{"command":"configure"},{"command":"refresh"}]},{"name":"Generic Zigbee Contact Sensor","label":"Door Side Adtn","type":"Generic Zigbee Contact Sensor","id":"826","date":"2020-05-28T13:50:59+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","Battery","ContactSensor","Configuration","Refresh","Sensor"],"attributes":{"battery":"24","dataType":"NUMBER","values":null,"contact":"closed","temperature":"71.60"},"commands":[{"command":"configure"},{"command":"refresh"}]},{"name":"Generic Zigbee Contact Sensor","label":"Door Driveway","type":"Generic Zigbee Contact Sensor","id":"827","date":"2019-11-18T15:34:53+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","Battery","ContactSensor","Configuration","Refresh","Sensor"],"attributes":{"battery":"100","dataType":"NUMBER","values":null,"contact":"closed","temperature":"44.60"},"commands":[{"command":"configure"},{"command":"refresh"}]},{"name":"Door Slider Multi AAA","label":"Door Slider.","type":"SmartSense Multi Sensor V4","id":"829","date":"2020-05-28T14:27:27+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","Battery","ContactSensor","Configuration","ThreeAxis","AccelerationSensor","Refresh","Sensor"],"attributes":{"acceleration":"inactive","dataType":"VECTOR3","values":null,"battery":"100","contact":"closed","temperature":"69.77","threeAxis":"[x:-110,y:999,z:-20]"},"commands":[{"command":"configure"},{"command":"refresh"}]},{"name":"Generic Zigbee Contact Sensor","label":"Door Rear Old","type":"Generic Zigbee Contact Sensor","id":"832","date":"2020-05-28T14:20:33+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","Battery","ContactSensor","Configuration","Refresh","Sensor"],"attributes":{"battery":"49","dataType":"NUMBER","values":null,"contact":"closed","temperature":"75.20"},"commands":[{"command":"configure"},{"command":"refresh"}]},{"name":"Generic Zigbee Contact Sensor","label":"Door Front","type":"Generic Zigbee Contact Sensor","id":"833","date":"2020-05-28T14:21:23+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","Battery","ContactSensor","Configuration","Refresh","Sensor"],"attributes":{"battery":"62","dataType":"NUMBER","values":null,"contact":"closed","temperature":"73.40"},"commands":[{"command":"configure"},{"command":"refresh"}]},{"name":"Generic Zigbee Contact Sensor","label":"Door Garage 2","type":"Generic Zigbee Contact Sensor","id":"940","date":"2020-05-28T13:32:38+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","Battery","ContactSensor","Configuration","Refresh","Sensor"],"attributes":{"battery":"62","dataType":"NUMBER","values":null,"contact":"closed","temperature":"68.00"},"commands":[{"command":"configure"},{"command":"refresh"}]},{"name":"Siren Dome","label":"Siren Dome","type":"Dome Siren","id":"1004","date":"2020-05-28T04:00:18+0000","model":null,"manufacturer":null,"capabilities":["Switch","Battery","Alarm","Configuration","Tone","Refresh","Actuator","SpeechSynthesis","Chime"],"attributes":{"alarm":"off","dataType":"ENUM","values":["on","off"],"battery":"100","soundEffects":"{1=Chime2, 2=Melody1, 3=Chime3, 4=Chime1, 5=Melody2, 6=Melody3, 7=Alarm1, 8=Alarm2, 9=Tone2, 10=Tone1}","soundName":null,"status":"off","switch":"off"},"commands":[{"command":"beep"},{"command":"both"},{"command":"configure"},{"command":"off"},{"command":"off"},{"command":"on"},{"command":"playSound"},{"command":"refresh"},{"command":"siren"},{"command":"speak"},{"command":"stop"},{"command":"strobe"},{"command":"testAlarm1"},{"command":"testAlarm2"},{"command":"testChime1"},{"command":"testChime2"},{"command":"testChime3"},{"command":"testMelody1"},{"command":"testMelody2"},{"command":"testMelody3"},{"command":"testTone1"},{"command":"testTone2"}]},{"name":"Basement Switch Aeon","label":"Basement Switch Aeon Micro","type":"Aeon Micro Switch","id":"1015","date":"2020-05-24T03:04:20+0000","model":null,"manufacturer":null,"capabilities":["Switch","Configuration","Refresh","Actuator"],"attributes":{"switch":"off","dataType":"ENUM","values":["on","off"]},"commands":[{"command":"configure"},{"command":"flash"},{"command":"off"},{"command":"on"},{"command":"refresh"},{"command":"strobe"}]},{"name":"Motion Kitchen","label":"Motion Kitchen AQ Sensor","type":"Zigbee - Xiaomi/Aqara Motion Sensor-Markus","id":"1128","date":"2020-05-28T14:21:10+0000","model":null,"manufacturer":null,"capabilities":["IlluminanceMeasurement","Battery","MotionSensor","PresenceSensor","Sensor","Initialize"],"attributes":{"battery":"100","dataType":"ENUM","values":["present","not present"],"batteryLastReplaced":"Fri Jan 25 17:52:54 EST 2019","driver":"v0.6.1.0521","illuminance":"46","lastCheckin":"2020-05-28 10:20:09","lastCheckinEpoch":"1590675609288","motion":"inactive","presence":"present"},"commands":[{"command":"initialize"},{"command":"resetBatteryReplacedDate"}]},{"name":"Linear/Vision Siren","label":"Siren Utilitech","type":"Linear/Vision Siren","id":"1450","date":"2020-05-27T04:00:32+0000","model":null,"manufacturer":null,"capabilities":["Switch","Battery","Alarm","Configuration","Refresh","Actuator"],"attributes":{"alarm":"off","dataType":"ENUM","values":["on","off"],"battery":"80","switch":"off"},"commands":[{"command":"both"},{"command":"configure"},{"command":"off"},{"command":"off"},{"command":"on"},{"command":"refresh"},{"command":"siren"},{"command":"strobe"}]},{"name":"Aeon Siren","label":"Siren Aeon","type":"Aeon Siren","id":"1800","date":"2020-03-29T01:50:25+0000","model":null,"manufacturer":null,"capabilities":["Switch","Alarm","Configuration","Tone","Refresh","Actuator","AudioVolume"],"attributes":{"alarm":"off","dataType":"NUMBER","values":null,"mute":"unmuted","switch":"off","volume":"2"},"commands":[{"command":"beep"},{"command":"both"},{"command":"configure"},{"command":"mute"},{"command":"off"},{"command":"off"},{"command":"on"},{"command":"refresh"},{"command":"setVolume"},{"command":"siren"},{"command":"strobe"},{"command":"unmute"},{"command":"volumeDown"},{"command":"volumeUp"}]},{"name":"Motion Front Iris","label":"Motion Front Door Stairs","type":"Generic Zigbee Motion Sensor","id":"1929","date":"2020-05-28T14:21:48+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","Battery","MotionSensor","Configuration","Refresh","Sensor"],"attributes":{"battery":"100","dataType":"NUMBER","values":null,"motion":"inactive","temperature":"67.03"},"commands":[{"command":"configure"},{"command":"refresh"}]},{"name":"Aeotec Siren 6","label":"Siren 6 Aeotec","type":"Aeotec Siren 6","id":"2121","date":"2020-03-20T20:31:50+0000","model":null,"manufacturer":null,"capabilities":["Switch","Alarm","Configuration","Refresh","Actuator","AudioVolume"],"attributes":{"alarm":"off","dataType":"NUMBER","values":null,"mute":"muted","switch":"off","volume":"100"},"commands":[{"command":"both"},{"command":"configure"},{"command":"mute"},{"command":"off"},{"command":"off"},{"command":"on"},{"command":"refresh"},{"command":"setVolume"},{"command":"siren"},{"command":"strobe"},{"command":"unmute"},{"command":"volumeDown"},{"command":"volumeUp"}]},{"name":"Aeotec Siren 6 Component Chime","label":"Aeotec Siren 6 - Chime","type":"Aeotec Siren 6 Component Chime","id":"2122","date":"2020-04-25T14:55:38+0000","model":null,"manufacturer":null,"capabilities":["Switch","Tone","Actuator","AudioVolume","Chime"],"attributes":{"mute":"unmuted","dataType":"NUMBER","values":null,"soundEffects":"{1=Ding Dong, 2=Ding Dong Tubular Bell, 3=Traditional Buzzer, 4=Electric Buzzer, 5=Westminster Chimes, 6=Chimes, 7=Cuckoo, 8=Traditional Bell, 9=Smoke Alarm (Low), 10=Smoke Alarm (High), 11=Fire Evacuation Buzzer, 12=Carbon Monoxide Sensor, 13=Klaxon, 14=Klaxon (Deep), 15=Warning Tone, 16=Tornado Siren, 17=Alarm, 18=Deep Alarm Tone, 19=Alarm (Archangel tone), 20=Alarm (Shrill), 21=Digital Siren, 22=Alert Series, 23=Bell, 24=Clock Buzzer, 25=Christmas Tree, 26=Gong, 27=Single Bell Ting, 28=Tonal Pulse, 29=Upwards Tone, 30=Door Open}","soundName":"27. Single Bell Ting","status":"stopped","switch":"off","volume":"25"},"commands":[{"command":"beep"},{"command":"mute"},{"command":"off"},{"command":"on"},{"command":"playSound"},{"command":"setVolume"},{"command":"stop"},{"command":"unmute"},{"command":"volumeDown"},{"command":"volumeUp"}]},{"name":"Zooz Siren zse19","label":"Siren Zooz ZSE19","type":"Zooz S2 Multisiren","id":"2378","date":"2020-05-28T14:17:46+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","RelativeHumidityMeasurement","Switch","Battery","Alarm","Configuration","Tone","Refresh","Sensor","Actuator","AudioVolume","Chime"],"attributes":{"alarm":"off","dataType":"NUMBER","values":null,"battery":"100","humidity":"75.3","mute":"unmuted","soundEffects":null,"soundName":null,"status":"stopped","switch":"off","temperature":"69.3","volume":"100"},"commands":[{"command":"beep"},{"command":"both"},{"command":"configure"},{"command":"mute"},{"command":"off"},{"command":"off"},{"command":"on"},{"command":"playSound"},{"command":"refresh"},{"command":"setVolume"},{"command":"siren"},{"command":"stop"},{"command":"strobe"},{"command":"unmute"},{"command":"volumeDown"},{"command":"volumeUp"}]},{"name":"Inovelli Mega Switch","label":"Light Addition Switch 1","type":"Inovelli Dimmer Red Series LZW31-SN","id":"3466","date":"2020-05-28T02:41:26+0000","model":null,"manufacturer":null,"capabilities":["Switch","Polling","Configuration","SwitchLevel","Refresh","EnergyMeter","PowerMeter","Sensor","Actuator","HoldableButton","PushableButton"],"attributes":{"energy":"16.090","dataType":"ENUM","values":["on","off"],"firmware":"1.35","held":"1","lastActivity":"2020 May 27 Wed 10:41:26 PM","lastEvent":" Tap \u25b2","level":"90","numberOfButtons":"8","power":"0","pushed":"1","switch":"off"},"commands":[{"command":"childOff"},{"command":"childOn"},{"command":"childRefresh"},{"command":"childSetLevel"},{"command":"configure"},{"command":"holdDown"},{"command":"holdUp"},{"command":"off"},{"command":"on"},{"command":"poll"},{"command":"pressDownX1"},{"command":"pressDownX2"},{"command":"pressDownX3"},{"command":"pressDownX4"},{"command":"pressDownX5"},{"command":"pressUpX1"},{"command":"pressUpX2"},{"command":"pressUpX3"},{"command":"pressUpX4"},{"command":"pressUpX5"},{"command":"refresh"},{"command":"reset"},{"command":"setAssociationGroup"},{"command":"setLevel"}]},{"name":"Keypad IL02 Front Door","label":"Keypad IL02 Front Door","type":"Centralitex Keypad","id":"3658","date":"2020-05-28T13:35:16+0000","model":null,"manufacturer":null,"capabilities":["TemperatureMeasurement","Battery","ContactSensor","MotionSensor","Alarm","Configuration","Tone","Refresh","LockCodes","Sensor","TamperAlert","PushableButton","SecurityKeypad"],"attributes":{"alarm":"off","dataType":"NUMBER","values":null,"armMode":"disarmed","battery":"57","codeChanged":"deleted","codeLength":null,"contact":null,"lastUpdate":"Sun, May 24 2020 @ 6:27:32.061 PM EDT","lockCodes":"{}","maxCodes":null,"motion":"inactive","numberOfButtons":null,"pinStatus":"Accepted","pushed":null,"securityKeypad":"disarmed","tamper":"clear","temperature":"73"},"commands":[{"command":"acknowledgeArmRequest"},{"command":"armAway"},{"command":"armCode"},{"command":"armHome"},{"command":"armNight"},{"command":"beep"},{"command":"both"},{"command":"configure"},{"command":"deleteCode"},{"command":"deleteCode"},{"command":"disarm"},{"command":"entry"},{"command":"getCodes"},{"command":"getCodes"},{"command":"off"},{"command":"panicContact"},{"command":"pinStatusSet"},{"command":"refresh"},{"command":"sendInvalidKeycodeResponse"},{"command":"setArmedAway"},{"command":"setArmedNight"},{"command":"setArmedStay"},{"command":"setCode"},{"command":"setCode"},{"command":"setCodeLength"},{"command":"setCodeLength"},{"command":"setDisarmed"},{"command":"setEntryDelay"},{"command":"setExitAway"},{"command":"setExitDelay"},{"command":"setExitNight"},{"command":"setExitStay"},{"command":"siren"},{"command":"ssekey"},{"command":"strobe"},{"command":"testCmd"},{"command":"version"}]},{"name":"Zooz Double Plug Outlet Advanced","label":"Candles living room","type":"Zooz Double Plug Outlet Advanced","id":"4875","date":"2020-05-28T14:34:17+0000","model":null,"manufacturer":null,"capabilities":["Switch","Refresh","EnergyMeter","PowerMeter","Sensor","Actuator","VoltageMeasurement","Outlet"],"attributes":{"current":"0","dataType":"NUMBER","values":null,"currentHigh":"0.13","currentLow":"0","energy":"0.68","energyDuration":"69.7 Days","energyTime":"1584654482111","power":"0","powerHigh":"3.7","powerLow":"0","switch":"off","voltage":"0","voltageHigh":"130","voltageLow":"0"},"commands":[{"command":"off"},{"command":"off"},{"command":"on"},{"command":"on"},{"command":"refresh"},{"command":"reset"}]},{"name":"Lightify outlet","label":"Candle Kitchen","type":"Generic Zigbee Outlet","id":"5002","date":"2020-05-27T03:30:00+0000","model":null,"manufacturer":null,"capabilities":["Switch","Configuration","PowerMeter","Sensor","Actuator","Outlet"],"attributes":{"power":"0","dataType":"ENUM","values":["on","off"],"switch":"off"},"commands":[{"command":"configure"},{"command":"off"},{"command":"off"},{"command":"on"},{"command":"on"},{"command":"refresh"}]},{"name":"Zooz Central Scene Dimmer","label":"Light Kitchen","type":"Zooz Central Scene Dimmer","id":"5197","date":"2020-05-28T13:32:26+0000","model":null,"manufacturer":null,"capabilities":["Switch","Configuration","SwitchLevel","Refresh","Actuator","HoldableButton","Light","PushableButton","DoubleTapableButton","ReleasableButton","ChangeLevel"],"attributes":{"doubleTapped":"2","dataType":"ENUM","values":["on","off"],"held":null,"level":"99","numberOfButtons":"2","pushed":"2","released":null,"switch":"off"},"commands":[{"command":"configure"},{"command":"doubleTap"},{"command":"hold"},{"command":"off"},{"command":"off"},{"command":"on"},{"command":"on"},{"command":"push"},{"command":"refresh"},{"command":"release"},{"command":"setLevel"},{"command":"startLevelChange"},{"command":"stopLevelChange"}]},{"name":"Generic Zigbee Bulb","label":"Light Pantry Counter","type":"Generic Zigbee CT Bulb (dev)","id":"5518","date":"2020-05-26T01:49:01+0000","model":null,"manufacturer":null,"capabilities":["Switch","Configuration","SwitchLevel","Refresh","Actuator","ColorTemperature","Light","ChangeLevel"],"attributes":{"colorName":"Incandescent","dataType":"ENUM","values":["on","off"],"colorTemperature":"2702","level":"2","switch":"off"},"commands":[{"command":"configure"},{"command":"off"},{"command":"off"},{"command":"on"},{"command":"on"},{"command":"refresh"},{"command":"setColorTemperature"},{"command":"setLevel"},{"command":"startLevelChange"},{"command":"stopLevelChange"}]},{"name":"Device","label":"Siren Zooz Red","type":"Dome Siren","id":"5520","date":"2020-05-18T01:23:06+0000","model":null,"manufacturer":null,"capabilities":["Switch","Battery","Alarm","Configuration","Tone","Refresh","Actuator","SpeechSynthesis","Chime"],"attributes":{"alarm":"off","dataType":"ENUM","values":["on","off"],"battery":null,"soundEffects":"{1=Chime2, 2=Melody1, 3=Chime3, 4=Chime1, 5=Melody2, 6=Melody3, 7=Alarm1, 8=Alarm2, 9=Tone2, 10=Tone1}","soundName":null,"status":"off","switch":"off"},"commands":[{"command":"beep"},{"command":"both"},{"command":"configure"},{"command":"off"},{"command":"off"},{"command":"on"},{"command":"playSound"},{"command":"refresh"},{"command":"siren"},{"command":"speak"},{"command":"stop"},{"command":"strobe"},{"command":"testAlarm1"},{"command":"testAlarm2"},{"command":"testChime1"},{"command":"testChime2"},{"command":"testChime3"},{"command":"testMelody1"},{"command":"testMelody2"},{"command":"testMelody3"},{"command":"testTone1"},{"command":"testTone2"}]}]

I am sure you already know about it...but just in case...here is the link to the Device Capabilities that Hubitat Supports.

https://docs.hubitat.com/index.php?title=Driver_Capability_List

I would be careful to adhere to the standard capabilities. User data, while very helpful, may contain custom attributes and commands that are really non-standard.

Good luck with your project!

haha.. actually, I didn't know about that page. Yes, that's very helpful - thanks!

1 Like

Hello @Rxich
I just looked the data of all types of devices you have posted here. I have a query, would you tell me, What is make & model of your smart-meter ?

Hello, In the post above I see several "smart meters". I have a zooz double plug, an Invelli Red Series Dimmer. Also I have 2 Aeotec Energy Monitors hooked to my electrical panel(although I don't see those in the post above)
Are you looking to monitor a single circuit or the whole panel?
PS- I'm in USA where we have 120V power, comes in as 240 and the legs are split 2x120

Thanks for your response,
I want to monitor my house power consumption and as well as all electrical parameter like voltage, current & frequency (if possible) using an smart meter. and for this monitoring i want to use API (MQTT).
would you tell me, which smart energy meter is good to do this using hubitat smart hub?

I don't use MQTT, but there are many posts discussing using energy meters, even some energy meters outside of zigbee/z-wave. I know IOTAwatt has a very good integration with HE and people seem very happy with it

2 Likes

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.