diff --git a/docs/creating_integration_manifest.md b/docs/creating_integration_manifest.md index 0c335c72..942ff6ad 100644 --- a/docs/creating_integration_manifest.md +++ b/docs/creating_integration_manifest.md @@ -130,13 +130,14 @@ Zeroconf is a list so you can specify multiple types to match on. } ``` -Certain zeroconf types are very generic (i.e., `_printer._tcp.local.`, `_axis-video._tcp.local.` or `_http._tcp.local`). In such cases you should include a name or MAC address filter: +Certain zeroconf types are very generic (i.e., `_printer._tcp.local.`, `_axis-video._tcp.local.` or `_http._tcp.local`). In such cases you should include a Name (`name`), MAC address (`macaddress`), or Manufacturer (`manufacturer`) filter: ```json { "zeroconf": [ {"type":"_axis-video._tcp.local.","macaddress":"00408C*"}, - {"type":"_axis-video._tcp.local.","name":"Example*"}, + {"type":"_axis-video._tcp.local.","name":"example*"}, + {"type":"_airplay._tcp.local.","manufacturer":"samsung*"}, ] } ```