@lansweeper/data-platform-outbound-grpc 0.1.11 → 0.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"GetEntityRequest","field":[{"name":"entity_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"entityPath"}]},{"name":"GetEntityResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"entity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","oneofIndex":1,"jsonName":"entity","proto3Optional":true},{"name":"related","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}],"oneofDecl":[{"name":"_error_description"},{"name":"_entity"}]},{"name":"ListEntityRequest","field":[{"name":"filter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"filter"}]},{"name":"ListEntityResponse","field":[{"name":"entity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"entity"},{"name":"related","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}]},{"name":"EntityPath","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"source_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceId","proto3Optional":true},{"name":"source_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceType","proto3Optional":true},{"name":"entity_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"entityType","proto3Optional":true},{"name":"entity_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"entityId","proto3Optional":true}],"oneofDecl":[{"name":"_source_id"},{"name":"_source_type"},{"name":"_entity_type"},{"name":"_entity_id"}]},{"name":"Entity","field":[{"name":"asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Asset","oneofIndex":0,"jsonName":"asset"}],"oneofDecl":[{"name":"entity"}]},{"name":"Asset","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"id"},{"name":"last_synced","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"first_seen","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"firstSeen"},{"name":"last_updated","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastUpdated"},{"name":"last_enriched","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastEnriched"},{"name":"core","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CoreFields","jsonName":"core"},{"name":"hw","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardwareInfo","oneofIndex":0,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemInfo","oneofIndex":1,"jsonName":"os","proto3Optional":true},{"name":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":2,"jsonName":"softwareInventory","proto3Optional":true},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":3,"jsonName":"monitorInventory","proto3Optional":true}],"oneofDecl":[{"name":"_hw"},{"name":"_os"},{"name":"_software_inventory"},{"name":"_monitor_inventory"}]},{"name":"AssetType","field":[{"name":"ls_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsName"},{"name":"fing_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fingType","proto3Optional":true}],"oneofDecl":[{"name":"_fing_type"}]},{"name":"CoreFields","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetType","jsonName":"type"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"domain","proto3Optional":true},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"ipAddress","proto3Optional":true},{"name":"serial","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serial","proto3Optional":true},{"name":"mac","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"mac","proto3Optional":true},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"macVendor","proto3Optional":true},{"name":"sensor_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"sensorId","proto3Optional":true}],"oneofDecl":[{"name":"_domain"},{"name":"_ip_address"},{"name":"_serial"},{"name":"_mac"},{"name":"_mac_vendor"},{"name":"_sensor_id"}]},{"name":"HardwareInfo","field":[{"name":"type_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"typeId","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"model_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"modelId","proto3Optional":true},{"name":"family_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isFamily","proto3Optional":true},{"name":"serial","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"serial","proto3Optional":true},{"name":"type_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":11,"jsonName":"rank","proto3Optional":true},{"name":"catalog_brand","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":12,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":13,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":14,"jsonName":"catalogFamily","proto3Optional":true},{"name":"raw","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawHardwareInfo","oneofIndex":15,"jsonName":"raw","proto3Optional":true}],"oneofDecl":[{"name":"_type_id"},{"name":"_make_id"},{"name":"_model_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_serial"},{"name":"_type_name"},{"name":"_make_name"},{"name":"_model_name"},{"name":"_family_name"},{"name":"_cpe"},{"name":"_rank"},{"name":"_catalog_brand"},{"name":"_catalog_model"},{"name":"_catalog_family"},{"name":"_raw"}]},{"name":"RawHardwareInfo","field":[{"name":"architecture","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"architecture","proto3Optional":true},{"name":"model","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"model","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"}]},{"name":"OperatingSystemInfo","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true},{"name":"build","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"rank","proto3Optional":true},{"name":"catalog_brand","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":10,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_os","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","oneofIndex":11,"jsonName":"catalogOs","proto3Optional":true},{"name":"windows","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"}],"oneofDecl":[{"name":"raw"},{"name":"_id"},{"name":"_make_id"},{"name":"_name"},{"name":"_version"},{"name":"_build"},{"name":"_fw_version"},{"name":"_cpe"},{"name":"_fw_cpe"},{"name":"_rank"},{"name":"_catalog_brand"},{"name":"_catalog_os"}]},{"name":"WindowsRawOperatingSystemInfo","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"service_pack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"servicePack","proto3Optional":true},{"name":"build","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"build","proto3Optional":true},{"name":"version_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"versionName","proto3Optional":true},{"name":"build_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"buildNumber","proto3Optional":true},{"name":"product_type","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"productType","proto3Optional":true},{"name":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"osCode","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_build_number"},{"name":"_product_type"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"}]},{"name":"MonitorInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"monitor","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Monitor","jsonName":"monitor"}]},{"name":"Monitor","field":[{"name":"model","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"serial_number","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"manufacturer_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"manufacturerDate"},{"name":"catalog_brand","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":2,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_monitor","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","oneofIndex":3,"jsonName":"catalogMonitor","proto3Optional":true},{"name":"windows","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo","oneofIndex":0,"jsonName":"windows"}],"oneofDecl":[{"name":"raw"},{"name":"_serial_number"},{"name":"_catalog_brand"},{"name":"_catalog_monitor"}]},{"name":"WindowsRawMonitorInfo","field":[{"name":"model","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"pnp_device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"serial_number","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"serial_hex","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serialHex","proto3Optional":true},{"name":"vesa_manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vesaManufacturer","proto3Optional":true},{"name":"key_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"keyManufacturer","proto3Optional":true},{"name":"manufacturer_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"manufacturerDate","proto3Optional":true},{"name":"device_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"deviceId","proto3Optional":true}],"oneofDecl":[{"name":"_pnp_device_id"},{"name":"_serial_number"},{"name":"_serial_hex"},{"name":"_vesa_manufacturer"},{"name":"_key_manufacturer"},{"name":"_manufacturer_date"},{"name":"_device_id"}]},{"name":"SoftwareInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"software","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","jsonName":"software"}]},{"name":"Software","field":[{"name":"rank","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"rank","proto3Optional":true},{"name":"type_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"typeId","proto3Optional":true},{"name":"cat_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"catId","proto3Optional":true},{"name":"make_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"makeId","proto3Optional":true},{"name":"sw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"swId","proto3Optional":true},{"name":"parent_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"type_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"cat_name","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"catName","proto3Optional":true},{"name":"make_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"makeName","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"version","proto3Optional":true},{"name":"market_ver","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"marketVer","proto3Optional":true},{"name":"edition","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"edition","proto3Optional":true},{"name":"build","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"build","proto3Optional":true},{"name":"arch","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"arch","proto3Optional":true},{"name":"lang","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"lang","proto3Optional":true},{"name":"cpe","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"cpe","proto3Optional":true},{"name":"catalog_brand","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":17,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_software","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":18,"jsonName":"catalogSoftware","proto3Optional":true},{"name":"catalog_latest","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":19,"jsonName":"catalogLatest","proto3Optional":true},{"name":"raw","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawSoftware","jsonName":"raw"},{"name":"raw_hash","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"rawHash","proto3Optional":true},{"name":"nre_hash","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"nreHash","proto3Optional":true}],"oneofDecl":[{"name":"_rank"},{"name":"_type_id"},{"name":"_cat_id"},{"name":"_make_id"},{"name":"_sw_id"},{"name":"_parent_id"},{"name":"_type_name"},{"name":"_cat_name"},{"name":"_make_name"},{"name":"_name"},{"name":"_version"},{"name":"_market_ver"},{"name":"_edition"},{"name":"_build"},{"name":"_arch"},{"name":"_lang"},{"name":"_cpe"},{"name":"_catalog_brand"},{"name":"_catalog_software"},{"name":"_catalog_latest"},{"name":"_raw_hash"},{"name":"_nre_hash"}]},{"name":"RawSoftware","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"vendor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"version","proto3Optional":true},{"name":"info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"exe_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"exePath","proto3Optional":true},{"name":"arch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"arch","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"installDate","proto3Optional":true},{"name":"source_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sourceType","proto3Optional":true},{"name":"sw_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"swId","proto3Optional":true},{"name":"is_current_user","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isCurrentUser","proto3Optional":true}],"oneofDecl":[{"name":"_vendor"},{"name":"_version"},{"name":"_info"},{"name":"_exe_path"},{"name":"_arch"},{"name":"_install_date"},{"name":"_source_type"},{"name":"_sw_id"},{"name":"_is_current_user"}]},{"name":"CatalogBrand","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"parent_id","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"parentId","proto3Optional":true},{"name":"last_update_time","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"country_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryCode","proto3Optional":true},{"name":"logo_image_url","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"twitterAccount","proto3Optional":true},{"name":"warranty_url","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"warrantyUrl","proto3Optional":true},{"name":"warranty_direct_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"warrantyDirectUrl","proto3Optional":true},{"name":"community_url","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"communityUrl","proto3Optional":true},{"name":"linkedin_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"linkedinAccount","proto3Optional":true},{"name":"instagram_account","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"instagramAccount","proto3Optional":true},{"name":"youtube_account","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"youtubeAccount","proto3Optional":true},{"name":"pinterest_account","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pinterestAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_parent_id"},{"name":"_last_update_time"},{"name":"_country_code"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_warranty_url"},{"name":"_warranty_direct_url"},{"name":"_community_url"},{"name":"_linkedin_account"},{"name":"_instagram_account"},{"name":"_youtube_account"},{"name":"_pinterest_account"},{"name":"_class_hardware"},{"name":"_class_software"},{"name":"_class_consumer"},{"name":"_class_enterprise"},{"name":"_class_industrial"},{"name":"_class_individual"},{"name":"_match_score"}]},{"name":"CatalogModel","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"makeId"},{"name":"device_model","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceModel"},{"name":"device_type_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"deviceTypeId","proto3Optional":true},{"name":"device_model_code","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"deviceModelCode"},{"name":"family_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isFamily","proto3Optional":true},{"name":"manual_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manualUrl","proto3Optional":true},{"name":"faq_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"faqUrl","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"eosDate","proto3Optional":true},{"name":"lifecyle_confidence","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"price_class","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"priceClass","proto3Optional":true},{"name":"product_class","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"productClass","proto3Optional":true},{"name":"sh_ifttt_handle","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"shIftttHandle","proto3Optional":true},{"name":"sh_google_ass_langs","number":18,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shGoogleAssLangs"},{"name":"sh_alexa_langs","number":19,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shAlexaLangs"},{"name":"sh_hass_handle","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"shHassHandle","proto3Optional":true},{"name":"sh_apple_home_kit","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"shAppleHomeKit","proto3Optional":true},{"name":"sh_open_hab_handle","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"shOpenHabHandle","proto3Optional":true},{"name":"nist_cpe","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"nistCpe","proto3Optional":true},{"name":"popularity","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"popularity","proto3Optional":true},{"name":"last_update_time","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":17,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_device_type_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_manual_url"},{"name":"_faq_url"},{"name":"_release_date"},{"name":"_disc_date"},{"name":"_eos_date"},{"name":"_lifecyle_confidence"},{"name":"_price_class"},{"name":"_product_class"},{"name":"_sh_ifttt_handle"},{"name":"_sh_hass_handle"},{"name":"_sh_apple_home_kit"},{"name":"_sh_open_hab_handle"},{"name":"_nist_cpe"},{"name":"_popularity"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogOs","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"os_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"osName"},{"name":"os_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"osVersion","proto3Optional":true},{"name":"os_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"osBuild","proto3Optional":true},{"name":"os_version_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"osVersionName","proto3Optional":true},{"name":"override_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"logo_image_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"twitterAccount","proto3Optional":true},{"name":"nist_cpe","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"nistCpe","proto3Optional":true},{"name":"last_update_time","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":21,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_os_version"},{"name":"_os_build"},{"name":"_os_version_name"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_nist_cpe"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogSoftware","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"sw_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swName"},{"name":"sw_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"swVersion","proto3Optional":true},{"name":"sw_market_ver","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"swMarketVer","proto3Optional":true},{"name":"sw_edition","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"swEdition","proto3Optional":true},{"name":"sw_lang","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"swLang","proto3Optional":true},{"name":"sw_build","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"swBuild","proto3Optional":true},{"name":"make_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"parentId","proto3Optional":true},{"name":"latest_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"latestId","proto3Optional":true},{"name":"sw_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"swType","proto3Optional":true},{"name":"sw_category","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"swCategory","proto3Optional":true},{"name":"release_date","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":10,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":11,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":12,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":13,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"flag_latest","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"flagLatest","proto3Optional":true},{"name":"flag_widespread","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"flagWidespread","proto3Optional":true},{"name":"flag_deprecated","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"flagDeprecated","proto3Optional":true},{"name":"last_update_time","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":18,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_sw_version"},{"name":"_sw_market_ver"},{"name":"_sw_edition"},{"name":"_sw_lang"},{"name":"_sw_build"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_latest_id"},{"name":"_sw_type"},{"name":"_sw_category"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_flag_latest"},{"name":"_flag_widespread"},{"name":"_flag_deprecated"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogMonitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"model","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"vendor_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendorId","proto3Optional":true},{"name":"make_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"family_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isFamily","proto3Optional":true},{"name":"official_page","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"officialPage","proto3Optional":true},{"name":"support_page","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"supportPage","proto3Optional":true},{"name":"size_inch","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":6,"jsonName":"sizeInch","proto3Optional":true},{"name":"max_resolution","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"maxResolution","proto3Optional":true},{"name":"aspect_ratio","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"aspectRatio","proto3Optional":true},{"name":"response_time_ms","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":9,"jsonName":"responseTimeMs","proto3Optional":true},{"name":"hd_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hdType","proto3Optional":true},{"name":"display_tech","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"displayTech","proto3Optional":true},{"name":"refresh_rate","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"refreshRate","proto3Optional":true},{"name":"panel","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"panel","proto3Optional":true},{"name":"height_cm","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":14,"jsonName":"heightCm","proto3Optional":true},{"name":"width_cm","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":15,"jsonName":"widthCm","proto3Optional":true},{"name":"diagonal_cm","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":16,"jsonName":"diagonalCm","proto3Optional":true},{"name":"usb_upstream","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"usbUpstream","proto3Optional":true},{"name":"nr_usb_upstream","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"nrUsbUpstream","proto3Optional":true},{"name":"nr_usb_type_a_downstream","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"nrUsbTypeADownstream","proto3Optional":true},{"name":"nr_hdmi","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"nrHdmi","proto3Optional":true},{"name":"nr_vga","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"nrVga","proto3Optional":true},{"name":"nr_dvi","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"nrDvi","proto3Optional":true},{"name":"hdmi_version","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":23,"jsonName":"hdmiVersion","proto3Optional":true},{"name":"nr_display_ports","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":24,"jsonName":"nrDisplayPorts","proto3Optional":true},{"name":"display_port_version","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":25,"jsonName":"displayPortVersion","proto3Optional":true},{"name":"energy_class","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"energyClass","proto3Optional":true},{"name":"sdr_per_1000_u","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":27,"jsonName":"sdrPer1000U","proto3Optional":true},{"name":"average_watt_usage","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":28,"jsonName":"averageWattUsage","proto3Optional":true},{"name":"max_watt_usage","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":29,"jsonName":"maxWattUsage","proto3Optional":true},{"name":"watt_usage_standby","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":30,"jsonName":"wattUsageStandby","proto3Optional":true},{"name":"watt_power_save","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":31,"jsonName":"wattPowerSave","proto3Optional":true},{"name":"ac_voltage","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":32,"jsonName":"acVoltage","proto3Optional":true},{"name":"ac_freq_hz","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"acFreqHz","proto3Optional":true},{"name":"current_a","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":34,"jsonName":"currentA","proto3Optional":true},{"name":"feature_aio","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":35,"jsonName":"featureAio","proto3Optional":true},{"name":"feature_camera","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":36,"jsonName":"featureCamera","proto3Optional":true},{"name":"feature_speakers","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":37,"jsonName":"featureSpeakers","proto3Optional":true},{"name":"feature_hdmi","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":38,"jsonName":"featureHdmi","proto3Optional":true},{"name":"feature_eth","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":39,"jsonName":"featureEth","proto3Optional":true},{"name":"feature_portrait","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":40,"jsonName":"featurePortrait","proto3Optional":true},{"name":"feature_curved","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":41,"jsonName":"featureCurved","proto3Optional":true},{"name":"last_update_time","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":42,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":43,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_vendor_id"},{"name":"_make_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_official_page"},{"name":"_support_page"},{"name":"_size_inch"},{"name":"_max_resolution"},{"name":"_aspect_ratio"},{"name":"_response_time_ms"},{"name":"_hd_type"},{"name":"_display_tech"},{"name":"_refresh_rate"},{"name":"_panel"},{"name":"_height_cm"},{"name":"_width_cm"},{"name":"_diagonal_cm"},{"name":"_usb_upstream"},{"name":"_nr_usb_upstream"},{"name":"_nr_usb_type_a_downstream"},{"name":"_nr_hdmi"},{"name":"_nr_vga"},{"name":"_nr_dvi"},{"name":"_hdmi_version"},{"name":"_nr_display_ports"},{"name":"_display_port_version"},{"name":"_energy_class"},{"name":"_sdr_per_1000_u"},{"name":"_average_watt_usage"},{"name":"_max_watt_usage"},{"name":"_watt_usage_standby"},{"name":"_watt_power_save"},{"name":"_ac_voltage"},{"name":"_ac_freq_hz"},{"name":"_current_a"},{"name":"_feature_aio"},{"name":"_feature_camera"},{"name":"_feature_speakers"},{"name":"_feature_hdmi"},{"name":"_feature_eth"},{"name":"_feature_portrait"},{"name":"_feature_curved"},{"name":"_last_update_time"},{"name":"_match_score"}]}],"service":[{"name":"DataCoreOutboundService","method":[{"name":"GetEntity","inputType":".com.lansweeper.dp.outbound.v1.GetEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.GetEntityResponse","options":{}},{"name":"ListEntities","inputType":".com.lansweeper.dp.outbound.v1.ListEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.ListEntityResponse","options":{},"serverStreaming":true}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,477,1]},{"path":[12],"span":[7,0,18],"leadingComments":"\n Copyright Lansweeper (c)\n\n This files contains the Data Access API and the definition of outbound model\n\n N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc\n"},{"path":[2],"span":[8,0,38]},{"path":[8],"span":[10,0,37]},{"path":[8,11],"span":[10,0,37]},{"path":[8],"span":[11,0,34]},{"path":[8,10],"span":[11,0,34]},{"path":[3,0],"span":[13,0,41]},{"path":[6,0],"span":[22,0,30,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[22,8,31]},{"path":[6,0,2,0],"span":[25,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[25,6,15]},{"path":[6,0,2,0,2],"span":[25,17,33]},{"path":[6,0,2,0,3],"span":[25,44,61]},{"path":[6,0,2,1],"span":[28,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[28,6,18]},{"path":[6,0,2,1,2],"span":[28,19,36]},{"path":[6,0,2,1,6],"span":[28,47,53]},{"path":[6,0,2,1,3],"span":[28,54,72]},{"path":[4,0],"span":[35,0,38,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[35,8,24]},{"path":[4,0,2,0],"span":[36,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[36,2,12]},{"path":[4,0,2,0,1],"span":[36,13,24]},{"path":[4,0,2,0,3],"span":[36,27,28]},{"path":[4,1],"span":[40,0,46,1]},{"path":[4,1,1],"span":[40,8,25]},{"path":[4,1,2,0],"span":[41,2,19]},{"path":[4,1,2,0,5],"span":[41,2,6]},{"path":[4,1,2,0,1],"span":[41,7,14]},{"path":[4,1,2,0,3],"span":[41,17,18]},{"path":[4,1,2,1],"span":[42,2,40]},{"path":[4,1,2,1,4],"span":[42,2,10]},{"path":[4,1,2,1,5],"span":[42,11,17]},{"path":[4,1,2,1,1],"span":[42,18,35]},{"path":[4,1,2,1,3],"span":[42,38,39]},{"path":[4,1,2,2],"span":[44,2,29]},{"path":[4,1,2,2,4],"span":[44,2,10]},{"path":[4,1,2,2,6],"span":[44,11,17]},{"path":[4,1,2,2,1],"span":[44,18,24]},{"path":[4,1,2,2,3],"span":[44,27,28]},{"path":[4,1,2,3],"span":[45,2,30]},{"path":[4,1,2,3,4],"span":[45,2,10]},{"path":[4,1,2,3,6],"span":[45,11,17]},{"path":[4,1,2,3,1],"span":[45,18,25]},{"path":[4,1,2,3,3],"span":[45,28,29]},{"path":[4,2],"span":[48,0,50,1]},{"path":[4,2,1],"span":[48,8,25]},{"path":[4,2,2,0],"span":[49,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[49,2,12]},{"path":[4,2,2,0,1],"span":[49,13,19]},{"path":[4,2,2,0,3],"span":[49,22,23]},{"path":[4,3],"span":[52,0,55,1]},{"path":[4,3,1],"span":[52,8,26]},{"path":[4,3,2,0],"span":[53,2,20]},{"path":[4,3,2,0,6],"span":[53,2,8]},{"path":[4,3,2,0,1],"span":[53,9,15]},{"path":[4,3,2,0,3],"span":[53,18,19]},{"path":[4,3,2,1],"span":[54,2,30]},{"path":[4,3,2,1,4],"span":[54,2,10]},{"path":[4,3,2,1,6],"span":[54,11,17]},{"path":[4,3,2,1,1],"span":[54,18,25]},{"path":[4,3,2,1,3],"span":[54,28,29]},{"path":[4,4],"span":[59,0,65,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,4,1],"span":[59,8,18]},{"path":[4,4,2,0],"span":[60,2,21]},{"path":[4,4,2,0,5],"span":[60,2,8]},{"path":[4,4,2,0,1],"span":[60,9,16]},{"path":[4,4,2,0,3],"span":[60,19,20]},{"path":[4,4,2,1],"span":[61,2,32]},{"path":[4,4,2,1,4],"span":[61,2,10]},{"path":[4,4,2,1,5],"span":[61,11,17]},{"path":[4,4,2,1,1],"span":[61,18,27]},{"path":[4,4,2,1,3],"span":[61,30,31]},{"path":[4,4,2,2],"span":[62,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,4,2,2,4],"span":[62,2,10]},{"path":[4,4,2,2,5],"span":[62,11,17]},{"path":[4,4,2,2,1],"span":[62,18,29]},{"path":[4,4,2,2,3],"span":[62,32,33]},{"path":[4,4,2,3],"span":[63,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,4,2,3,4],"span":[63,2,10]},{"path":[4,4,2,3,5],"span":[63,11,17]},{"path":[4,4,2,3,1],"span":[63,18,29]},{"path":[4,4,2,3,3],"span":[63,32,33]},{"path":[4,4,2,4],"span":[64,2,32]},{"path":[4,4,2,4,4],"span":[64,2,10]},{"path":[4,4,2,4,5],"span":[64,11,17]},{"path":[4,4,2,4,1],"span":[64,18,27]},{"path":[4,4,2,4,3],"span":[64,30,31]},{"path":[4,5],"span":[67,0,73,1]},{"path":[4,5,1],"span":[67,8,14]},{"path":[4,5,8,0],"span":[68,2,72,3]},{"path":[4,5,8,0,1],"span":[68,8,14]},{"path":[4,5,2,0],"span":[69,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,5,2,0,6],"span":[69,4,9]},{"path":[4,5,2,0,1],"span":[69,10,15]},{"path":[4,5,2,0,3],"span":[69,18,19]},{"path":[4,6],"span":[75,0,99,1]},{"path":[4,6,1],"span":[75,8,13]},{"path":[4,6,2,0],"span":[77,2,20]},{"path":[4,6,2,0,6],"span":[77,2,12]},{"path":[4,6,2,0,1],"span":[77,13,15]},{"path":[4,6,2,0,3],"span":[77,18,19]},{"path":[4,6,2,1],"span":[79,2,44]},{"path":[4,6,2,1,6],"span":[79,2,27]},{"path":[4,6,2,1,1],"span":[79,28,39]},{"path":[4,6,2,1,3],"span":[79,42,43]},{"path":[4,6,2,2],"span":[80,2,43]},{"path":[4,6,2,2,6],"span":[80,2,27]},{"path":[4,6,2,2,1],"span":[80,28,38]},{"path":[4,6,2,2,3],"span":[80,41,42]},{"path":[4,6,2,3],"span":[81,2,45]},{"path":[4,6,2,3,6],"span":[81,2,27]},{"path":[4,6,2,3,1],"span":[81,28,40]},{"path":[4,6,2,3,3],"span":[81,43,44]},{"path":[4,6,2,4],"span":[82,2,46]},{"path":[4,6,2,4,6],"span":[82,2,27]},{"path":[4,6,2,4,1],"span":[82,28,41]},{"path":[4,6,2,4,3],"span":[82,44,45]},{"path":[4,6,2,5],"span":[84,2,22]},{"path":[4,6,2,5,6],"span":[84,2,12]},{"path":[4,6,2,5,1],"span":[84,13,17]},{"path":[4,6,2,5,3],"span":[84,20,21]},{"path":[4,6,2,6],"span":[86,2,31]},{"path":[4,6,2,6,4],"span":[86,2,10]},{"path":[4,6,2,6,6],"span":[86,11,23]},{"path":[4,6,2,6,1],"span":[86,24,26]},{"path":[4,6,2,6,3],"span":[86,29,30]},{"path":[4,6,2,7],"span":[87,2,38]},{"path":[4,6,2,7,4],"span":[87,2,10]},{"path":[4,6,2,7,6],"span":[87,11,30]},{"path":[4,6,2,7,1],"span":[87,31,33]},{"path":[4,6,2,7,3],"span":[87,36,37]},{"path":[4,6,2,8],"span":[88,2,52]},{"path":[4,6,2,8,4],"span":[88,2,10]},{"path":[4,6,2,8,6],"span":[88,11,28]},{"path":[4,6,2,8,1],"span":[88,29,47]},{"path":[4,6,2,8,3],"span":[88,50,51]},{"path":[4,6,2,9],"span":[90,2,51]},{"path":[4,6,2,9,4],"span":[90,2,10]},{"path":[4,6,2,9,6],"span":[90,11,27]},{"path":[4,6,2,9,1],"span":[90,28,45]},{"path":[4,6,2,9,3],"span":[90,48,50]},{"path":[4,7],"span":[105,0,110,1],"leadingComments":"\n Asset Type enables customers to manage the settings for a\n category of information in a centralized, reusable way.\n"},{"path":[4,7,1],"span":[105,8,17]},{"path":[4,7,2,0],"span":[107,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,7,2,0,5],"span":[107,2,8]},{"path":[4,7,2,0,1],"span":[107,9,16]},{"path":[4,7,2,0,3],"span":[107,19,20]},{"path":[4,7,2,1],"span":[109,2,32],"leadingComments":" Fing Type\n"},{"path":[4,7,2,1,4],"span":[109,2,10]},{"path":[4,7,2,1,5],"span":[109,11,17]},{"path":[4,7,2,1,1],"span":[109,18,27]},{"path":[4,7,2,1,3],"span":[109,30,31]},{"path":[4,8],"span":[115,0,124,1],"leadingComments":"\n\n"},{"path":[4,8,1],"span":[115,8,18]},{"path":[4,8,2,0],"span":[116,2,21]},{"path":[4,8,2,0,6],"span":[116,2,11]},{"path":[4,8,2,0,1],"span":[116,12,16]},{"path":[4,8,2,0,3],"span":[116,19,20]},{"path":[4,8,2,1],"span":[117,2,18]},{"path":[4,8,2,1,5],"span":[117,2,8]},{"path":[4,8,2,1,1],"span":[117,9,13]},{"path":[4,8,2,1,3],"span":[117,16,17]},{"path":[4,8,2,2],"span":[118,2,29]},{"path":[4,8,2,2,4],"span":[118,2,10]},{"path":[4,8,2,2,5],"span":[118,11,17]},{"path":[4,8,2,2,1],"span":[118,18,24]},{"path":[4,8,2,2,3],"span":[118,27,28]},{"path":[4,8,2,3],"span":[119,2,33]},{"path":[4,8,2,3,4],"span":[119,2,10]},{"path":[4,8,2,3,5],"span":[119,11,17]},{"path":[4,8,2,3,1],"span":[119,18,28]},{"path":[4,8,2,3,3],"span":[119,31,32]},{"path":[4,8,2,4],"span":[120,2,29]},{"path":[4,8,2,4,4],"span":[120,2,10]},{"path":[4,8,2,4,5],"span":[120,11,17]},{"path":[4,8,2,4,1],"span":[120,18,24]},{"path":[4,8,2,4,3],"span":[120,27,28]},{"path":[4,8,2,5],"span":[121,2,26]},{"path":[4,8,2,5,4],"span":[121,2,10]},{"path":[4,8,2,5,5],"span":[121,11,17]},{"path":[4,8,2,5,1],"span":[121,18,21]},{"path":[4,8,2,5,3],"span":[121,24,25]},{"path":[4,8,2,6],"span":[122,2,33]},{"path":[4,8,2,6,4],"span":[122,2,10]},{"path":[4,8,2,6,5],"span":[122,11,17]},{"path":[4,8,2,6,1],"span":[122,18,28]},{"path":[4,8,2,6,3],"span":[122,31,32]},{"path":[4,8,2,7],"span":[123,2,32]},{"path":[4,8,2,7,4],"span":[123,2,10]},{"path":[4,8,2,7,5],"span":[123,11,17]},{"path":[4,8,2,7,1],"span":[123,18,27]},{"path":[4,8,2,7,3],"span":[123,30,31]},{"path":[4,9],"span":[126,0,146,1]},{"path":[4,9,1],"span":[126,8,20]},{"path":[4,9,2,0],"span":[127,2,29]},{"path":[4,9,2,0,4],"span":[127,2,10]},{"path":[4,9,2,0,5],"span":[127,11,16]},{"path":[4,9,2,0,1],"span":[127,17,24]},{"path":[4,9,2,0,3],"span":[127,27,28]},{"path":[4,9,2,1],"span":[128,2,29]},{"path":[4,9,2,1,4],"span":[128,2,10]},{"path":[4,9,2,1,5],"span":[128,11,16]},{"path":[4,9,2,1,1],"span":[128,17,24]},{"path":[4,9,2,1,3],"span":[128,27,28]},{"path":[4,9,2,2],"span":[129,2,30]},{"path":[4,9,2,2,4],"span":[129,2,10]},{"path":[4,9,2,2,5],"span":[129,11,16]},{"path":[4,9,2,2,1],"span":[129,17,25]},{"path":[4,9,2,2,3],"span":[129,28,29]},{"path":[4,9,2,3],"span":[130,2,31]},{"path":[4,9,2,3,4],"span":[130,2,10]},{"path":[4,9,2,3,5],"span":[130,11,16]},{"path":[4,9,2,3,1],"span":[130,17,26]},{"path":[4,9,2,3,3],"span":[130,29,30]},{"path":[4,9,2,4],"span":[131,2,30]},{"path":[4,9,2,4,4],"span":[131,2,10]},{"path":[4,9,2,4,5],"span":[131,11,15]},{"path":[4,9,2,4,1],"span":[131,16,25]},{"path":[4,9,2,4,3],"span":[131,28,29]},{"path":[4,9,2,5],"span":[132,2,29]},{"path":[4,9,2,5,4],"span":[132,2,10]},{"path":[4,9,2,5,5],"span":[132,11,17]},{"path":[4,9,2,5,1],"span":[132,18,24]},{"path":[4,9,2,5,3],"span":[132,27,28]},{"path":[4,9,2,6],"span":[133,2,33]},{"path":[4,9,2,6,4],"span":[133,2,10]},{"path":[4,9,2,6,5],"span":[133,11,17]},{"path":[4,9,2,6,1],"span":[133,18,27]},{"path":[4,9,2,6,3],"span":[133,30,32]},{"path":[4,9,2,7],"span":[134,2,33]},{"path":[4,9,2,7,4],"span":[134,2,10]},{"path":[4,9,2,7,5],"span":[134,11,17]},{"path":[4,9,2,7,1],"span":[134,18,27]},{"path":[4,9,2,7,3],"span":[134,30,32]},{"path":[4,9,2,8],"span":[135,2,34]},{"path":[4,9,2,8,4],"span":[135,2,10]},{"path":[4,9,2,8,5],"span":[135,11,17]},{"path":[4,9,2,8,1],"span":[135,18,28]},{"path":[4,9,2,8,3],"span":[135,31,33]},{"path":[4,9,2,9],"span":[136,2,35]},{"path":[4,9,2,9,4],"span":[136,2,10]},{"path":[4,9,2,9,5],"span":[136,11,17]},{"path":[4,9,2,9,1],"span":[136,18,29]},{"path":[4,9,2,9,3],"span":[136,32,34]},{"path":[4,9,2,10],"span":[138,2,27]},{"path":[4,9,2,10,4],"span":[138,2,10]},{"path":[4,9,2,10,5],"span":[138,11,17]},{"path":[4,9,2,10,1],"span":[138,18,21]},{"path":[4,9,2,10,3],"span":[138,24,26]},{"path":[4,9,2,11],"span":[139,2,27]},{"path":[4,9,2,11,4],"span":[139,2,10]},{"path":[4,9,2,11,5],"span":[139,11,16]},{"path":[4,9,2,11,1],"span":[139,17,21]},{"path":[4,9,2,11,3],"span":[139,24,26]},{"path":[4,9,2,12],"span":[141,2,43]},{"path":[4,9,2,12,4],"span":[141,2,10]},{"path":[4,9,2,12,6],"span":[141,11,23]},{"path":[4,9,2,12,1],"span":[141,24,37]},{"path":[4,9,2,12,3],"span":[141,40,42]},{"path":[4,9,2,13],"span":[142,2,43]},{"path":[4,9,2,13,4],"span":[142,2,10]},{"path":[4,9,2,13,6],"span":[142,11,23]},{"path":[4,9,2,13,1],"span":[142,24,37]},{"path":[4,9,2,13,3],"span":[142,40,42]},{"path":[4,9,2,14],"span":[143,2,44]},{"path":[4,9,2,14,4],"span":[143,2,10]},{"path":[4,9,2,14,6],"span":[143,11,23]},{"path":[4,9,2,14,1],"span":[143,24,38]},{"path":[4,9,2,14,3],"span":[143,41,43]},{"path":[4,9,2,15],"span":[145,2,36]},{"path":[4,9,2,15,4],"span":[145,2,10]},{"path":[4,9,2,15,6],"span":[145,11,26]},{"path":[4,9,2,15,1],"span":[145,27,30]},{"path":[4,9,2,15,3],"span":[145,33,35]},{"path":[4,10],"span":[148,0,153,1]},{"path":[4,10,1],"span":[148,8,23]},{"path":[4,10,2,0],"span":[149,2,35]},{"path":[4,10,2,0,4],"span":[149,2,10]},{"path":[4,10,2,0,5],"span":[149,11,17]},{"path":[4,10,2,0,1],"span":[149,18,30]},{"path":[4,10,2,0,3],"span":[149,33,34]},{"path":[4,10,2,1],"span":[150,2,28]},{"path":[4,10,2,1,4],"span":[150,2,10]},{"path":[4,10,2,1,5],"span":[150,11,17]},{"path":[4,10,2,1,1],"span":[150,18,23]},{"path":[4,10,2,1,3],"span":[150,26,27]},{"path":[4,10,2,2],"span":[151,2,35]},{"path":[4,10,2,2,4],"span":[151,2,10]},{"path":[4,10,2,2,5],"span":[151,11,17]},{"path":[4,10,2,2,1],"span":[151,18,30]},{"path":[4,10,2,2,3],"span":[151,33,34]},{"path":[4,10,2,3],"span":[152,2,36]},{"path":[4,10,2,3,4],"span":[152,2,10]},{"path":[4,10,2,3,5],"span":[152,11,17]},{"path":[4,10,2,3,1],"span":[152,18,31]},{"path":[4,10,2,3,3],"span":[152,34,35]},{"path":[4,11],"span":[155,0,175,1]},{"path":[4,11,1],"span":[155,8,27]},{"path":[4,11,2,0],"span":[156,2,24]},{"path":[4,11,2,0,4],"span":[156,2,10]},{"path":[4,11,2,0,5],"span":[156,11,16]},{"path":[4,11,2,0,1],"span":[156,17,19]},{"path":[4,11,2,0,3],"span":[156,22,23]},{"path":[4,11,2,1],"span":[157,2,30]},{"path":[4,11,2,1,4],"span":[157,2,10]},{"path":[4,11,2,1,5],"span":[157,11,16]},{"path":[4,11,2,1,1],"span":[157,17,24]},{"path":[4,11,2,1,3],"span":[157,27,29]},{"path":[4,11,2,2],"span":[158,2,27]},{"path":[4,11,2,2,4],"span":[158,2,10]},{"path":[4,11,2,2,5],"span":[158,11,17]},{"path":[4,11,2,2,1],"span":[158,18,22]},{"path":[4,11,2,2,3],"span":[158,25,26]},{"path":[4,11,2,3],"span":[159,2,30]},{"path":[4,11,2,3,4],"span":[159,2,10]},{"path":[4,11,2,3,5],"span":[159,11,17]},{"path":[4,11,2,3,1],"span":[159,18,25]},{"path":[4,11,2,3,3],"span":[159,28,29]},{"path":[4,11,2,4],"span":[160,2,28]},{"path":[4,11,2,4,4],"span":[160,2,10]},{"path":[4,11,2,4,5],"span":[160,11,17]},{"path":[4,11,2,4,1],"span":[160,18,23]},{"path":[4,11,2,4,3],"span":[160,26,27]},{"path":[4,11,2,5],"span":[162,2,33]},{"path":[4,11,2,5,4],"span":[162,2,10]},{"path":[4,11,2,5,5],"span":[162,11,17]},{"path":[4,11,2,5,1],"span":[162,18,28]},{"path":[4,11,2,5,3],"span":[162,31,32]},{"path":[4,11,2,6],"span":[164,2,26]},{"path":[4,11,2,6,4],"span":[164,2,10]},{"path":[4,11,2,6,5],"span":[164,11,17]},{"path":[4,11,2,6,1],"span":[164,18,21]},{"path":[4,11,2,6,3],"span":[164,24,25]},{"path":[4,11,2,7],"span":[165,2,29]},{"path":[4,11,2,7,4],"span":[165,2,10]},{"path":[4,11,2,7,5],"span":[165,11,17]},{"path":[4,11,2,7,1],"span":[165,18,24]},{"path":[4,11,2,7,3],"span":[165,27,28]},{"path":[4,11,2,8],"span":[167,2,26]},{"path":[4,11,2,8,4],"span":[167,2,10]},{"path":[4,11,2,8,5],"span":[167,11,16]},{"path":[4,11,2,8,1],"span":[167,17,21]},{"path":[4,11,2,8,3],"span":[167,24,25]},{"path":[4,11,2,9],"span":[169,2,42]},{"path":[4,11,2,9,4],"span":[169,2,10]},{"path":[4,11,2,9,6],"span":[169,11,23]},{"path":[4,11,2,9,1],"span":[169,24,37]},{"path":[4,11,2,9,3],"span":[169,40,41]},{"path":[4,11,2,10],"span":[170,2,37]},{"path":[4,11,2,10,4],"span":[170,2,10]},{"path":[4,11,2,10,6],"span":[170,11,20]},{"path":[4,11,2,10,1],"span":[170,21,31]},{"path":[4,11,2,10,3],"span":[170,34,36]},{"path":[4,11,8,0],"span":[172,2,174,3]},{"path":[4,11,8,0,1],"span":[172,8,11]},{"path":[4,11,2,11],"span":[173,4,47]},{"path":[4,11,2,11,6],"span":[173,4,33]},{"path":[4,11,2,11,1],"span":[173,34,41]},{"path":[4,11,2,11,3],"span":[173,44,46]},{"path":[4,12],"span":[177,0,190,1]},{"path":[4,12,1],"span":[177,8,37]},{"path":[4,12,2,0],"span":[178,2,30]},{"path":[4,12,2,0,4],"span":[178,2,10]},{"path":[4,12,2,0,5],"span":[178,11,17]},{"path":[4,12,2,0,1],"span":[178,18,25]},{"path":[4,12,2,0,3],"span":[178,28,29]},{"path":[4,12,2,1],"span":[179,2,34]},{"path":[4,12,2,1,4],"span":[179,2,10]},{"path":[4,12,2,1,5],"span":[179,11,16]},{"path":[4,12,2,1,1],"span":[179,17,29]},{"path":[4,12,2,1,3],"span":[179,32,33]},{"path":[4,12,2,2],"span":[180,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,12,2,2,4],"span":[180,2,10]},{"path":[4,12,2,2,5],"span":[180,11,17]},{"path":[4,12,2,2,1],"span":[180,18,23]},{"path":[4,12,2,2,3],"span":[180,26,27]},{"path":[4,12,2,3],"span":[181,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,12,2,3,4],"span":[181,2,10]},{"path":[4,12,2,3,5],"span":[181,11,17]},{"path":[4,12,2,3,1],"span":[181,18,30]},{"path":[4,12,2,3,3],"span":[181,33,34]},{"path":[4,12,2,4],"span":[182,2,35],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,12,2,4,4],"span":[182,2,10]},{"path":[4,12,2,4,5],"span":[182,11,17]},{"path":[4,12,2,4,1],"span":[182,18,30]},{"path":[4,12,2,4,3],"span":[182,33,34]},{"path":[4,12,2,5],"span":[183,2,34],"trailingComments":" WindowsProductType: 1\n"},{"path":[4,12,2,5,4],"span":[183,2,10]},{"path":[4,12,2,5,5],"span":[183,11,16]},{"path":[4,12,2,5,1],"span":[183,17,29]},{"path":[4,12,2,5,3],"span":[183,32,33]},{"path":[4,12,2,6],"span":[185,2,41]},{"path":[4,12,2,6,4],"span":[185,2,10]},{"path":[4,12,2,6,5],"span":[185,11,15]},{"path":[4,12,2,6,1],"span":[185,16,36]},{"path":[4,12,2,6,3],"span":[185,39,40]},{"path":[4,12,2,7],"span":[186,2,35]},{"path":[4,12,2,7,4],"span":[186,2,10]},{"path":[4,12,2,7,5],"span":[186,11,15]},{"path":[4,12,2,7,1],"span":[186,16,30]},{"path":[4,12,2,7,3],"span":[186,33,34]},{"path":[4,12,2,8],"span":[187,2,39]},{"path":[4,12,2,8,4],"span":[187,2,10]},{"path":[4,12,2,8,5],"span":[187,11,15]},{"path":[4,12,2,8,1],"span":[187,16,34]},{"path":[4,12,2,8,3],"span":[187,37,38]},{"path":[4,12,2,9],"span":[189,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,12,2,9,4],"span":[189,2,10]},{"path":[4,12,2,9,5],"span":[189,11,17]},{"path":[4,12,2,9,1],"span":[189,18,25]},{"path":[4,12,2,9,3],"span":[189,28,30]},{"path":[4,13],"span":[194,0,197,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,13,1],"span":[194,8,24]},{"path":[4,13,2,0],"span":[195,2,42]},{"path":[4,13,2,0,6],"span":[195,2,27]},{"path":[4,13,2,0,1],"span":[195,28,37]},{"path":[4,13,2,0,3],"span":[195,40,41]},{"path":[4,13,2,1],"span":[196,2,31]},{"path":[4,13,2,1,4],"span":[196,2,10]},{"path":[4,13,2,1,6],"span":[196,11,18]},{"path":[4,13,2,1,1],"span":[196,19,26]},{"path":[4,13,2,1,3],"span":[196,29,30]},{"path":[4,14],"span":[200,0,212,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,14,1],"span":[200,8,15]},{"path":[4,14,2,0],"span":[202,2,19]},{"path":[4,14,2,0,5],"span":[202,2,8]},{"path":[4,14,2,0,1],"span":[202,9,14]},{"path":[4,14,2,0,3],"span":[202,17,18]},{"path":[4,14,2,1],"span":[203,2,36]},{"path":[4,14,2,1,4],"span":[203,2,10]},{"path":[4,14,2,1,5],"span":[203,11,17]},{"path":[4,14,2,1,1],"span":[203,18,31]},{"path":[4,14,2,1,3],"span":[203,34,35]},{"path":[4,14,2,2],"span":[204,2,50]},{"path":[4,14,2,2,6],"span":[204,2,27]},{"path":[4,14,2,2,1],"span":[204,28,45]},{"path":[4,14,2,2,3],"span":[204,48,49]},{"path":[4,14,2,3],"span":[206,2,43]},{"path":[4,14,2,3,4],"span":[206,2,10]},{"path":[4,14,2,3,6],"span":[206,11,23]},{"path":[4,14,2,3,1],"span":[206,24,37]},{"path":[4,14,2,3,3],"span":[206,40,42]},{"path":[4,14,2,4],"span":[207,2,47]},{"path":[4,14,2,4,4],"span":[207,2,10]},{"path":[4,14,2,4,6],"span":[207,11,25]},{"path":[4,14,2,4,1],"span":[207,26,41]},{"path":[4,14,2,4,3],"span":[207,44,46]},{"path":[4,14,8,0],"span":[209,2,211,3]},{"path":[4,14,8,0,1],"span":[209,8,11]},{"path":[4,14,2,5],"span":[210,4,39]},{"path":[4,14,2,5,6],"span":[210,4,25]},{"path":[4,14,2,5,1],"span":[210,26,33]},{"path":[4,14,2,5,3],"span":[210,36,38]},{"path":[4,15],"span":[214,0,223,1]},{"path":[4,15,1],"span":[214,8,29]},{"path":[4,15,2,0],"span":[215,2,19]},{"path":[4,15,2,0,5],"span":[215,2,8]},{"path":[4,15,2,0,1],"span":[215,9,14]},{"path":[4,15,2,0,3],"span":[215,17,18]},{"path":[4,15,2,1],"span":[216,2,36]},{"path":[4,15,2,1,4],"span":[216,2,10]},{"path":[4,15,2,1,5],"span":[216,11,17]},{"path":[4,15,2,1,1],"span":[216,18,31]},{"path":[4,15,2,1,3],"span":[216,34,35]},{"path":[4,15,2,2],"span":[217,2,36]},{"path":[4,15,2,2,4],"span":[217,2,10]},{"path":[4,15,2,2,5],"span":[217,11,17]},{"path":[4,15,2,2,1],"span":[217,18,31]},{"path":[4,15,2,2,3],"span":[217,34,35]},{"path":[4,15,2,3],"span":[218,2,33]},{"path":[4,15,2,3,4],"span":[218,2,10]},{"path":[4,15,2,3,5],"span":[218,11,17]},{"path":[4,15,2,3,1],"span":[218,18,28]},{"path":[4,15,2,3,3],"span":[218,31,32]},{"path":[4,15,2,4],"span":[219,2,40]},{"path":[4,15,2,4,4],"span":[219,2,10]},{"path":[4,15,2,4,5],"span":[219,11,17]},{"path":[4,15,2,4,1],"span":[219,18,35]},{"path":[4,15,2,4,3],"span":[219,38,39]},{"path":[4,15,2,5],"span":[220,2,39]},{"path":[4,15,2,5,4],"span":[220,2,10]},{"path":[4,15,2,5,5],"span":[220,11,17]},{"path":[4,15,2,5,1],"span":[220,18,34]},{"path":[4,15,2,5,3],"span":[220,37,38]},{"path":[4,15,2,6],"span":[221,2,59]},{"path":[4,15,2,6,4],"span":[221,2,10]},{"path":[4,15,2,6,6],"span":[221,11,36]},{"path":[4,15,2,6,1],"span":[221,37,54]},{"path":[4,15,2,6,3],"span":[221,57,58]},{"path":[4,15,2,7],"span":[222,2,32]},{"path":[4,15,2,7,4],"span":[222,2,10]},{"path":[4,15,2,7,5],"span":[222,11,17]},{"path":[4,15,2,7,1],"span":[222,18,27]},{"path":[4,15,2,7,3],"span":[222,30,31]},{"path":[4,16],"span":[226,0,229,1],"leadingComments":" Software Inventory with list of installed SW "},{"path":[4,16,1],"span":[226,8,25]},{"path":[4,16,2,0],"span":[227,2,42]},{"path":[4,16,2,0,6],"span":[227,2,27]},{"path":[4,16,2,0,1],"span":[227,28,37]},{"path":[4,16,2,0,3],"span":[227,40,41]},{"path":[4,16,2,1],"span":[228,2,33]},{"path":[4,16,2,1,4],"span":[228,2,10]},{"path":[4,16,2,1,6],"span":[228,11,19]},{"path":[4,16,2,1,1],"span":[228,20,28]},{"path":[4,16,2,1,3],"span":[228,31,32]},{"path":[4,17],"span":[232,0,261,1],"leadingComments":" Software definition: normalized and with link to raw "},{"path":[4,17,1],"span":[232,8,16]},{"path":[4,17,2,0],"span":[234,2,26]},{"path":[4,17,2,0,4],"span":[234,2,10]},{"path":[4,17,2,0,5],"span":[234,11,16]},{"path":[4,17,2,0,1],"span":[234,17,21]},{"path":[4,17,2,0,3],"span":[234,24,25]},{"path":[4,17,2,1],"span":[235,2,29]},{"path":[4,17,2,1,4],"span":[235,2,10]},{"path":[4,17,2,1,5],"span":[235,11,16]},{"path":[4,17,2,1,1],"span":[235,17,24]},{"path":[4,17,2,1,3],"span":[235,27,28]},{"path":[4,17,2,2],"span":[236,2,28]},{"path":[4,17,2,2,4],"span":[236,2,10]},{"path":[4,17,2,2,5],"span":[236,11,16]},{"path":[4,17,2,2,1],"span":[236,17,23]},{"path":[4,17,2,2,3],"span":[236,26,27]},{"path":[4,17,2,3],"span":[237,2,29]},{"path":[4,17,2,3,4],"span":[237,2,10]},{"path":[4,17,2,3,5],"span":[237,11,16]},{"path":[4,17,2,3,1],"span":[237,17,24]},{"path":[4,17,2,3,3],"span":[237,27,28]},{"path":[4,17,2,4],"span":[238,2,27]},{"path":[4,17,2,4,4],"span":[238,2,10]},{"path":[4,17,2,4,5],"span":[238,11,16]},{"path":[4,17,2,4,1],"span":[238,17,22]},{"path":[4,17,2,4,3],"span":[238,25,26]},{"path":[4,17,2,5],"span":[239,2,31]},{"path":[4,17,2,5,4],"span":[239,2,10]},{"path":[4,17,2,5,5],"span":[239,11,16]},{"path":[4,17,2,5,1],"span":[239,17,26]},{"path":[4,17,2,5,3],"span":[239,29,30]},{"path":[4,17,2,6],"span":[241,2,32]},{"path":[4,17,2,6,4],"span":[241,2,10]},{"path":[4,17,2,6,5],"span":[241,11,17]},{"path":[4,17,2,6,1],"span":[241,18,27]},{"path":[4,17,2,6,3],"span":[241,30,31]},{"path":[4,17,2,7],"span":[242,2,31]},{"path":[4,17,2,7,4],"span":[242,2,10]},{"path":[4,17,2,7,5],"span":[242,11,17]},{"path":[4,17,2,7,1],"span":[242,18,26]},{"path":[4,17,2,7,3],"span":[242,29,30]},{"path":[4,17,2,8],"span":[243,2,32]},{"path":[4,17,2,8,4],"span":[243,2,10]},{"path":[4,17,2,8,5],"span":[243,11,17]},{"path":[4,17,2,8,1],"span":[243,18,27]},{"path":[4,17,2,8,3],"span":[243,30,31]},{"path":[4,17,2,9],"span":[244,2,28]},{"path":[4,17,2,9,4],"span":[244,2,10]},{"path":[4,17,2,9,5],"span":[244,11,17]},{"path":[4,17,2,9,1],"span":[244,18,22]},{"path":[4,17,2,9,3],"span":[244,25,27]},{"path":[4,17,2,10],"span":[245,2,31]},{"path":[4,17,2,10,4],"span":[245,2,10]},{"path":[4,17,2,10,5],"span":[245,11,17]},{"path":[4,17,2,10,1],"span":[245,18,25]},{"path":[4,17,2,10,3],"span":[245,28,30]},{"path":[4,17,2,11],"span":[246,2,34]},{"path":[4,17,2,11,4],"span":[246,2,10]},{"path":[4,17,2,11,5],"span":[246,11,17]},{"path":[4,17,2,11,1],"span":[246,18,28]},{"path":[4,17,2,11,3],"span":[246,31,33]},{"path":[4,17,2,12],"span":[247,2,31]},{"path":[4,17,2,12,4],"span":[247,2,10]},{"path":[4,17,2,12,5],"span":[247,11,17]},{"path":[4,17,2,12,1],"span":[247,18,25]},{"path":[4,17,2,12,3],"span":[247,28,30]},{"path":[4,17,2,13],"span":[248,2,29]},{"path":[4,17,2,13,4],"span":[248,2,10]},{"path":[4,17,2,13,5],"span":[248,11,17]},{"path":[4,17,2,13,1],"span":[248,18,23]},{"path":[4,17,2,13,3],"span":[248,26,28]},{"path":[4,17,2,14],"span":[249,2,28]},{"path":[4,17,2,14,4],"span":[249,2,10]},{"path":[4,17,2,14,5],"span":[249,11,17]},{"path":[4,17,2,14,1],"span":[249,18,22]},{"path":[4,17,2,14,3],"span":[249,25,27]},{"path":[4,17,2,15],"span":[250,2,28]},{"path":[4,17,2,15,4],"span":[250,2,10]},{"path":[4,17,2,15,5],"span":[250,11,17]},{"path":[4,17,2,15,1],"span":[250,18,22]},{"path":[4,17,2,15,3],"span":[250,25,27]},{"path":[4,17,2,16],"span":[252,2,27]},{"path":[4,17,2,16,4],"span":[252,2,10]},{"path":[4,17,2,16,5],"span":[252,11,17]},{"path":[4,17,2,16,1],"span":[252,18,21]},{"path":[4,17,2,16,3],"span":[252,24,26]},{"path":[4,17,2,17],"span":[254,2,43]},{"path":[4,17,2,17,4],"span":[254,2,10]},{"path":[4,17,2,17,6],"span":[254,11,23]},{"path":[4,17,2,17,1],"span":[254,24,37]},{"path":[4,17,2,17,3],"span":[254,40,42]},{"path":[4,17,2,18],"span":[255,2,49]},{"path":[4,17,2,18,4],"span":[255,2,10]},{"path":[4,17,2,18,6],"span":[255,11,26]},{"path":[4,17,2,18,1],"span":[255,27,43]},{"path":[4,17,2,18,3],"span":[255,46,48]},{"path":[4,17,2,19],"span":[256,2,47]},{"path":[4,17,2,19,4],"span":[256,2,10]},{"path":[4,17,2,19,6],"span":[256,11,26]},{"path":[4,17,2,19,1],"span":[256,27,41]},{"path":[4,17,2,19,3],"span":[256,44,46]},{"path":[4,17,2,20],"span":[258,2,23]},{"path":[4,17,2,20,6],"span":[258,2,13]},{"path":[4,17,2,20,1],"span":[258,14,17]},{"path":[4,17,2,20,3],"span":[258,20,22]},{"path":[4,17,2,21],"span":[259,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,17,2,21,4],"span":[259,2,10]},{"path":[4,17,2,21,5],"span":[259,11,17]},{"path":[4,17,2,21,1],"span":[259,18,26]},{"path":[4,17,2,21,3],"span":[259,29,31]},{"path":[4,17,2,22],"span":[260,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,17,2,22,4],"span":[260,2,10]},{"path":[4,17,2,22,5],"span":[260,11,17]},{"path":[4,17,2,22,1],"span":[260,18,26]},{"path":[4,17,2,22,3],"span":[260,29,31]},{"path":[4,18],"span":[264,0,278,1],"leadingComments":" Raw Software definition "},{"path":[4,18,1],"span":[264,8,19]},{"path":[4,18,2,0],"span":[265,2,18]},{"path":[4,18,2,0,5],"span":[265,2,8]},{"path":[4,18,2,0,1],"span":[265,9,13]},{"path":[4,18,2,0,3],"span":[265,16,17]},{"path":[4,18,2,1],"span":[267,2,29]},{"path":[4,18,2,1,4],"span":[267,2,10]},{"path":[4,18,2,1,5],"span":[267,11,17]},{"path":[4,18,2,1,1],"span":[267,18,24]},{"path":[4,18,2,1,3],"span":[267,27,28]},{"path":[4,18,2,2],"span":[268,2,30]},{"path":[4,18,2,2,4],"span":[268,2,10]},{"path":[4,18,2,2,5],"span":[268,11,17]},{"path":[4,18,2,2,1],"span":[268,18,25]},{"path":[4,18,2,2,3],"span":[268,28,29]},{"path":[4,18,2,3],"span":[269,2,27]},{"path":[4,18,2,3,4],"span":[269,2,10]},{"path":[4,18,2,3,5],"span":[269,11,17]},{"path":[4,18,2,3,1],"span":[269,18,22]},{"path":[4,18,2,3,3],"span":[269,25,26]},{"path":[4,18,2,4],"span":[270,2,31]},{"path":[4,18,2,4,4],"span":[270,2,10]},{"path":[4,18,2,4,5],"span":[270,11,17]},{"path":[4,18,2,4,1],"span":[270,18,26]},{"path":[4,18,2,4,3],"span":[270,29,30]},{"path":[4,18,2,5],"span":[271,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,18,2,5,4],"span":[271,2,10]},{"path":[4,18,2,5,5],"span":[271,11,17]},{"path":[4,18,2,5,1],"span":[271,18,22]},{"path":[4,18,2,5,3],"span":[271,25,26]},{"path":[4,18,2,6],"span":[272,2,34]},{"path":[4,18,2,6,4],"span":[272,2,10]},{"path":[4,18,2,6,5],"span":[272,11,16]},{"path":[4,18,2,6,1],"span":[272,17,29]},{"path":[4,18,2,6,3],"span":[272,32,33]},{"path":[4,18,2,7],"span":[273,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,18,2,7,4],"span":[273,2,10]},{"path":[4,18,2,7,5],"span":[273,11,17]},{"path":[4,18,2,7,1],"span":[273,18,29]},{"path":[4,18,2,7,3],"span":[273,32,33]},{"path":[4,18,2,8],"span":[275,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,18,2,8,4],"span":[275,2,10]},{"path":[4,18,2,8,5],"span":[275,11,17]},{"path":[4,18,2,8,1],"span":[275,18,23]},{"path":[4,18,2,8,3],"span":[275,26,27]},{"path":[4,18,2,9],"span":[277,2,37]},{"path":[4,18,2,9,4],"span":[277,2,10]},{"path":[4,18,2,9,5],"span":[277,11,15]},{"path":[4,18,2,9,1],"span":[277,16,31]},{"path":[4,18,2,9,3],"span":[277,34,36]},{"path":[4,19],"span":[282,0,315,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,19,1],"span":[282,8,20]},{"path":[4,19,2,0],"span":[283,2,16]},{"path":[4,19,2,0,5],"span":[283,2,7]},{"path":[4,19,2,0,1],"span":[283,9,11]},{"path":[4,19,2,0,3],"span":[283,14,15]},{"path":[4,19,2,1],"span":[284,2,23]},{"path":[4,19,2,1,5],"span":[284,2,8]},{"path":[4,19,2,1,1],"span":[284,9,18]},{"path":[4,19,2,1,3],"span":[284,21,22]},{"path":[4,19,2,2],"span":[286,2,32]},{"path":[4,19,2,2,4],"span":[286,2,10]},{"path":[4,19,2,2,5],"span":[286,11,16]},{"path":[4,19,2,2,1],"span":[286,17,26]},{"path":[4,19,2,2,3],"span":[286,29,31]},{"path":[4,19,2,3],"span":[287,2,38]},{"path":[4,19,2,3,4],"span":[287,2,10]},{"path":[4,19,2,3,5],"span":[287,11,16]},{"path":[4,19,2,3,1],"span":[287,17,33]},{"path":[4,19,2,3,3],"span":[287,36,37]},{"path":[4,19,2,4],"span":[289,2,35]},{"path":[4,19,2,4,4],"span":[289,2,10]},{"path":[4,19,2,4,5],"span":[289,11,17]},{"path":[4,19,2,4,1],"span":[289,18,30]},{"path":[4,19,2,4,3],"span":[289,33,34]},{"path":[4,19,2,5],"span":[290,2,37]},{"path":[4,19,2,5,4],"span":[290,2,10]},{"path":[4,19,2,5,5],"span":[290,11,17]},{"path":[4,19,2,5,1],"span":[290,18,32]},{"path":[4,19,2,5,3],"span":[290,35,36]},{"path":[4,19,2,6],"span":[291,2,39]},{"path":[4,19,2,6,4],"span":[291,2,10]},{"path":[4,19,2,6,5],"span":[291,11,17]},{"path":[4,19,2,6,1],"span":[291,18,34]},{"path":[4,19,2,6,3],"span":[291,37,38]},{"path":[4,19,2,7],"span":[292,2,35]},{"path":[4,19,2,7,4],"span":[292,2,10]},{"path":[4,19,2,7,5],"span":[292,11,17]},{"path":[4,19,2,7,1],"span":[292,18,30]},{"path":[4,19,2,7,3],"span":[292,33,34]},{"path":[4,19,2,8],"span":[293,2,43]},{"path":[4,19,2,8,4],"span":[293,2,10]},{"path":[4,19,2,8,5],"span":[293,11,17]},{"path":[4,19,2,8,1],"span":[293,18,37]},{"path":[4,19,2,8,3],"span":[293,40,42]},{"path":[4,19,2,9],"span":[294,2,35]},{"path":[4,19,2,9,4],"span":[294,2,10]},{"path":[4,19,2,9,5],"span":[294,11,17]},{"path":[4,19,2,9,1],"span":[294,18,29]},{"path":[4,19,2,9,3],"span":[294,32,34]},{"path":[4,19,2,10],"span":[295,2,35]},{"path":[4,19,2,10,4],"span":[295,2,10]},{"path":[4,19,2,10,5],"span":[295,11,17]},{"path":[4,19,2,10,1],"span":[295,18,29]},{"path":[4,19,2,10,3],"span":[295,32,34]},{"path":[4,19,2,11],"span":[296,2,37]},{"path":[4,19,2,11,4],"span":[296,2,10]},{"path":[4,19,2,11,5],"span":[296,11,17]},{"path":[4,19,2,11,1],"span":[296,18,31]},{"path":[4,19,2,11,3],"span":[296,34,36]},{"path":[4,19,2,12],"span":[297,2,40]},{"path":[4,19,2,12,4],"span":[297,2,10]},{"path":[4,19,2,12,5],"span":[297,11,17]},{"path":[4,19,2,12,1],"span":[297,18,34]},{"path":[4,19,2,12,3],"span":[297,37,39]},{"path":[4,19,2,13],"span":[298,2,39]},{"path":[4,19,2,13,4],"span":[298,2,10]},{"path":[4,19,2,13,5],"span":[298,11,17]},{"path":[4,19,2,13,1],"span":[298,18,33]},{"path":[4,19,2,13,3],"span":[298,36,38]},{"path":[4,19,2,14],"span":[299,2,36]},{"path":[4,19,2,14,4],"span":[299,2,10]},{"path":[4,19,2,14,5],"span":[299,11,17]},{"path":[4,19,2,14,1],"span":[299,18,30]},{"path":[4,19,2,14,3],"span":[299,33,35]},{"path":[4,19,2,15],"span":[300,2,43]},{"path":[4,19,2,15,4],"span":[300,2,10]},{"path":[4,19,2,15,5],"span":[300,11,17]},{"path":[4,19,2,15,1],"span":[300,18,37]},{"path":[4,19,2,15,3],"span":[300,40,42]},{"path":[4,19,2,16],"span":[301,2,37]},{"path":[4,19,2,16,4],"span":[301,2,10]},{"path":[4,19,2,16,5],"span":[301,11,17]},{"path":[4,19,2,16,1],"span":[301,18,31]},{"path":[4,19,2,16,3],"span":[301,34,36]},{"path":[4,19,2,17],"span":[302,2,40]},{"path":[4,19,2,17,4],"span":[302,2,10]},{"path":[4,19,2,17,5],"span":[302,11,17]},{"path":[4,19,2,17,1],"span":[302,18,34]},{"path":[4,19,2,17,3],"span":[302,37,39]},{"path":[4,19,2,18],"span":[303,2,41]},{"path":[4,19,2,18,4],"span":[303,2,10]},{"path":[4,19,2,18,5],"span":[303,11,17]},{"path":[4,19,2,18,1],"span":[303,18,35]},{"path":[4,19,2,18,3],"span":[303,38,40]},{"path":[4,19,2,19],"span":[304,2,39]},{"path":[4,19,2,19,4],"span":[304,2,10]},{"path":[4,19,2,19,5],"span":[304,11,17]},{"path":[4,19,2,19,1],"span":[304,18,33]},{"path":[4,19,2,19,3],"span":[304,36,38]},{"path":[4,19,2,20],"span":[305,2,41]},{"path":[4,19,2,20,4],"span":[305,2,10]},{"path":[4,19,2,20,5],"span":[305,11,17]},{"path":[4,19,2,20,1],"span":[305,18,35]},{"path":[4,19,2,20,3],"span":[305,38,40]},{"path":[4,19,2,21],"span":[307,2,36]},{"path":[4,19,2,21,4],"span":[307,2,10]},{"path":[4,19,2,21,5],"span":[307,11,15]},{"path":[4,19,2,21,1],"span":[307,16,30]},{"path":[4,19,2,21,3],"span":[307,33,35]},{"path":[4,19,2,22],"span":[308,2,36]},{"path":[4,19,2,22,4],"span":[308,2,10]},{"path":[4,19,2,22,5],"span":[308,11,15]},{"path":[4,19,2,22,1],"span":[308,16,30]},{"path":[4,19,2,22,3],"span":[308,33,35]},{"path":[4,19,2,23],"span":[309,2,36]},{"path":[4,19,2,23,4],"span":[309,2,10]},{"path":[4,19,2,23,5],"span":[309,11,15]},{"path":[4,19,2,23,1],"span":[309,16,30]},{"path":[4,19,2,23,3],"span":[309,33,35]},{"path":[4,19,2,24],"span":[310,2,38]},{"path":[4,19,2,24,4],"span":[310,2,10]},{"path":[4,19,2,24,5],"span":[310,11,15]},{"path":[4,19,2,24,1],"span":[310,16,32]},{"path":[4,19,2,24,3],"span":[310,35,37]},{"path":[4,19,2,25],"span":[311,2,38]},{"path":[4,19,2,25,4],"span":[311,2,10]},{"path":[4,19,2,25,5],"span":[311,11,15]},{"path":[4,19,2,25,1],"span":[311,16,32]},{"path":[4,19,2,25,3],"span":[311,35,37]},{"path":[4,19,2,26],"span":[312,2,38]},{"path":[4,19,2,26,4],"span":[312,2,10]},{"path":[4,19,2,26,5],"span":[312,11,15]},{"path":[4,19,2,26,1],"span":[312,16,32]},{"path":[4,19,2,26,3],"span":[312,35,37]},{"path":[4,19,2,27],"span":[314,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,19,2,27,4],"span":[314,2,10]},{"path":[4,19,2,27,5],"span":[314,11,16]},{"path":[4,19,2,27,1],"span":[314,17,28]},{"path":[4,19,2,27,3],"span":[314,31,33]},{"path":[4,20],"span":[317,0,352,1]},{"path":[4,20,1],"span":[317,8,20]},{"path":[4,20,2,0],"span":[318,2,15]},{"path":[4,20,2,0,5],"span":[318,2,7]},{"path":[4,20,2,0,1],"span":[318,8,10]},{"path":[4,20,2,0,3],"span":[318,13,14]},{"path":[4,20,2,1],"span":[320,2,20]},{"path":[4,20,2,1,5],"span":[320,2,7]},{"path":[4,20,2,1,1],"span":[320,8,15]},{"path":[4,20,2,1,3],"span":[320,18,19]},{"path":[4,20,2,2],"span":[321,2,26]},{"path":[4,20,2,2,5],"span":[321,2,8]},{"path":[4,20,2,2,1],"span":[321,9,21]},{"path":[4,20,2,2,3],"span":[321,24,25]},{"path":[4,20,2,3],"span":[323,2,36]},{"path":[4,20,2,3,4],"span":[323,2,10]},{"path":[4,20,2,3,5],"span":[323,11,16]},{"path":[4,20,2,3,1],"span":[323,17,31]},{"path":[4,20,2,3,3],"span":[323,34,35]},{"path":[4,20,2,4],"span":[324,2,40]},{"path":[4,20,2,4,4],"span":[324,2,10]},{"path":[4,20,2,4,5],"span":[324,11,17]},{"path":[4,20,2,4,1],"span":[324,18,35]},{"path":[4,20,2,4,3],"span":[324,38,39]},{"path":[4,20,2,5],"span":[326,2,32]},{"path":[4,20,2,5,4],"span":[326,2,10]},{"path":[4,20,2,5,5],"span":[326,11,16]},{"path":[4,20,2,5,1],"span":[326,17,26]},{"path":[4,20,2,5,3],"span":[326,29,31]},{"path":[4,20,2,6],"span":[327,2,31]},{"path":[4,20,2,6,4],"span":[327,2,10]},{"path":[4,20,2,6,5],"span":[327,11,15]},{"path":[4,20,2,6,1],"span":[327,16,25]},{"path":[4,20,2,6,3],"span":[327,28,30]},{"path":[4,20,2,7],"span":[328,2,34]},{"path":[4,20,2,7,4],"span":[328,2,10]},{"path":[4,20,2,7,5],"span":[328,11,17]},{"path":[4,20,2,7,1],"span":[328,18,28]},{"path":[4,20,2,7,3],"span":[328,31,33]},{"path":[4,20,2,8],"span":[329,2,31]},{"path":[4,20,2,8,4],"span":[329,2,10]},{"path":[4,20,2,8,5],"span":[329,11,17]},{"path":[4,20,2,8,1],"span":[329,18,25]},{"path":[4,20,2,8,3],"span":[329,28,30]},{"path":[4,20,2,9],"span":[330,2,35]},{"path":[4,20,2,9,4],"span":[330,2,10]},{"path":[4,20,2,9,5],"span":[330,11,16]},{"path":[4,20,2,9,1],"span":[330,17,29]},{"path":[4,20,2,9,3],"span":[330,32,34]},{"path":[4,20,2,10],"span":[331,2,32]},{"path":[4,20,2,10,4],"span":[331,2,10]},{"path":[4,20,2,10,5],"span":[331,11,16]},{"path":[4,20,2,10,1],"span":[331,17,26]},{"path":[4,20,2,10,3],"span":[331,29,31]},{"path":[4,20,2,11],"span":[332,2,31]},{"path":[4,20,2,11,4],"span":[332,2,10]},{"path":[4,20,2,11,5],"span":[332,11,16]},{"path":[4,20,2,11,1],"span":[332,17,25]},{"path":[4,20,2,11,3],"span":[332,28,30]},{"path":[4,20,2,12],"span":[333,2,43]},{"path":[4,20,2,12,4],"span":[333,2,10]},{"path":[4,20,2,12,5],"span":[333,11,17]},{"path":[4,20,2,12,1],"span":[333,18,37]},{"path":[4,20,2,12,3],"span":[333,40,42]},{"path":[4,20,2,13],"span":[335,2,35]},{"path":[4,20,2,13,4],"span":[335,2,10]},{"path":[4,20,2,13,5],"span":[335,11,17]},{"path":[4,20,2,13,1],"span":[335,18,29]},{"path":[4,20,2,13,3],"span":[335,32,34]},{"path":[4,20,2,14],"span":[336,2,37]},{"path":[4,20,2,14,4],"span":[336,2,10]},{"path":[4,20,2,14,5],"span":[336,11,17]},{"path":[4,20,2,14,1],"span":[336,18,31]},{"path":[4,20,2,14,3],"span":[336,34,36]},{"path":[4,20,2,15],"span":[338,2,39]},{"path":[4,20,2,15,4],"span":[338,2,10]},{"path":[4,20,2,15,5],"span":[338,11,17]},{"path":[4,20,2,15,1],"span":[338,18,33]},{"path":[4,20,2,15,3],"span":[338,36,38]},{"path":[4,20,2,16],"span":[339,2,43]},{"path":[4,20,2,16,4],"span":[339,2,10]},{"path":[4,20,2,16,5],"span":[339,11,17]},{"path":[4,20,2,16,1],"span":[339,18,37]},{"path":[4,20,2,16,3],"span":[339,40,42]},{"path":[4,20,2,17],"span":[340,2,38]},{"path":[4,20,2,17,4],"span":[340,2,10]},{"path":[4,20,2,17,5],"span":[340,11,17]},{"path":[4,20,2,17,1],"span":[340,18,32]},{"path":[4,20,2,17,3],"span":[340,35,37]},{"path":[4,20,2,18],"span":[341,2,38]},{"path":[4,20,2,18,4],"span":[341,2,10]},{"path":[4,20,2,18,5],"span":[341,11,17]},{"path":[4,20,2,18,1],"span":[341,18,32]},{"path":[4,20,2,18,3],"span":[341,35,37]},{"path":[4,20,2,19],"span":[342,2,41]},{"path":[4,20,2,19,4],"span":[342,2,10]},{"path":[4,20,2,19,5],"span":[342,11,15]},{"path":[4,20,2,19,1],"span":[342,18,35]},{"path":[4,20,2,19,3],"span":[342,38,40]},{"path":[4,20,2,20],"span":[343,2,42]},{"path":[4,20,2,20,4],"span":[343,2,10]},{"path":[4,20,2,20,5],"span":[343,11,17]},{"path":[4,20,2,20,1],"span":[343,18,36]},{"path":[4,20,2,20,3],"span":[343,39,41]},{"path":[4,20,2,21],"span":[345,2,32]},{"path":[4,20,2,21,4],"span":[345,2,10]},{"path":[4,20,2,21,5],"span":[345,11,17]},{"path":[4,20,2,21,1],"span":[345,18,26]},{"path":[4,20,2,21,3],"span":[345,29,31]},{"path":[4,20,2,22],"span":[347,2,33]},{"path":[4,20,2,22,4],"span":[347,2,10]},{"path":[4,20,2,22,5],"span":[347,11,16]},{"path":[4,20,2,22,1],"span":[347,17,27]},{"path":[4,20,2,22,3],"span":[347,30,32]},{"path":[4,20,2,23],"span":[349,2,39]},{"path":[4,20,2,23,4],"span":[349,2,10]},{"path":[4,20,2,23,5],"span":[349,11,16]},{"path":[4,20,2,23,1],"span":[349,17,33]},{"path":[4,20,2,23,3],"span":[349,36,38]},{"path":[4,20,2,24],"span":[351,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,20,2,24,4],"span":[351,2,10]},{"path":[4,20,2,24,5],"span":[351,11,16]},{"path":[4,20,2,24,1],"span":[351,17,28]},{"path":[4,20,2,24,3],"span":[351,31,33]},{"path":[4,21],"span":[354,0,387,1]},{"path":[4,21,1],"span":[354,8,17]},{"path":[4,21,2,0],"span":[355,2,15]},{"path":[4,21,2,0,5],"span":[355,2,7]},{"path":[4,21,2,0,1],"span":[355,8,10]},{"path":[4,21,2,0,3],"span":[355,13,14]},{"path":[4,21,2,1],"span":[357,2,21]},{"path":[4,21,2,1,5],"span":[357,2,8]},{"path":[4,21,2,1,1],"span":[357,9,16]},{"path":[4,21,2,1,3],"span":[357,19,20]},{"path":[4,21,2,2],"span":[359,2,33]},{"path":[4,21,2,2,4],"span":[359,2,10]},{"path":[4,21,2,2,5],"span":[359,11,17]},{"path":[4,21,2,2,1],"span":[359,18,28]},{"path":[4,21,2,2,3],"span":[359,31,32]},{"path":[4,21,2,3],"span":[360,2,32]},{"path":[4,21,2,3,4],"span":[360,2,10]},{"path":[4,21,2,3,5],"span":[360,11,17]},{"path":[4,21,2,3,1],"span":[360,18,26]},{"path":[4,21,2,3,3],"span":[360,29,31]},{"path":[4,21,2,4],"span":[361,2,38]},{"path":[4,21,2,4,4],"span":[361,2,10]},{"path":[4,21,2,4,5],"span":[361,11,17]},{"path":[4,21,2,4,1],"span":[361,18,33]},{"path":[4,21,2,4,3],"span":[361,36,37]},{"path":[4,21,2,5],"span":[363,2,33]},{"path":[4,21,2,5,4],"span":[363,2,10]},{"path":[4,21,2,5,5],"span":[363,11,16]},{"path":[4,21,2,5,1],"span":[363,17,28]},{"path":[4,21,2,5,3],"span":[363,31,32]},{"path":[4,21,2,6],"span":[364,2,29]},{"path":[4,21,2,6,4],"span":[364,2,10]},{"path":[4,21,2,6,5],"span":[364,11,16]},{"path":[4,21,2,6,1],"span":[364,17,24]},{"path":[4,21,2,6,3],"span":[364,27,28]},{"path":[4,21,2,7],"span":[365,2,31]},{"path":[4,21,2,7,4],"span":[365,2,10]},{"path":[4,21,2,7,5],"span":[365,11,16]},{"path":[4,21,2,7,1],"span":[365,17,26]},{"path":[4,21,2,7,3],"span":[365,29,30]},{"path":[4,21,2,8],"span":[367,2,34]},{"path":[4,21,2,8,4],"span":[367,2,10]},{"path":[4,21,2,8,5],"span":[367,11,16]},{"path":[4,21,2,8,1],"span":[367,17,29]},{"path":[4,21,2,8,3],"span":[367,32,33]},{"path":[4,21,2,9],"span":[368,2,31]},{"path":[4,21,2,9,4],"span":[368,2,10]},{"path":[4,21,2,9,5],"span":[368,11,16]},{"path":[4,21,2,9,1],"span":[368,17,25]},{"path":[4,21,2,9,3],"span":[368,28,30]},{"path":[4,21,2,10],"span":[369,2,31]},{"path":[4,21,2,10,4],"span":[369,2,10]},{"path":[4,21,2,10,5],"span":[369,11,16]},{"path":[4,21,2,10,1],"span":[369,17,25]},{"path":[4,21,2,10,3],"span":[369,28,30]},{"path":[4,21,2,11],"span":[370,2,32]},{"path":[4,21,2,11,4],"span":[370,2,10]},{"path":[4,21,2,11,5],"span":[370,11,16]},{"path":[4,21,2,11,1],"span":[370,17,26]},{"path":[4,21,2,11,3],"span":[370,29,31]},{"path":[4,21,2,12],"span":[371,2,43]},{"path":[4,21,2,12,4],"span":[371,2,10]},{"path":[4,21,2,12,5],"span":[371,11,17]},{"path":[4,21,2,12,1],"span":[371,18,37]},{"path":[4,21,2,12,3],"span":[371,40,42]},{"path":[4,21,2,13],"span":[372,2,38]},{"path":[4,21,2,13,4],"span":[372,2,10]},{"path":[4,21,2,13,5],"span":[372,11,17]},{"path":[4,21,2,13,1],"span":[372,18,32]},{"path":[4,21,2,13,3],"span":[372,35,37]},{"path":[4,21,2,14],"span":[373,2,40]},{"path":[4,21,2,14,4],"span":[373,2,10]},{"path":[4,21,2,14,5],"span":[373,11,17]},{"path":[4,21,2,14,1],"span":[373,18,34]},{"path":[4,21,2,14,3],"span":[373,37,39]},{"path":[4,21,2,15],"span":[374,2,36]},{"path":[4,21,2,15,4],"span":[374,2,10]},{"path":[4,21,2,15,5],"span":[374,11,17]},{"path":[4,21,2,15,1],"span":[374,18,30]},{"path":[4,21,2,15,3],"span":[374,33,35]},{"path":[4,21,2,16],"span":[375,2,43]},{"path":[4,21,2,16,4],"span":[375,2,10]},{"path":[4,21,2,16,5],"span":[375,11,17]},{"path":[4,21,2,16,1],"span":[375,18,37]},{"path":[4,21,2,16,3],"span":[375,40,42]},{"path":[4,21,2,17],"span":[376,2,35]},{"path":[4,21,2,17,4],"span":[376,2,10]},{"path":[4,21,2,17,5],"span":[376,11,17]},{"path":[4,21,2,17,1],"span":[376,18,29]},{"path":[4,21,2,17,3],"span":[376,32,34]},{"path":[4,21,2,18],"span":[377,2,35]},{"path":[4,21,2,18,4],"span":[377,2,10]},{"path":[4,21,2,18,5],"span":[377,11,17]},{"path":[4,21,2,18,1],"span":[377,18,29]},{"path":[4,21,2,18,3],"span":[377,32,34]},{"path":[4,21,2,19],"span":[378,2,37]},{"path":[4,21,2,19,4],"span":[378,2,10]},{"path":[4,21,2,19,5],"span":[378,11,17]},{"path":[4,21,2,19,1],"span":[378,18,31]},{"path":[4,21,2,19,3],"span":[378,34,36]},{"path":[4,21,2,20],"span":[379,2,40]},{"path":[4,21,2,20,4],"span":[379,2,10]},{"path":[4,21,2,20,5],"span":[379,11,17]},{"path":[4,21,2,20,1],"span":[379,18,34]},{"path":[4,21,2,20,3],"span":[379,37,39]},{"path":[4,21,2,21],"span":[380,2,39]},{"path":[4,21,2,21,4],"span":[380,2,10]},{"path":[4,21,2,21,5],"span":[380,11,17]},{"path":[4,21,2,21,1],"span":[380,18,33]},{"path":[4,21,2,21,3],"span":[380,36,38]},{"path":[4,21,2,22],"span":[382,2,32]},{"path":[4,21,2,22,4],"span":[382,2,10]},{"path":[4,21,2,22,5],"span":[382,11,17]},{"path":[4,21,2,22,1],"span":[382,18,26]},{"path":[4,21,2,22,3],"span":[382,29,31]},{"path":[4,21,2,23],"span":[384,2,39]},{"path":[4,21,2,23,4],"span":[384,2,10]},{"path":[4,21,2,23,5],"span":[384,11,16]},{"path":[4,21,2,23,1],"span":[384,17,33]},{"path":[4,21,2,23,3],"span":[384,36,38]},{"path":[4,21,2,24],"span":[386,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,21,2,24,4],"span":[386,2,10]},{"path":[4,21,2,24,5],"span":[386,11,16]},{"path":[4,21,2,24,1],"span":[386,17,28]},{"path":[4,21,2,24,3],"span":[386,31,33]},{"path":[4,22],"span":[389,0,419,1]},{"path":[4,22,1],"span":[389,8,23]},{"path":[4,22,2,0],"span":[390,2,15]},{"path":[4,22,2,0,5],"span":[390,2,7]},{"path":[4,22,2,0,1],"span":[390,8,10]},{"path":[4,22,2,0,3],"span":[390,13,14]},{"path":[4,22,2,1],"span":[391,2,21]},{"path":[4,22,2,1,5],"span":[391,2,8]},{"path":[4,22,2,1,1],"span":[391,9,16]},{"path":[4,22,2,1,3],"span":[391,19,20]},{"path":[4,22,2,2],"span":[393,2,33]},{"path":[4,22,2,2,4],"span":[393,2,10]},{"path":[4,22,2,2,5],"span":[393,11,17]},{"path":[4,22,2,2,1],"span":[393,18,28]},{"path":[4,22,2,2,3],"span":[393,31,32]},{"path":[4,22,2,3],"span":[394,2,36]},{"path":[4,22,2,3,4],"span":[394,2,10]},{"path":[4,22,2,3,5],"span":[394,11,17]},{"path":[4,22,2,3,1],"span":[394,18,31]},{"path":[4,22,2,3,3],"span":[394,34,35]},{"path":[4,22,2,4],"span":[395,2,33]},{"path":[4,22,2,4,4],"span":[395,2,10]},{"path":[4,22,2,4,5],"span":[395,11,17]},{"path":[4,22,2,4,1],"span":[395,18,28]},{"path":[4,22,2,4,3],"span":[395,31,32]},{"path":[4,22,2,5],"span":[396,2,30]},{"path":[4,22,2,5,4],"span":[396,2,10]},{"path":[4,22,2,5,5],"span":[396,11,17]},{"path":[4,22,2,5,1],"span":[396,18,25]},{"path":[4,22,2,5,3],"span":[396,28,29]},{"path":[4,22,2,6],"span":[397,2,31]},{"path":[4,22,2,6,4],"span":[397,2,10]},{"path":[4,22,2,6,5],"span":[397,11,17]},{"path":[4,22,2,6,1],"span":[397,18,26]},{"path":[4,22,2,6,3],"span":[397,29,30]},{"path":[4,22,2,7],"span":[399,2,29]},{"path":[4,22,2,7,4],"span":[399,2,10]},{"path":[4,22,2,7,5],"span":[399,11,16]},{"path":[4,22,2,7,1],"span":[399,17,24]},{"path":[4,22,2,7,3],"span":[399,27,28]},{"path":[4,22,2,8],"span":[400,2,31]},{"path":[4,22,2,8,4],"span":[400,2,10]},{"path":[4,22,2,8,5],"span":[400,11,16]},{"path":[4,22,2,8,1],"span":[400,17,26]},{"path":[4,22,2,8,3],"span":[400,29,30]},{"path":[4,22,2,9],"span":[401,2,32]},{"path":[4,22,2,9,4],"span":[401,2,10]},{"path":[4,22,2,9,5],"span":[401,11,16]},{"path":[4,22,2,9,1],"span":[401,17,26]},{"path":[4,22,2,9,3],"span":[401,29,31]},{"path":[4,22,2,10],"span":[403,2,31]},{"path":[4,22,2,10,4],"span":[403,2,10]},{"path":[4,22,2,10,5],"span":[403,11,17]},{"path":[4,22,2,10,1],"span":[403,18,25]},{"path":[4,22,2,10,3],"span":[403,28,30]},{"path":[4,22,2,11],"span":[404,2,35]},{"path":[4,22,2,11,4],"span":[404,2,10]},{"path":[4,22,2,11,5],"span":[404,11,17]},{"path":[4,22,2,11,1],"span":[404,18,29]},{"path":[4,22,2,11,3],"span":[404,32,34]},{"path":[4,22,2,12],"span":[406,2,35]},{"path":[4,22,2,12,4],"span":[406,2,10]},{"path":[4,22,2,12,5],"span":[406,11,16]},{"path":[4,22,2,12,1],"span":[406,17,29]},{"path":[4,22,2,12,3],"span":[406,32,34]},{"path":[4,22,2,13],"span":[407,2,31]},{"path":[4,22,2,13,4],"span":[407,2,10]},{"path":[4,22,2,13,5],"span":[407,11,16]},{"path":[4,22,2,13,1],"span":[407,17,25]},{"path":[4,22,2,13,3],"span":[407,28,30]},{"path":[4,22,2,14],"span":[408,2,31]},{"path":[4,22,2,14,4],"span":[408,2,10]},{"path":[4,22,2,14,5],"span":[408,11,16]},{"path":[4,22,2,14,1],"span":[408,17,25]},{"path":[4,22,2,14,3],"span":[408,28,30]},{"path":[4,22,2,15],"span":[409,2,32]},{"path":[4,22,2,15,4],"span":[409,2,10]},{"path":[4,22,2,15,5],"span":[409,11,16]},{"path":[4,22,2,15,1],"span":[409,17,26]},{"path":[4,22,2,15,3],"span":[409,29,31]},{"path":[4,22,2,16],"span":[410,2,43]},{"path":[4,22,2,16,4],"span":[410,2,10]},{"path":[4,22,2,16,5],"span":[410,11,17]},{"path":[4,22,2,16,1],"span":[410,18,37]},{"path":[4,22,2,16,3],"span":[410,40,42]},{"path":[4,22,2,17],"span":[412,2,33]},{"path":[4,22,2,17,4],"span":[412,2,10]},{"path":[4,22,2,17,5],"span":[412,11,15]},{"path":[4,22,2,17,1],"span":[412,16,27]},{"path":[4,22,2,17,3],"span":[412,30,32]},{"path":[4,22,2,18],"span":[413,2,37]},{"path":[4,22,2,18,4],"span":[413,2,10]},{"path":[4,22,2,18,5],"span":[413,11,15]},{"path":[4,22,2,18,1],"span":[413,16,31]},{"path":[4,22,2,18,3],"span":[413,34,36]},{"path":[4,22,2,19],"span":[414,2,37]},{"path":[4,22,2,19,4],"span":[414,2,10]},{"path":[4,22,2,19,5],"span":[414,11,15]},{"path":[4,22,2,19,1],"span":[414,16,31]},{"path":[4,22,2,19,3],"span":[414,34,36]},{"path":[4,22,2,20],"span":[416,2,39]},{"path":[4,22,2,20,4],"span":[416,2,10]},{"path":[4,22,2,20,5],"span":[416,11,16]},{"path":[4,22,2,20,1],"span":[416,17,33]},{"path":[4,22,2,20,3],"span":[416,36,38]},{"path":[4,22,2,21],"span":[418,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,22,2,21,4],"span":[418,2,10]},{"path":[4,22,2,21,5],"span":[418,11,16]},{"path":[4,22,2,21,1],"span":[418,17,28]},{"path":[4,22,2,21,3],"span":[418,31,34]},{"path":[4,23],"span":[421,0,477,1]},{"path":[4,23,1],"span":[421,8,22]},{"path":[4,23,2,0],"span":[422,2,16]},{"path":[4,23,2,0,5],"span":[422,2,7]},{"path":[4,23,2,0,1],"span":[422,9,11]},{"path":[4,23,2,0,3],"span":[422,14,15]},{"path":[4,23,2,1],"span":[424,2,19]},{"path":[4,23,2,1,5],"span":[424,2,8]},{"path":[4,23,2,1,1],"span":[424,9,14]},{"path":[4,23,2,1,3],"span":[424,17,18]},{"path":[4,23,2,2],"span":[425,2,32]},{"path":[4,23,2,2,4],"span":[425,2,10]},{"path":[4,23,2,2,5],"span":[425,11,17]},{"path":[4,23,2,2,1],"span":[425,18,27]},{"path":[4,23,2,2,3],"span":[425,30,31]},{"path":[4,23,2,3],"span":[426,2,29]},{"path":[4,23,2,3,4],"span":[426,2,10]},{"path":[4,23,2,3,5],"span":[426,11,16]},{"path":[4,23,2,3,1],"span":[426,17,24]},{"path":[4,23,2,3,3],"span":[426,27,28]},{"path":[4,23,2,4],"span":[428,2,31]},{"path":[4,23,2,4,4],"span":[428,2,10]},{"path":[4,23,2,4,5],"span":[428,11,16]},{"path":[4,23,2,4,1],"span":[428,17,26]},{"path":[4,23,2,4,3],"span":[428,29,30]},{"path":[4,23,2,5],"span":[429,2,30]},{"path":[4,23,2,5,4],"span":[429,2,10]},{"path":[4,23,2,5,5],"span":[429,11,15]},{"path":[4,23,2,5,1],"span":[429,16,25]},{"path":[4,23,2,5,3],"span":[429,28,29]},{"path":[4,23,2,6],"span":[430,2,36]},{"path":[4,23,2,6,4],"span":[430,2,10]},{"path":[4,23,2,6,5],"span":[430,11,17]},{"path":[4,23,2,6,1],"span":[430,18,31]},{"path":[4,23,2,6,3],"span":[430,34,35]},{"path":[4,23,2,7],"span":[431,2,35]},{"path":[4,23,2,7,4],"span":[431,2,10]},{"path":[4,23,2,7,5],"span":[431,11,17]},{"path":[4,23,2,7,1],"span":[431,18,30]},{"path":[4,23,2,7,3],"span":[431,33,34]},{"path":[4,23,2,8],"span":[433,2,33]},{"path":[4,23,2,8,4],"span":[433,2,10]},{"path":[4,23,2,8,5],"span":[433,11,17]},{"path":[4,23,2,8,1],"span":[433,18,27]},{"path":[4,23,2,8,3],"span":[433,30,32]},{"path":[4,23,2,9],"span":[434,2,38]},{"path":[4,23,2,9,4],"span":[434,2,10]},{"path":[4,23,2,9,5],"span":[434,11,17]},{"path":[4,23,2,9,1],"span":[434,18,32]},{"path":[4,23,2,9,3],"span":[434,35,37]},{"path":[4,23,2,10],"span":[435,2,36]},{"path":[4,23,2,10,4],"span":[435,2,10]},{"path":[4,23,2,10,5],"span":[435,11,17]},{"path":[4,23,2,10,1],"span":[435,18,30]},{"path":[4,23,2,10,3],"span":[435,33,35]},{"path":[4,23,2,11],"span":[436,2,40]},{"path":[4,23,2,11,4],"span":[436,2,10]},{"path":[4,23,2,11,5],"span":[436,11,17]},{"path":[4,23,2,11,1],"span":[436,18,34]},{"path":[4,23,2,11,3],"span":[436,37,39]},{"path":[4,23,2,12],"span":[437,2,31]},{"path":[4,23,2,12,4],"span":[437,2,10]},{"path":[4,23,2,12,5],"span":[437,11,17]},{"path":[4,23,2,12,1],"span":[437,18,25]},{"path":[4,23,2,12,3],"span":[437,28,30]},{"path":[4,23,2,13],"span":[438,2,36]},{"path":[4,23,2,13,4],"span":[438,2,10]},{"path":[4,23,2,13,5],"span":[438,11,17]},{"path":[4,23,2,13,1],"span":[438,18,30]},{"path":[4,23,2,13,3],"span":[438,33,35]},{"path":[4,23,2,14],"span":[439,2,35]},{"path":[4,23,2,14,4],"span":[439,2,10]},{"path":[4,23,2,14,5],"span":[439,11,16]},{"path":[4,23,2,14,1],"span":[439,17,29]},{"path":[4,23,2,14,3],"span":[439,32,34]},{"path":[4,23,2,15],"span":[440,2,29]},{"path":[4,23,2,15,4],"span":[440,2,10]},{"path":[4,23,2,15,5],"span":[440,11,17]},{"path":[4,23,2,15,1],"span":[440,18,23]},{"path":[4,23,2,15,3],"span":[440,26,28]},{"path":[4,23,2,16],"span":[441,2,33]},{"path":[4,23,2,16,4],"span":[441,2,10]},{"path":[4,23,2,16,5],"span":[441,11,17]},{"path":[4,23,2,16,1],"span":[441,18,27]},{"path":[4,23,2,16,3],"span":[441,30,32]},{"path":[4,23,2,17],"span":[442,2,32]},{"path":[4,23,2,17,4],"span":[442,2,10]},{"path":[4,23,2,17,5],"span":[442,11,17]},{"path":[4,23,2,17,1],"span":[442,18,26]},{"path":[4,23,2,17,3],"span":[442,29,31]},{"path":[4,23,2,18],"span":[443,2,35]},{"path":[4,23,2,18,4],"span":[443,2,10]},{"path":[4,23,2,18,5],"span":[443,11,17]},{"path":[4,23,2,18,1],"span":[443,18,29]},{"path":[4,23,2,18,3],"span":[443,32,34]},{"path":[4,23,2,19],"span":[445,2,36]},{"path":[4,23,2,19,4],"span":[445,2,10]},{"path":[4,23,2,19,5],"span":[445,11,17]},{"path":[4,23,2,19,1],"span":[445,18,30]},{"path":[4,23,2,19,3],"span":[445,33,35]},{"path":[4,23,2,20],"span":[446,2,38]},{"path":[4,23,2,20,4],"span":[446,2,10]},{"path":[4,23,2,20,5],"span":[446,11,16]},{"path":[4,23,2,20,1],"span":[446,17,32]},{"path":[4,23,2,20,3],"span":[446,35,37]},{"path":[4,23,2,21],"span":[447,2,47]},{"path":[4,23,2,21,4],"span":[447,2,10]},{"path":[4,23,2,21,5],"span":[447,11,16]},{"path":[4,23,2,21,1],"span":[447,17,41]},{"path":[4,23,2,21,3],"span":[447,44,46]},{"path":[4,23,2,22],"span":[448,2,30]},{"path":[4,23,2,22,4],"span":[448,2,10]},{"path":[4,23,2,22,5],"span":[448,11,16]},{"path":[4,23,2,22,1],"span":[448,17,24]},{"path":[4,23,2,22,3],"span":[448,27,29]},{"path":[4,23,2,23],"span":[449,2,29]},{"path":[4,23,2,23,4],"span":[449,2,10]},{"path":[4,23,2,23,5],"span":[449,11,16]},{"path":[4,23,2,23,1],"span":[449,17,23]},{"path":[4,23,2,23,3],"span":[449,26,28]},{"path":[4,23,2,24],"span":[450,2,29]},{"path":[4,23,2,24,4],"span":[450,2,10]},{"path":[4,23,2,24,5],"span":[450,11,16]},{"path":[4,23,2,24,1],"span":[450,17,23]},{"path":[4,23,2,24,3],"span":[450,26,28]},{"path":[4,23,2,25],"span":[451,2,36]},{"path":[4,23,2,25,4],"span":[451,2,10]},{"path":[4,23,2,25,5],"span":[451,11,17]},{"path":[4,23,2,25,1],"span":[451,18,30]},{"path":[4,23,2,25,3],"span":[451,33,35]},{"path":[4,23,2,26],"span":[452,2,39]},{"path":[4,23,2,26,4],"span":[452,2,10]},{"path":[4,23,2,26,5],"span":[452,11,16]},{"path":[4,23,2,26,1],"span":[452,17,33]},{"path":[4,23,2,26,3],"span":[452,36,38]},{"path":[4,23,2,27],"span":[453,2,44]},{"path":[4,23,2,27,4],"span":[453,2,10]},{"path":[4,23,2,27,5],"span":[453,11,17]},{"path":[4,23,2,27,1],"span":[453,18,38]},{"path":[4,23,2,27,3],"span":[453,41,43]},{"path":[4,23,2,28],"span":[455,2,36]},{"path":[4,23,2,28,4],"span":[455,2,10]},{"path":[4,23,2,28,5],"span":[455,11,17]},{"path":[4,23,2,28,1],"span":[455,18,30]},{"path":[4,23,2,28,3],"span":[455,33,35]},{"path":[4,23,2,29],"span":[456,2,37]},{"path":[4,23,2,29,4],"span":[456,2,10]},{"path":[4,23,2,29,5],"span":[456,11,16]},{"path":[4,23,2,29,1],"span":[456,17,31]},{"path":[4,23,2,29,3],"span":[456,34,36]},{"path":[4,23,2,30],"span":[457,2,42]},{"path":[4,23,2,30,4],"span":[457,2,10]},{"path":[4,23,2,30,5],"span":[457,11,17]},{"path":[4,23,2,30,1],"span":[457,18,36]},{"path":[4,23,2,30,3],"span":[457,39,41]},{"path":[4,23,2,31],"span":[458,2,38]},{"path":[4,23,2,31,4],"span":[458,2,10]},{"path":[4,23,2,31,5],"span":[458,11,17]},{"path":[4,23,2,31,1],"span":[458,18,32]},{"path":[4,23,2,31,3],"span":[458,35,37]},{"path":[4,23,2,32],"span":[459,2,42]},{"path":[4,23,2,32,4],"span":[459,2,10]},{"path":[4,23,2,32,5],"span":[459,11,17]},{"path":[4,23,2,32,1],"span":[459,18,36]},{"path":[4,23,2,32,3],"span":[459,39,41]},{"path":[4,23,2,33],"span":[460,2,39]},{"path":[4,23,2,33,4],"span":[460,2,10]},{"path":[4,23,2,33,5],"span":[460,11,17]},{"path":[4,23,2,33,1],"span":[460,18,33]},{"path":[4,23,2,33,3],"span":[460,36,38]},{"path":[4,23,2,34],"span":[461,2,34]},{"path":[4,23,2,34,4],"span":[461,2,10]},{"path":[4,23,2,34,5],"span":[461,11,17]},{"path":[4,23,2,34,1],"span":[461,18,28]},{"path":[4,23,2,34,3],"span":[461,31,33]},{"path":[4,23,2,35],"span":[462,2,34]},{"path":[4,23,2,35,4],"span":[462,2,10]},{"path":[4,23,2,35,5],"span":[462,11,17]},{"path":[4,23,2,35,1],"span":[462,18,28]},{"path":[4,23,2,35,3],"span":[462,31,33]},{"path":[4,23,2,36],"span":[463,2,33]},{"path":[4,23,2,36,4],"span":[463,2,10]},{"path":[4,23,2,36,5],"span":[463,11,17]},{"path":[4,23,2,36,1],"span":[463,18,27]},{"path":[4,23,2,36,3],"span":[463,30,32]},{"path":[4,23,2,37],"span":[465,2,33]},{"path":[4,23,2,37,4],"span":[465,2,10]},{"path":[4,23,2,37,5],"span":[465,11,15]},{"path":[4,23,2,37,1],"span":[465,16,27]},{"path":[4,23,2,37,3],"span":[465,30,32]},{"path":[4,23,2,38],"span":[466,2,36]},{"path":[4,23,2,38,4],"span":[466,2,10]},{"path":[4,23,2,38,5],"span":[466,11,15]},{"path":[4,23,2,38,1],"span":[466,16,30]},{"path":[4,23,2,38,3],"span":[466,33,35]},{"path":[4,23,2,39],"span":[467,2,38]},{"path":[4,23,2,39,4],"span":[467,2,10]},{"path":[4,23,2,39,5],"span":[467,11,15]},{"path":[4,23,2,39,1],"span":[467,16,32]},{"path":[4,23,2,39,3],"span":[467,35,37]},{"path":[4,23,2,40],"span":[468,2,34]},{"path":[4,23,2,40,4],"span":[468,2,10]},{"path":[4,23,2,40,5],"span":[468,11,15]},{"path":[4,23,2,40,1],"span":[468,16,28]},{"path":[4,23,2,40,3],"span":[468,31,33]},{"path":[4,23,2,41],"span":[469,2,33]},{"path":[4,23,2,41,4],"span":[469,2,10]},{"path":[4,23,2,41,5],"span":[469,11,15]},{"path":[4,23,2,41,1],"span":[469,16,27]},{"path":[4,23,2,41,3],"span":[469,30,32]},{"path":[4,23,2,42],"span":[470,2,38]},{"path":[4,23,2,42,4],"span":[470,2,10]},{"path":[4,23,2,42,5],"span":[470,11,15]},{"path":[4,23,2,42,1],"span":[470,16,32]},{"path":[4,23,2,42,3],"span":[470,35,37]},{"path":[4,23,2,43],"span":[471,2,36]},{"path":[4,23,2,43,4],"span":[471,2,10]},{"path":[4,23,2,43,5],"span":[471,11,15]},{"path":[4,23,2,43,1],"span":[471,16,30]},{"path":[4,23,2,43,3],"span":[471,33,35]},{"path":[4,23,2,44],"span":[473,2,39]},{"path":[4,23,2,44,4],"span":[473,2,10]},{"path":[4,23,2,44,5],"span":[473,11,16]},{"path":[4,23,2,44,1],"span":[473,17,33]},{"path":[4,23,2,44,3],"span":[473,36,38]},{"path":[4,23,2,45],"span":[475,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,23,2,45,4],"span":[475,2,10]},{"path":[4,23,2,45,5],"span":[475,11,16]},{"path":[4,23,2,45,1],"span":[475,17,28]},{"path":[4,23,2,45,3],"span":[475,31,34]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
1
+ {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"GetEntityRequest","field":[{"name":"entity_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"entityPath"}]},{"name":"GetEntityResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"entity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","oneofIndex":1,"jsonName":"entity","proto3Optional":true},{"name":"related","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}],"oneofDecl":[{"name":"_error_description"},{"name":"_entity"}]},{"name":"ListEntityRequest","field":[{"name":"filter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"filter"}]},{"name":"ListEntityResponse","field":[{"name":"entity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"entity"},{"name":"related","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}]},{"name":"CatalogLookupRequest","field":[{"name":"brand_id","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"brandId"},{"name":"model_id","number":2,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"modelId"},{"name":"os_id","number":3,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"osId"},{"name":"sw_id","number":4,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"swId"},{"name":"monitor_id","number":5,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"monitorId"},{"name":"only_requested","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"onlyRequested","proto3Optional":true}],"oneofDecl":[{"name":"_only_requested"}]},{"name":"CatalogLookupResponse","field":[{"name":"brand","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","jsonName":"brand"},{"name":"model","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","jsonName":"model"},{"name":"os","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","jsonName":"os"},{"name":"sw","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","jsonName":"sw"},{"name":"monitor","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","jsonName":"monitor"}]},{"name":"EntityPath","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"source_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceId","proto3Optional":true},{"name":"source_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceType","proto3Optional":true},{"name":"entity_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"entityType","proto3Optional":true},{"name":"entity_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"entityId","proto3Optional":true}],"oneofDecl":[{"name":"_source_id"},{"name":"_source_type"},{"name":"_entity_type"},{"name":"_entity_id"}]},{"name":"Entity","field":[{"name":"asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Asset","oneofIndex":0,"jsonName":"asset"}],"oneofDecl":[{"name":"entity"}]},{"name":"Asset","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"id"},{"name":"last_synced","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"first_seen","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"firstSeen"},{"name":"last_updated","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastUpdated"},{"name":"last_enriched","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastEnriched"},{"name":"core","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CoreFields","jsonName":"core"},{"name":"hw","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardwareInfo","oneofIndex":0,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemInfo","oneofIndex":1,"jsonName":"os","proto3Optional":true},{"name":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":2,"jsonName":"softwareInventory","proto3Optional":true},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":3,"jsonName":"monitorInventory","proto3Optional":true}],"oneofDecl":[{"name":"_hw"},{"name":"_os"},{"name":"_software_inventory"},{"name":"_monitor_inventory"}]},{"name":"AssetType","field":[{"name":"ls_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsName"},{"name":"ls_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"lsId"},{"name":"fing_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fingType","proto3Optional":true}],"oneofDecl":[{"name":"_fing_type"}]},{"name":"CoreFields","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetType","jsonName":"type"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"domain","proto3Optional":true},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"ipAddress","proto3Optional":true},{"name":"serial","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serial","proto3Optional":true},{"name":"mac","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"mac","proto3Optional":true},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"macVendor","proto3Optional":true},{"name":"sensor_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"sensorId","proto3Optional":true}],"oneofDecl":[{"name":"_domain"},{"name":"_ip_address"},{"name":"_serial"},{"name":"_mac"},{"name":"_mac_vendor"},{"name":"_sensor_id"}]},{"name":"HardwareInfo","field":[{"name":"type_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"typeId","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"model_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"modelId","proto3Optional":true},{"name":"family_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isFamily","proto3Optional":true},{"name":"serial","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"serial","proto3Optional":true},{"name":"type_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":11,"jsonName":"rank","proto3Optional":true},{"name":"raw","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawHardwareInfo","oneofIndex":12,"jsonName":"raw","proto3Optional":true}],"oneofDecl":[{"name":"_type_id"},{"name":"_make_id"},{"name":"_model_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_serial"},{"name":"_type_name"},{"name":"_make_name"},{"name":"_model_name"},{"name":"_family_name"},{"name":"_cpe"},{"name":"_rank"},{"name":"_raw"}]},{"name":"RawHardwareInfo","field":[{"name":"architecture","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"architecture","proto3Optional":true},{"name":"model","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"model","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"}]},{"name":"OperatingSystemInfo","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true},{"name":"build","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"rank","proto3Optional":true},{"name":"windows","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"}],"oneofDecl":[{"name":"raw"},{"name":"_id"},{"name":"_make_id"},{"name":"_name"},{"name":"_version"},{"name":"_build"},{"name":"_fw_version"},{"name":"_cpe"},{"name":"_fw_cpe"},{"name":"_rank"}]},{"name":"WindowsRawOperatingSystemInfo","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"service_pack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"servicePack","proto3Optional":true},{"name":"build","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"build","proto3Optional":true},{"name":"version_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"versionName","proto3Optional":true},{"name":"build_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"buildNumber","proto3Optional":true},{"name":"product_type","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"productType","proto3Optional":true},{"name":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"osCode","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_build_number"},{"name":"_product_type"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"}]},{"name":"MonitorInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"monitor","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Monitor","jsonName":"monitor"}]},{"name":"Monitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"model_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"modelName"},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"manufacturer_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"manufacturerDate"},{"name":"windows","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo","oneofIndex":0,"jsonName":"windows"}],"oneofDecl":[{"name":"raw"},{"name":"_id"},{"name":"_make_id"},{"name":"_serial_number"}]},{"name":"WindowsRawMonitorInfo","field":[{"name":"model","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"pnp_device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"serial_number","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"serial_hex","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serialHex","proto3Optional":true},{"name":"vesa_manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vesaManufacturer","proto3Optional":true},{"name":"key_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"keyManufacturer","proto3Optional":true},{"name":"manufacturer_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"manufacturerDate","proto3Optional":true},{"name":"device_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"deviceId","proto3Optional":true}],"oneofDecl":[{"name":"_pnp_device_id"},{"name":"_serial_number"},{"name":"_serial_hex"},{"name":"_vesa_manufacturer"},{"name":"_key_manufacturer"},{"name":"_manufacturer_date"},{"name":"_device_id"}]},{"name":"SoftwareInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"software","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","jsonName":"software"}]},{"name":"Software","field":[{"name":"rank","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"rank","proto3Optional":true},{"name":"type_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"typeId","proto3Optional":true},{"name":"cat_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"catId","proto3Optional":true},{"name":"make_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"makeId","proto3Optional":true},{"name":"sw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"swId","proto3Optional":true},{"name":"parent_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"type_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"cat_name","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"catName","proto3Optional":true},{"name":"make_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"makeName","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"version","proto3Optional":true},{"name":"market_ver","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"marketVer","proto3Optional":true},{"name":"edition","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"edition","proto3Optional":true},{"name":"build","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"build","proto3Optional":true},{"name":"arch","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"arch","proto3Optional":true},{"name":"lang","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"lang","proto3Optional":true},{"name":"cpe","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"cpe","proto3Optional":true},{"name":"raw","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawSoftware","jsonName":"raw"},{"name":"raw_hash","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"rawHash","proto3Optional":true},{"name":"nre_hash","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"nreHash","proto3Optional":true}],"oneofDecl":[{"name":"_rank"},{"name":"_type_id"},{"name":"_cat_id"},{"name":"_make_id"},{"name":"_sw_id"},{"name":"_parent_id"},{"name":"_type_name"},{"name":"_cat_name"},{"name":"_make_name"},{"name":"_name"},{"name":"_version"},{"name":"_market_ver"},{"name":"_edition"},{"name":"_build"},{"name":"_arch"},{"name":"_lang"},{"name":"_cpe"},{"name":"_raw_hash"},{"name":"_nre_hash"}]},{"name":"RawSoftware","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"vendor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"version","proto3Optional":true},{"name":"info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"exe_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"exePath","proto3Optional":true},{"name":"arch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"arch","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"installDate","proto3Optional":true},{"name":"source_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sourceType","proto3Optional":true},{"name":"sw_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"swId","proto3Optional":true},{"name":"is_current_user","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isCurrentUser","proto3Optional":true}],"oneofDecl":[{"name":"_vendor"},{"name":"_version"},{"name":"_info"},{"name":"_exe_path"},{"name":"_arch"},{"name":"_install_date"},{"name":"_source_type"},{"name":"_sw_id"},{"name":"_is_current_user"}]},{"name":"CatalogBrand","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"parent_id","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"parentId","proto3Optional":true},{"name":"last_update_time","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"country_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryCode","proto3Optional":true},{"name":"logo_image_url","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"twitterAccount","proto3Optional":true},{"name":"warranty_url","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"warrantyUrl","proto3Optional":true},{"name":"warranty_direct_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"warrantyDirectUrl","proto3Optional":true},{"name":"community_url","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"communityUrl","proto3Optional":true},{"name":"linkedin_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"linkedinAccount","proto3Optional":true},{"name":"instagram_account","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"instagramAccount","proto3Optional":true},{"name":"youtube_account","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"youtubeAccount","proto3Optional":true},{"name":"pinterest_account","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pinterestAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_parent_id"},{"name":"_last_update_time"},{"name":"_country_code"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_warranty_url"},{"name":"_warranty_direct_url"},{"name":"_community_url"},{"name":"_linkedin_account"},{"name":"_instagram_account"},{"name":"_youtube_account"},{"name":"_pinterest_account"},{"name":"_class_hardware"},{"name":"_class_software"},{"name":"_class_consumer"},{"name":"_class_enterprise"},{"name":"_class_industrial"},{"name":"_class_individual"},{"name":"_match_score"}]},{"name":"CatalogModel","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"makeId"},{"name":"device_model","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceModel"},{"name":"device_type_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"deviceTypeId","proto3Optional":true},{"name":"device_model_code","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"deviceModelCode"},{"name":"family_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isFamily","proto3Optional":true},{"name":"manual_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manualUrl","proto3Optional":true},{"name":"faq_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"faqUrl","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"eosDate","proto3Optional":true},{"name":"lifecyle_confidence","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"price_class","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"priceClass","proto3Optional":true},{"name":"product_class","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"productClass","proto3Optional":true},{"name":"sh_ifttt_handle","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"shIftttHandle","proto3Optional":true},{"name":"sh_google_ass_langs","number":18,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shGoogleAssLangs"},{"name":"sh_alexa_langs","number":19,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shAlexaLangs"},{"name":"sh_hass_handle","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"shHassHandle","proto3Optional":true},{"name":"sh_apple_home_kit","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"shAppleHomeKit","proto3Optional":true},{"name":"sh_open_hab_handle","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"shOpenHabHandle","proto3Optional":true},{"name":"nist_cpe","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"nistCpe","proto3Optional":true},{"name":"popularity","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"popularity","proto3Optional":true},{"name":"last_update_time","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":17,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_device_type_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_manual_url"},{"name":"_faq_url"},{"name":"_release_date"},{"name":"_disc_date"},{"name":"_eos_date"},{"name":"_lifecyle_confidence"},{"name":"_price_class"},{"name":"_product_class"},{"name":"_sh_ifttt_handle"},{"name":"_sh_hass_handle"},{"name":"_sh_apple_home_kit"},{"name":"_sh_open_hab_handle"},{"name":"_nist_cpe"},{"name":"_popularity"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogOs","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"os_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"osName"},{"name":"os_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"osVersion","proto3Optional":true},{"name":"os_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"osBuild","proto3Optional":true},{"name":"os_version_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"osVersionName","proto3Optional":true},{"name":"override_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"logo_image_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"twitterAccount","proto3Optional":true},{"name":"nist_cpe","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"nistCpe","proto3Optional":true},{"name":"last_update_time","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":21,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_os_version"},{"name":"_os_build"},{"name":"_os_version_name"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_nist_cpe"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogSoftware","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"sw_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swName"},{"name":"sw_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"swVersion","proto3Optional":true},{"name":"sw_market_ver","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"swMarketVer","proto3Optional":true},{"name":"sw_edition","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"swEdition","proto3Optional":true},{"name":"sw_lang","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"swLang","proto3Optional":true},{"name":"sw_build","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"swBuild","proto3Optional":true},{"name":"make_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"parentId","proto3Optional":true},{"name":"latest_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"latestId","proto3Optional":true},{"name":"sw_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"swType","proto3Optional":true},{"name":"sw_category","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"swCategory","proto3Optional":true},{"name":"release_date","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":10,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":11,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":12,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":13,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"flag_latest","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"flagLatest","proto3Optional":true},{"name":"flag_widespread","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"flagWidespread","proto3Optional":true},{"name":"flag_deprecated","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"flagDeprecated","proto3Optional":true},{"name":"last_update_time","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":18,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_sw_version"},{"name":"_sw_market_ver"},{"name":"_sw_edition"},{"name":"_sw_lang"},{"name":"_sw_build"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_latest_id"},{"name":"_sw_type"},{"name":"_sw_category"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_flag_latest"},{"name":"_flag_widespread"},{"name":"_flag_deprecated"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogMonitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"model","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"vendor_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendorId","proto3Optional":true},{"name":"make_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"family_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isFamily","proto3Optional":true},{"name":"official_page","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"officialPage","proto3Optional":true},{"name":"support_page","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"supportPage","proto3Optional":true},{"name":"size_inch","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":6,"jsonName":"sizeInch","proto3Optional":true},{"name":"max_resolution","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"maxResolution","proto3Optional":true},{"name":"aspect_ratio","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"aspectRatio","proto3Optional":true},{"name":"response_time_ms","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":9,"jsonName":"responseTimeMs","proto3Optional":true},{"name":"hd_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hdType","proto3Optional":true},{"name":"display_tech","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"displayTech","proto3Optional":true},{"name":"refresh_rate","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"refreshRate","proto3Optional":true},{"name":"panel","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"panel","proto3Optional":true},{"name":"height_cm","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":14,"jsonName":"heightCm","proto3Optional":true},{"name":"width_cm","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":15,"jsonName":"widthCm","proto3Optional":true},{"name":"diagonal_cm","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":16,"jsonName":"diagonalCm","proto3Optional":true},{"name":"usb_upstream","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"usbUpstream","proto3Optional":true},{"name":"nr_usb_upstream","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"nrUsbUpstream","proto3Optional":true},{"name":"nr_usb_type_a_downstream","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"nrUsbTypeADownstream","proto3Optional":true},{"name":"nr_hdmi","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"nrHdmi","proto3Optional":true},{"name":"nr_vga","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"nrVga","proto3Optional":true},{"name":"nr_dvi","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"nrDvi","proto3Optional":true},{"name":"hdmi_version","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":23,"jsonName":"hdmiVersion","proto3Optional":true},{"name":"nr_display_ports","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":24,"jsonName":"nrDisplayPorts","proto3Optional":true},{"name":"display_port_version","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":25,"jsonName":"displayPortVersion","proto3Optional":true},{"name":"energy_class","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"energyClass","proto3Optional":true},{"name":"sdr_per_1000_u","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":27,"jsonName":"sdrPer1000U","proto3Optional":true},{"name":"average_watt_usage","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":28,"jsonName":"averageWattUsage","proto3Optional":true},{"name":"max_watt_usage","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":29,"jsonName":"maxWattUsage","proto3Optional":true},{"name":"watt_usage_standby","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":30,"jsonName":"wattUsageStandby","proto3Optional":true},{"name":"watt_power_save","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":31,"jsonName":"wattPowerSave","proto3Optional":true},{"name":"ac_voltage","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":32,"jsonName":"acVoltage","proto3Optional":true},{"name":"ac_freq_hz","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"acFreqHz","proto3Optional":true},{"name":"current_a","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":34,"jsonName":"currentA","proto3Optional":true},{"name":"feature_aio","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":35,"jsonName":"featureAio","proto3Optional":true},{"name":"feature_camera","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":36,"jsonName":"featureCamera","proto3Optional":true},{"name":"feature_speakers","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":37,"jsonName":"featureSpeakers","proto3Optional":true},{"name":"feature_hdmi","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":38,"jsonName":"featureHdmi","proto3Optional":true},{"name":"feature_eth","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":39,"jsonName":"featureEth","proto3Optional":true},{"name":"feature_portrait","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":40,"jsonName":"featurePortrait","proto3Optional":true},{"name":"feature_curved","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":41,"jsonName":"featureCurved","proto3Optional":true},{"name":"last_update_time","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":42,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":43,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_vendor_id"},{"name":"_make_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_official_page"},{"name":"_support_page"},{"name":"_size_inch"},{"name":"_max_resolution"},{"name":"_aspect_ratio"},{"name":"_response_time_ms"},{"name":"_hd_type"},{"name":"_display_tech"},{"name":"_refresh_rate"},{"name":"_panel"},{"name":"_height_cm"},{"name":"_width_cm"},{"name":"_diagonal_cm"},{"name":"_usb_upstream"},{"name":"_nr_usb_upstream"},{"name":"_nr_usb_type_a_downstream"},{"name":"_nr_hdmi"},{"name":"_nr_vga"},{"name":"_nr_dvi"},{"name":"_hdmi_version"},{"name":"_nr_display_ports"},{"name":"_display_port_version"},{"name":"_energy_class"},{"name":"_sdr_per_1000_u"},{"name":"_average_watt_usage"},{"name":"_max_watt_usage"},{"name":"_watt_usage_standby"},{"name":"_watt_power_save"},{"name":"_ac_voltage"},{"name":"_ac_freq_hz"},{"name":"_current_a"},{"name":"_feature_aio"},{"name":"_feature_camera"},{"name":"_feature_speakers"},{"name":"_feature_hdmi"},{"name":"_feature_eth"},{"name":"_feature_portrait"},{"name":"_feature_curved"},{"name":"_last_update_time"},{"name":"_match_score"}]}],"service":[{"name":"DataCoreOutboundService","method":[{"name":"GetEntity","inputType":".com.lansweeper.dp.outbound.v1.GetEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.GetEntityResponse","options":{}},{"name":"ListEntities","inputType":".com.lansweeper.dp.outbound.v1.ListEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.ListEntityResponse","options":{},"serverStreaming":true},{"name":"CatalogLookup","inputType":".com.lansweeper.dp.outbound.v1.CatalogLookupRequest","outputType":".com.lansweeper.dp.outbound.v1.CatalogLookupResponse","options":{}}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,509,1]},{"path":[12],"span":[7,0,18],"leadingComments":"\n Copyright Lansweeper (c)\n\n This files contains the Data Access API and the definition of outbound model\n\n N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc\n"},{"path":[2],"span":[8,0,38]},{"path":[8],"span":[10,0,37]},{"path":[8,11],"span":[10,0,37]},{"path":[8],"span":[11,0,34]},{"path":[8,10],"span":[11,0,34]},{"path":[3,0],"span":[13,0,41]},{"path":[6,0],"span":[22,0,32,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[22,8,31]},{"path":[6,0,2,0],"span":[25,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[25,6,15]},{"path":[6,0,2,0,2],"span":[25,17,33]},{"path":[6,0,2,0,3],"span":[25,44,61]},{"path":[6,0,2,1],"span":[28,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[28,6,18]},{"path":[6,0,2,1,2],"span":[28,19,36]},{"path":[6,0,2,1,6],"span":[28,47,53]},{"path":[6,0,2,1,3],"span":[28,54,72]},{"path":[6,0,2,2],"span":[31,2,77],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,2,1],"span":[31,6,19]},{"path":[6,0,2,2,2],"span":[31,21,41]},{"path":[6,0,2,2,3],"span":[31,52,73]},{"path":[4,0],"span":[37,0,40,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[37,8,24]},{"path":[4,0,2,0],"span":[38,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[38,2,12]},{"path":[4,0,2,0,1],"span":[38,13,24]},{"path":[4,0,2,0,3],"span":[38,27,28]},{"path":[4,1],"span":[42,0,48,1]},{"path":[4,1,1],"span":[42,8,25]},{"path":[4,1,2,0],"span":[43,2,19]},{"path":[4,1,2,0,5],"span":[43,2,6]},{"path":[4,1,2,0,1],"span":[43,7,14]},{"path":[4,1,2,0,3],"span":[43,17,18]},{"path":[4,1,2,1],"span":[44,2,40]},{"path":[4,1,2,1,4],"span":[44,2,10]},{"path":[4,1,2,1,5],"span":[44,11,17]},{"path":[4,1,2,1,1],"span":[44,18,35]},{"path":[4,1,2,1,3],"span":[44,38,39]},{"path":[4,1,2,2],"span":[46,2,29]},{"path":[4,1,2,2,4],"span":[46,2,10]},{"path":[4,1,2,2,6],"span":[46,11,17]},{"path":[4,1,2,2,1],"span":[46,18,24]},{"path":[4,1,2,2,3],"span":[46,27,28]},{"path":[4,1,2,3],"span":[47,2,30]},{"path":[4,1,2,3,4],"span":[47,2,10]},{"path":[4,1,2,3,6],"span":[47,11,17]},{"path":[4,1,2,3,1],"span":[47,18,25]},{"path":[4,1,2,3,3],"span":[47,28,29]},{"path":[4,2],"span":[50,0,52,1]},{"path":[4,2,1],"span":[50,8,25]},{"path":[4,2,2,0],"span":[51,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[51,2,12]},{"path":[4,2,2,0,1],"span":[51,13,19]},{"path":[4,2,2,0,3],"span":[51,22,23]},{"path":[4,3],"span":[54,0,57,1]},{"path":[4,3,1],"span":[54,8,26]},{"path":[4,3,2,0],"span":[55,2,20]},{"path":[4,3,2,0,6],"span":[55,2,8]},{"path":[4,3,2,0,1],"span":[55,9,15]},{"path":[4,3,2,0,3],"span":[55,18,19]},{"path":[4,3,2,1],"span":[56,2,30]},{"path":[4,3,2,1,4],"span":[56,2,10]},{"path":[4,3,2,1,6],"span":[56,11,17]},{"path":[4,3,2,1,1],"span":[56,18,25]},{"path":[4,3,2,1,3],"span":[56,28,29]},{"path":[4,4],"span":[59,0,67,1]},{"path":[4,4,1],"span":[59,8,28]},{"path":[4,4,2,0],"span":[60,2,30]},{"path":[4,4,2,0,4],"span":[60,2,10]},{"path":[4,4,2,0,5],"span":[60,11,16]},{"path":[4,4,2,0,1],"span":[60,17,25]},{"path":[4,4,2,0,3],"span":[60,28,29]},{"path":[4,4,2,1],"span":[61,2,30]},{"path":[4,4,2,1,4],"span":[61,2,10]},{"path":[4,4,2,1,5],"span":[61,11,16]},{"path":[4,4,2,1,1],"span":[61,17,25]},{"path":[4,4,2,1,3],"span":[61,28,29]},{"path":[4,4,2,2],"span":[62,2,27]},{"path":[4,4,2,2,4],"span":[62,2,10]},{"path":[4,4,2,2,5],"span":[62,11,16]},{"path":[4,4,2,2,1],"span":[62,17,22]},{"path":[4,4,2,2,3],"span":[62,25,26]},{"path":[4,4,2,3],"span":[63,2,27]},{"path":[4,4,2,3,4],"span":[63,2,10]},{"path":[4,4,2,3,5],"span":[63,11,16]},{"path":[4,4,2,3,1],"span":[63,17,22]},{"path":[4,4,2,3,3],"span":[63,25,26]},{"path":[4,4,2,4],"span":[64,2,32]},{"path":[4,4,2,4,4],"span":[64,2,10]},{"path":[4,4,2,4,5],"span":[64,11,16]},{"path":[4,4,2,4,1],"span":[64,17,27]},{"path":[4,4,2,4,3],"span":[64,30,31]},{"path":[4,4,2,5],"span":[66,2,36],"trailingComments":" false by default: to avoid to get full path\n"},{"path":[4,4,2,5,4],"span":[66,2,10]},{"path":[4,4,2,5,5],"span":[66,11,15]},{"path":[4,4,2,5,1],"span":[66,16,30]},{"path":[4,4,2,5,3],"span":[66,33,35]},{"path":[4,5],"span":[69,0,75,1]},{"path":[4,5,1],"span":[69,8,29]},{"path":[4,5,2,0],"span":[70,2,34]},{"path":[4,5,2,0,4],"span":[70,2,10]},{"path":[4,5,2,0,6],"span":[70,11,23]},{"path":[4,5,2,0,1],"span":[70,24,29]},{"path":[4,5,2,0,3],"span":[70,32,33]},{"path":[4,5,2,1],"span":[71,2,34]},{"path":[4,5,2,1,4],"span":[71,2,10]},{"path":[4,5,2,1,6],"span":[71,11,23]},{"path":[4,5,2,1,1],"span":[71,24,29]},{"path":[4,5,2,1,3],"span":[71,32,33]},{"path":[4,5,2,2],"span":[72,2,28]},{"path":[4,5,2,2,4],"span":[72,2,10]},{"path":[4,5,2,2,6],"span":[72,11,20]},{"path":[4,5,2,2,1],"span":[72,21,23]},{"path":[4,5,2,2,3],"span":[72,26,27]},{"path":[4,5,2,3],"span":[73,2,34]},{"path":[4,5,2,3,4],"span":[73,2,10]},{"path":[4,5,2,3,6],"span":[73,11,26]},{"path":[4,5,2,3,1],"span":[73,27,29]},{"path":[4,5,2,3,3],"span":[73,32,33]},{"path":[4,5,2,4],"span":[74,2,38]},{"path":[4,5,2,4,4],"span":[74,2,10]},{"path":[4,5,2,4,6],"span":[74,11,25]},{"path":[4,5,2,4,1],"span":[74,26,33]},{"path":[4,5,2,4,3],"span":[74,36,37]},{"path":[4,6],"span":[79,0,85,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[79,8,18]},{"path":[4,6,2,0],"span":[80,2,21]},{"path":[4,6,2,0,5],"span":[80,2,8]},{"path":[4,6,2,0,1],"span":[80,9,16]},{"path":[4,6,2,0,3],"span":[80,19,20]},{"path":[4,6,2,1],"span":[81,2,32]},{"path":[4,6,2,1,4],"span":[81,2,10]},{"path":[4,6,2,1,5],"span":[81,11,17]},{"path":[4,6,2,1,1],"span":[81,18,27]},{"path":[4,6,2,1,3],"span":[81,30,31]},{"path":[4,6,2,2],"span":[82,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[82,2,10]},{"path":[4,6,2,2,5],"span":[82,11,17]},{"path":[4,6,2,2,1],"span":[82,18,29]},{"path":[4,6,2,2,3],"span":[82,32,33]},{"path":[4,6,2,3],"span":[83,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[83,2,10]},{"path":[4,6,2,3,5],"span":[83,11,17]},{"path":[4,6,2,3,1],"span":[83,18,29]},{"path":[4,6,2,3,3],"span":[83,32,33]},{"path":[4,6,2,4],"span":[84,2,32]},{"path":[4,6,2,4,4],"span":[84,2,10]},{"path":[4,6,2,4,5],"span":[84,11,17]},{"path":[4,6,2,4,1],"span":[84,18,27]},{"path":[4,6,2,4,3],"span":[84,30,31]},{"path":[4,7],"span":[87,0,93,1]},{"path":[4,7,1],"span":[87,8,14]},{"path":[4,7,8,0],"span":[88,2,92,3]},{"path":[4,7,8,0,1],"span":[88,8,14]},{"path":[4,7,2,0],"span":[89,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[89,4,9]},{"path":[4,7,2,0,1],"span":[89,10,15]},{"path":[4,7,2,0,3],"span":[89,18,19]},{"path":[4,8],"span":[95,0,119,1]},{"path":[4,8,1],"span":[95,8,13]},{"path":[4,8,2,0],"span":[97,2,20]},{"path":[4,8,2,0,6],"span":[97,2,12]},{"path":[4,8,2,0,1],"span":[97,13,15]},{"path":[4,8,2,0,3],"span":[97,18,19]},{"path":[4,8,2,1],"span":[99,2,44]},{"path":[4,8,2,1,6],"span":[99,2,27]},{"path":[4,8,2,1,1],"span":[99,28,39]},{"path":[4,8,2,1,3],"span":[99,42,43]},{"path":[4,8,2,2],"span":[100,2,43]},{"path":[4,8,2,2,6],"span":[100,2,27]},{"path":[4,8,2,2,1],"span":[100,28,38]},{"path":[4,8,2,2,3],"span":[100,41,42]},{"path":[4,8,2,3],"span":[101,2,45]},{"path":[4,8,2,3,6],"span":[101,2,27]},{"path":[4,8,2,3,1],"span":[101,28,40]},{"path":[4,8,2,3,3],"span":[101,43,44]},{"path":[4,8,2,4],"span":[102,2,46]},{"path":[4,8,2,4,6],"span":[102,2,27]},{"path":[4,8,2,4,1],"span":[102,28,41]},{"path":[4,8,2,4,3],"span":[102,44,45]},{"path":[4,8,2,5],"span":[104,2,22]},{"path":[4,8,2,5,6],"span":[104,2,12]},{"path":[4,8,2,5,1],"span":[104,13,17]},{"path":[4,8,2,5,3],"span":[104,20,21]},{"path":[4,8,2,6],"span":[106,2,31]},{"path":[4,8,2,6,4],"span":[106,2,10]},{"path":[4,8,2,6,6],"span":[106,11,23]},{"path":[4,8,2,6,1],"span":[106,24,26]},{"path":[4,8,2,6,3],"span":[106,29,30]},{"path":[4,8,2,7],"span":[107,2,38]},{"path":[4,8,2,7,4],"span":[107,2,10]},{"path":[4,8,2,7,6],"span":[107,11,30]},{"path":[4,8,2,7,1],"span":[107,31,33]},{"path":[4,8,2,7,3],"span":[107,36,37]},{"path":[4,8,2,8],"span":[108,2,52]},{"path":[4,8,2,8,4],"span":[108,2,10]},{"path":[4,8,2,8,6],"span":[108,11,28]},{"path":[4,8,2,8,1],"span":[108,29,47]},{"path":[4,8,2,8,3],"span":[108,50,51]},{"path":[4,8,2,9],"span":[110,2,51]},{"path":[4,8,2,9,4],"span":[110,2,10]},{"path":[4,8,2,9,6],"span":[110,11,27]},{"path":[4,8,2,9,1],"span":[110,28,45]},{"path":[4,8,2,9,3],"span":[110,48,50]},{"path":[4,9],"span":[125,0,132,1],"leadingComments":"\n Asset Type enables customers to manage the settings for a\n category of information in a centralized, reusable way.\n"},{"path":[4,9,1],"span":[125,8,17]},{"path":[4,9,2,0],"span":[127,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,9,2,0,5],"span":[127,2,8]},{"path":[4,9,2,0,1],"span":[127,9,16]},{"path":[4,9,2,0,3],"span":[127,19,20]},{"path":[4,9,2,1],"span":[129,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,9,2,1,5],"span":[129,2,7]},{"path":[4,9,2,1,1],"span":[129,8,13]},{"path":[4,9,2,1,3],"span":[129,16,17]},{"path":[4,9,2,2],"span":[131,2,32],"leadingComments":" Fing Type\n"},{"path":[4,9,2,2,4],"span":[131,2,10]},{"path":[4,9,2,2,5],"span":[131,11,17]},{"path":[4,9,2,2,1],"span":[131,18,27]},{"path":[4,9,2,2,3],"span":[131,30,31]},{"path":[4,10],"span":[137,0,146,1],"leadingComments":"\n\n"},{"path":[4,10,1],"span":[137,8,18]},{"path":[4,10,2,0],"span":[138,2,21]},{"path":[4,10,2,0,6],"span":[138,2,11]},{"path":[4,10,2,0,1],"span":[138,12,16]},{"path":[4,10,2,0,3],"span":[138,19,20]},{"path":[4,10,2,1],"span":[139,2,18]},{"path":[4,10,2,1,5],"span":[139,2,8]},{"path":[4,10,2,1,1],"span":[139,9,13]},{"path":[4,10,2,1,3],"span":[139,16,17]},{"path":[4,10,2,2],"span":[140,2,29]},{"path":[4,10,2,2,4],"span":[140,2,10]},{"path":[4,10,2,2,5],"span":[140,11,17]},{"path":[4,10,2,2,1],"span":[140,18,24]},{"path":[4,10,2,2,3],"span":[140,27,28]},{"path":[4,10,2,3],"span":[141,2,33]},{"path":[4,10,2,3,4],"span":[141,2,10]},{"path":[4,10,2,3,5],"span":[141,11,17]},{"path":[4,10,2,3,1],"span":[141,18,28]},{"path":[4,10,2,3,3],"span":[141,31,32]},{"path":[4,10,2,4],"span":[142,2,29]},{"path":[4,10,2,4,4],"span":[142,2,10]},{"path":[4,10,2,4,5],"span":[142,11,17]},{"path":[4,10,2,4,1],"span":[142,18,24]},{"path":[4,10,2,4,3],"span":[142,27,28]},{"path":[4,10,2,5],"span":[143,2,26]},{"path":[4,10,2,5,4],"span":[143,2,10]},{"path":[4,10,2,5,5],"span":[143,11,17]},{"path":[4,10,2,5,1],"span":[143,18,21]},{"path":[4,10,2,5,3],"span":[143,24,25]},{"path":[4,10,2,6],"span":[144,2,33]},{"path":[4,10,2,6,4],"span":[144,2,10]},{"path":[4,10,2,6,5],"span":[144,11,17]},{"path":[4,10,2,6,1],"span":[144,18,28]},{"path":[4,10,2,6,3],"span":[144,31,32]},{"path":[4,10,2,7],"span":[145,2,32]},{"path":[4,10,2,7,4],"span":[145,2,10]},{"path":[4,10,2,7,5],"span":[145,11,17]},{"path":[4,10,2,7,1],"span":[145,18,27]},{"path":[4,10,2,7,3],"span":[145,30,31]},{"path":[4,11],"span":[148,0,171,1]},{"path":[4,11,1],"span":[148,8,20]},{"path":[4,11,2,0],"span":[149,2,29]},{"path":[4,11,2,0,4],"span":[149,2,10]},{"path":[4,11,2,0,5],"span":[149,11,16]},{"path":[4,11,2,0,1],"span":[149,17,24]},{"path":[4,11,2,0,3],"span":[149,27,28]},{"path":[4,11,2,1],"span":[152,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,11,2,1,4],"span":[152,2,10]},{"path":[4,11,2,1,5],"span":[152,11,16]},{"path":[4,11,2,1,1],"span":[152,17,24]},{"path":[4,11,2,1,3],"span":[152,27,28]},{"path":[4,11,2,2],"span":[155,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,11,2,2,4],"span":[155,2,10]},{"path":[4,11,2,2,5],"span":[155,11,16]},{"path":[4,11,2,2,1],"span":[155,17,25]},{"path":[4,11,2,2,3],"span":[155,28,29]},{"path":[4,11,2,3],"span":[158,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,11,2,3,4],"span":[158,2,10]},{"path":[4,11,2,3,5],"span":[158,11,16]},{"path":[4,11,2,3,1],"span":[158,17,26]},{"path":[4,11,2,3,3],"span":[158,29,30]},{"path":[4,11,2,4],"span":[160,2,30]},{"path":[4,11,2,4,4],"span":[160,2,10]},{"path":[4,11,2,4,5],"span":[160,11,15]},{"path":[4,11,2,4,1],"span":[160,16,25]},{"path":[4,11,2,4,3],"span":[160,28,29]},{"path":[4,11,2,5],"span":[161,2,29]},{"path":[4,11,2,5,4],"span":[161,2,10]},{"path":[4,11,2,5,5],"span":[161,11,17]},{"path":[4,11,2,5,1],"span":[161,18,24]},{"path":[4,11,2,5,3],"span":[161,27,28]},{"path":[4,11,2,6],"span":[162,2,33]},{"path":[4,11,2,6,4],"span":[162,2,10]},{"path":[4,11,2,6,5],"span":[162,11,17]},{"path":[4,11,2,6,1],"span":[162,18,27]},{"path":[4,11,2,6,3],"span":[162,30,32]},{"path":[4,11,2,7],"span":[163,2,33]},{"path":[4,11,2,7,4],"span":[163,2,10]},{"path":[4,11,2,7,5],"span":[163,11,17]},{"path":[4,11,2,7,1],"span":[163,18,27]},{"path":[4,11,2,7,3],"span":[163,30,32]},{"path":[4,11,2,8],"span":[164,2,34]},{"path":[4,11,2,8,4],"span":[164,2,10]},{"path":[4,11,2,8,5],"span":[164,11,17]},{"path":[4,11,2,8,1],"span":[164,18,28]},{"path":[4,11,2,8,3],"span":[164,31,33]},{"path":[4,11,2,9],"span":[165,2,35]},{"path":[4,11,2,9,4],"span":[165,2,10]},{"path":[4,11,2,9,5],"span":[165,11,17]},{"path":[4,11,2,9,1],"span":[165,18,29]},{"path":[4,11,2,9,3],"span":[165,32,34]},{"path":[4,11,2,10],"span":[167,2,27]},{"path":[4,11,2,10,4],"span":[167,2,10]},{"path":[4,11,2,10,5],"span":[167,11,17]},{"path":[4,11,2,10,1],"span":[167,18,21]},{"path":[4,11,2,10,3],"span":[167,24,26]},{"path":[4,11,2,11],"span":[168,2,27]},{"path":[4,11,2,11,4],"span":[168,2,10]},{"path":[4,11,2,11,5],"span":[168,11,16]},{"path":[4,11,2,11,1],"span":[168,17,21]},{"path":[4,11,2,11,3],"span":[168,24,26]},{"path":[4,11,2,12],"span":[170,2,36]},{"path":[4,11,2,12,4],"span":[170,2,10]},{"path":[4,11,2,12,6],"span":[170,11,26]},{"path":[4,11,2,12,1],"span":[170,27,30]},{"path":[4,11,2,12,3],"span":[170,33,35]},{"path":[4,12],"span":[173,0,178,1]},{"path":[4,12,1],"span":[173,8,23]},{"path":[4,12,2,0],"span":[174,2,35]},{"path":[4,12,2,0,4],"span":[174,2,10]},{"path":[4,12,2,0,5],"span":[174,11,17]},{"path":[4,12,2,0,1],"span":[174,18,30]},{"path":[4,12,2,0,3],"span":[174,33,34]},{"path":[4,12,2,1],"span":[175,2,28]},{"path":[4,12,2,1,4],"span":[175,2,10]},{"path":[4,12,2,1,5],"span":[175,11,17]},{"path":[4,12,2,1,1],"span":[175,18,23]},{"path":[4,12,2,1,3],"span":[175,26,27]},{"path":[4,12,2,2],"span":[176,2,35]},{"path":[4,12,2,2,4],"span":[176,2,10]},{"path":[4,12,2,2,5],"span":[176,11,17]},{"path":[4,12,2,2,1],"span":[176,18,30]},{"path":[4,12,2,2,3],"span":[176,33,34]},{"path":[4,12,2,3],"span":[177,2,36]},{"path":[4,12,2,3,4],"span":[177,2,10]},{"path":[4,12,2,3,5],"span":[177,11,17]},{"path":[4,12,2,3,1],"span":[177,18,31]},{"path":[4,12,2,3,3],"span":[177,34,35]},{"path":[4,13],"span":[180,0,201,1]},{"path":[4,13,1],"span":[180,8,27]},{"path":[4,13,2,0],"span":[182,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,13,2,0,4],"span":[182,2,10]},{"path":[4,13,2,0,5],"span":[182,11,16]},{"path":[4,13,2,0,1],"span":[182,17,19]},{"path":[4,13,2,0,3],"span":[182,22,23]},{"path":[4,13,2,1],"span":[185,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,13,2,1,4],"span":[185,2,10]},{"path":[4,13,2,1,5],"span":[185,11,16]},{"path":[4,13,2,1,1],"span":[185,17,24]},{"path":[4,13,2,1,3],"span":[185,27,29]},{"path":[4,13,2,2],"span":[187,2,27]},{"path":[4,13,2,2,4],"span":[187,2,10]},{"path":[4,13,2,2,5],"span":[187,11,17]},{"path":[4,13,2,2,1],"span":[187,18,22]},{"path":[4,13,2,2,3],"span":[187,25,26]},{"path":[4,13,2,3],"span":[188,2,30]},{"path":[4,13,2,3,4],"span":[188,2,10]},{"path":[4,13,2,3,5],"span":[188,11,17]},{"path":[4,13,2,3,1],"span":[188,18,25]},{"path":[4,13,2,3,3],"span":[188,28,29]},{"path":[4,13,2,4],"span":[189,2,28]},{"path":[4,13,2,4,4],"span":[189,2,10]},{"path":[4,13,2,4,5],"span":[189,11,17]},{"path":[4,13,2,4,1],"span":[189,18,23]},{"path":[4,13,2,4,3],"span":[189,26,27]},{"path":[4,13,2,5],"span":[191,2,33]},{"path":[4,13,2,5,4],"span":[191,2,10]},{"path":[4,13,2,5,5],"span":[191,11,17]},{"path":[4,13,2,5,1],"span":[191,18,28]},{"path":[4,13,2,5,3],"span":[191,31,32]},{"path":[4,13,2,6],"span":[193,2,26]},{"path":[4,13,2,6,4],"span":[193,2,10]},{"path":[4,13,2,6,5],"span":[193,11,17]},{"path":[4,13,2,6,1],"span":[193,18,21]},{"path":[4,13,2,6,3],"span":[193,24,25]},{"path":[4,13,2,7],"span":[194,2,29]},{"path":[4,13,2,7,4],"span":[194,2,10]},{"path":[4,13,2,7,5],"span":[194,11,17]},{"path":[4,13,2,7,1],"span":[194,18,24]},{"path":[4,13,2,7,3],"span":[194,27,28]},{"path":[4,13,2,8],"span":[196,2,26]},{"path":[4,13,2,8,4],"span":[196,2,10]},{"path":[4,13,2,8,5],"span":[196,11,16]},{"path":[4,13,2,8,1],"span":[196,17,21]},{"path":[4,13,2,8,3],"span":[196,24,25]},{"path":[4,13,8,0],"span":[198,2,200,3]},{"path":[4,13,8,0,1],"span":[198,8,11]},{"path":[4,13,2,9],"span":[199,4,47]},{"path":[4,13,2,9,6],"span":[199,4,33]},{"path":[4,13,2,9,1],"span":[199,34,41]},{"path":[4,13,2,9,3],"span":[199,44,46]},{"path":[4,14],"span":[203,0,216,1]},{"path":[4,14,1],"span":[203,8,37]},{"path":[4,14,2,0],"span":[204,2,30]},{"path":[4,14,2,0,4],"span":[204,2,10]},{"path":[4,14,2,0,5],"span":[204,11,17]},{"path":[4,14,2,0,1],"span":[204,18,25]},{"path":[4,14,2,0,3],"span":[204,28,29]},{"path":[4,14,2,1],"span":[205,2,34]},{"path":[4,14,2,1,4],"span":[205,2,10]},{"path":[4,14,2,1,5],"span":[205,11,16]},{"path":[4,14,2,1,1],"span":[205,17,29]},{"path":[4,14,2,1,3],"span":[205,32,33]},{"path":[4,14,2,2],"span":[206,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,14,2,2,4],"span":[206,2,10]},{"path":[4,14,2,2,5],"span":[206,11,17]},{"path":[4,14,2,2,1],"span":[206,18,23]},{"path":[4,14,2,2,3],"span":[206,26,27]},{"path":[4,14,2,3],"span":[207,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,14,2,3,4],"span":[207,2,10]},{"path":[4,14,2,3,5],"span":[207,11,17]},{"path":[4,14,2,3,1],"span":[207,18,30]},{"path":[4,14,2,3,3],"span":[207,33,34]},{"path":[4,14,2,4],"span":[208,2,35],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,14,2,4,4],"span":[208,2,10]},{"path":[4,14,2,4,5],"span":[208,11,17]},{"path":[4,14,2,4,1],"span":[208,18,30]},{"path":[4,14,2,4,3],"span":[208,33,34]},{"path":[4,14,2,5],"span":[209,2,34],"trailingComments":" WindowsProductType: 1\n"},{"path":[4,14,2,5,4],"span":[209,2,10]},{"path":[4,14,2,5,5],"span":[209,11,16]},{"path":[4,14,2,5,1],"span":[209,17,29]},{"path":[4,14,2,5,3],"span":[209,32,33]},{"path":[4,14,2,6],"span":[211,2,41]},{"path":[4,14,2,6,4],"span":[211,2,10]},{"path":[4,14,2,6,5],"span":[211,11,15]},{"path":[4,14,2,6,1],"span":[211,16,36]},{"path":[4,14,2,6,3],"span":[211,39,40]},{"path":[4,14,2,7],"span":[212,2,35]},{"path":[4,14,2,7,4],"span":[212,2,10]},{"path":[4,14,2,7,5],"span":[212,11,15]},{"path":[4,14,2,7,1],"span":[212,16,30]},{"path":[4,14,2,7,3],"span":[212,33,34]},{"path":[4,14,2,8],"span":[213,2,39]},{"path":[4,14,2,8,4],"span":[213,2,10]},{"path":[4,14,2,8,5],"span":[213,11,15]},{"path":[4,14,2,8,1],"span":[213,16,34]},{"path":[4,14,2,8,3],"span":[213,37,38]},{"path":[4,14,2,9],"span":[215,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,14,2,9,4],"span":[215,2,10]},{"path":[4,14,2,9,5],"span":[215,11,17]},{"path":[4,14,2,9,1],"span":[215,18,25]},{"path":[4,14,2,9,3],"span":[215,28,30]},{"path":[4,15],"span":[220,0,223,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,15,1],"span":[220,8,24]},{"path":[4,15,2,0],"span":[221,2,42]},{"path":[4,15,2,0,6],"span":[221,2,27]},{"path":[4,15,2,0,1],"span":[221,28,37]},{"path":[4,15,2,0,3],"span":[221,40,41]},{"path":[4,15,2,1],"span":[222,2,31]},{"path":[4,15,2,1,4],"span":[222,2,10]},{"path":[4,15,2,1,6],"span":[222,11,18]},{"path":[4,15,2,1,1],"span":[222,19,26]},{"path":[4,15,2,1,3],"span":[222,29,30]},{"path":[4,16],"span":[226,0,242,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,16,1],"span":[226,8,15]},{"path":[4,16,2,0],"span":[228,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,16,2,0,4],"span":[228,2,10]},{"path":[4,16,2,0,5],"span":[228,11,16]},{"path":[4,16,2,0,1],"span":[228,17,19]},{"path":[4,16,2,0,3],"span":[228,22,23]},{"path":[4,16,2,1],"span":[231,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,16,2,1,4],"span":[231,2,10]},{"path":[4,16,2,1,5],"span":[231,11,16]},{"path":[4,16,2,1,1],"span":[231,17,24]},{"path":[4,16,2,1,3],"span":[231,27,28]},{"path":[4,16,2,2],"span":[233,2,23]},{"path":[4,16,2,2,5],"span":[233,2,8]},{"path":[4,16,2,2,1],"span":[233,9,18]},{"path":[4,16,2,2,3],"span":[233,21,22]},{"path":[4,16,2,3],"span":[234,2,24]},{"path":[4,16,2,3,5],"span":[234,2,8]},{"path":[4,16,2,3,1],"span":[234,9,19]},{"path":[4,16,2,3,3],"span":[234,22,23]},{"path":[4,16,2,4],"span":[236,2,36]},{"path":[4,16,2,4,4],"span":[236,2,10]},{"path":[4,16,2,4,5],"span":[236,11,17]},{"path":[4,16,2,4,1],"span":[236,18,31]},{"path":[4,16,2,4,3],"span":[236,34,35]},{"path":[4,16,2,5],"span":[237,2,50]},{"path":[4,16,2,5,6],"span":[237,2,27]},{"path":[4,16,2,5,1],"span":[237,28,45]},{"path":[4,16,2,5,3],"span":[237,48,49]},{"path":[4,16,8,0],"span":[239,2,241,3]},{"path":[4,16,8,0,1],"span":[239,8,11]},{"path":[4,16,2,6],"span":[240,4,39]},{"path":[4,16,2,6,6],"span":[240,4,25]},{"path":[4,16,2,6,1],"span":[240,26,33]},{"path":[4,16,2,6,3],"span":[240,36,38]},{"path":[4,17],"span":[244,0,253,1]},{"path":[4,17,1],"span":[244,8,29]},{"path":[4,17,2,0],"span":[245,2,19]},{"path":[4,17,2,0,5],"span":[245,2,8]},{"path":[4,17,2,0,1],"span":[245,9,14]},{"path":[4,17,2,0,3],"span":[245,17,18]},{"path":[4,17,2,1],"span":[246,2,36]},{"path":[4,17,2,1,4],"span":[246,2,10]},{"path":[4,17,2,1,5],"span":[246,11,17]},{"path":[4,17,2,1,1],"span":[246,18,31]},{"path":[4,17,2,1,3],"span":[246,34,35]},{"path":[4,17,2,2],"span":[247,2,36]},{"path":[4,17,2,2,4],"span":[247,2,10]},{"path":[4,17,2,2,5],"span":[247,11,17]},{"path":[4,17,2,2,1],"span":[247,18,31]},{"path":[4,17,2,2,3],"span":[247,34,35]},{"path":[4,17,2,3],"span":[248,2,33]},{"path":[4,17,2,3,4],"span":[248,2,10]},{"path":[4,17,2,3,5],"span":[248,11,17]},{"path":[4,17,2,3,1],"span":[248,18,28]},{"path":[4,17,2,3,3],"span":[248,31,32]},{"path":[4,17,2,4],"span":[249,2,40]},{"path":[4,17,2,4,4],"span":[249,2,10]},{"path":[4,17,2,4,5],"span":[249,11,17]},{"path":[4,17,2,4,1],"span":[249,18,35]},{"path":[4,17,2,4,3],"span":[249,38,39]},{"path":[4,17,2,5],"span":[250,2,39]},{"path":[4,17,2,5,4],"span":[250,2,10]},{"path":[4,17,2,5,5],"span":[250,11,17]},{"path":[4,17,2,5,1],"span":[250,18,34]},{"path":[4,17,2,5,3],"span":[250,37,38]},{"path":[4,17,2,6],"span":[251,2,59]},{"path":[4,17,2,6,4],"span":[251,2,10]},{"path":[4,17,2,6,6],"span":[251,11,36]},{"path":[4,17,2,6,1],"span":[251,37,54]},{"path":[4,17,2,6,3],"span":[251,57,58]},{"path":[4,17,2,7],"span":[252,2,32]},{"path":[4,17,2,7,4],"span":[252,2,10]},{"path":[4,17,2,7,5],"span":[252,11,17]},{"path":[4,17,2,7,1],"span":[252,18,27]},{"path":[4,17,2,7,3],"span":[252,30,31]},{"path":[4,18],"span":[256,0,259,1],"leadingComments":" Software Inventory with list of installed SW "},{"path":[4,18,1],"span":[256,8,25]},{"path":[4,18,2,0],"span":[257,2,42]},{"path":[4,18,2,0,6],"span":[257,2,27]},{"path":[4,18,2,0,1],"span":[257,28,37]},{"path":[4,18,2,0,3],"span":[257,40,41]},{"path":[4,18,2,1],"span":[258,2,33]},{"path":[4,18,2,1,4],"span":[258,2,10]},{"path":[4,18,2,1,6],"span":[258,11,19]},{"path":[4,18,2,1,1],"span":[258,20,28]},{"path":[4,18,2,1,3],"span":[258,31,32]},{"path":[4,19],"span":[262,0,293,1],"leadingComments":" Software definition: normalized and with link to raw "},{"path":[4,19,1],"span":[262,8,16]},{"path":[4,19,2,0],"span":[264,2,26]},{"path":[4,19,2,0,4],"span":[264,2,10]},{"path":[4,19,2,0,5],"span":[264,11,16]},{"path":[4,19,2,0,1],"span":[264,17,21]},{"path":[4,19,2,0,3],"span":[264,24,25]},{"path":[4,19,2,1],"span":[265,2,29]},{"path":[4,19,2,1,4],"span":[265,2,10]},{"path":[4,19,2,1,5],"span":[265,11,16]},{"path":[4,19,2,1,1],"span":[265,17,24]},{"path":[4,19,2,1,3],"span":[265,27,28]},{"path":[4,19,2,2],"span":[266,2,28]},{"path":[4,19,2,2,4],"span":[266,2,10]},{"path":[4,19,2,2,5],"span":[266,11,16]},{"path":[4,19,2,2,1],"span":[266,17,23]},{"path":[4,19,2,2,3],"span":[266,26,27]},{"path":[4,19,2,3],"span":[269,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,19,2,3,4],"span":[269,2,10]},{"path":[4,19,2,3,5],"span":[269,11,16]},{"path":[4,19,2,3,1],"span":[269,17,24]},{"path":[4,19,2,3,3],"span":[269,27,28]},{"path":[4,19,2,4],"span":[272,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,19,2,4,4],"span":[272,2,10]},{"path":[4,19,2,4,5],"span":[272,11,16]},{"path":[4,19,2,4,1],"span":[272,17,22]},{"path":[4,19,2,4,3],"span":[272,25,26]},{"path":[4,19,2,5],"span":[275,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,19,2,5,4],"span":[275,2,10]},{"path":[4,19,2,5,5],"span":[275,11,16]},{"path":[4,19,2,5,1],"span":[275,17,26]},{"path":[4,19,2,5,3],"span":[275,29,30]},{"path":[4,19,2,6],"span":[277,2,32]},{"path":[4,19,2,6,4],"span":[277,2,10]},{"path":[4,19,2,6,5],"span":[277,11,17]},{"path":[4,19,2,6,1],"span":[277,18,27]},{"path":[4,19,2,6,3],"span":[277,30,31]},{"path":[4,19,2,7],"span":[278,2,31]},{"path":[4,19,2,7,4],"span":[278,2,10]},{"path":[4,19,2,7,5],"span":[278,11,17]},{"path":[4,19,2,7,1],"span":[278,18,26]},{"path":[4,19,2,7,3],"span":[278,29,30]},{"path":[4,19,2,8],"span":[279,2,32]},{"path":[4,19,2,8,4],"span":[279,2,10]},{"path":[4,19,2,8,5],"span":[279,11,17]},{"path":[4,19,2,8,1],"span":[279,18,27]},{"path":[4,19,2,8,3],"span":[279,30,31]},{"path":[4,19,2,9],"span":[280,2,28]},{"path":[4,19,2,9,4],"span":[280,2,10]},{"path":[4,19,2,9,5],"span":[280,11,17]},{"path":[4,19,2,9,1],"span":[280,18,22]},{"path":[4,19,2,9,3],"span":[280,25,27]},{"path":[4,19,2,10],"span":[281,2,31]},{"path":[4,19,2,10,4],"span":[281,2,10]},{"path":[4,19,2,10,5],"span":[281,11,17]},{"path":[4,19,2,10,1],"span":[281,18,25]},{"path":[4,19,2,10,3],"span":[281,28,30]},{"path":[4,19,2,11],"span":[282,2,34]},{"path":[4,19,2,11,4],"span":[282,2,10]},{"path":[4,19,2,11,5],"span":[282,11,17]},{"path":[4,19,2,11,1],"span":[282,18,28]},{"path":[4,19,2,11,3],"span":[282,31,33]},{"path":[4,19,2,12],"span":[283,2,31]},{"path":[4,19,2,12,4],"span":[283,2,10]},{"path":[4,19,2,12,5],"span":[283,11,17]},{"path":[4,19,2,12,1],"span":[283,18,25]},{"path":[4,19,2,12,3],"span":[283,28,30]},{"path":[4,19,2,13],"span":[284,2,29]},{"path":[4,19,2,13,4],"span":[284,2,10]},{"path":[4,19,2,13,5],"span":[284,11,17]},{"path":[4,19,2,13,1],"span":[284,18,23]},{"path":[4,19,2,13,3],"span":[284,26,28]},{"path":[4,19,2,14],"span":[285,2,28]},{"path":[4,19,2,14,4],"span":[285,2,10]},{"path":[4,19,2,14,5],"span":[285,11,17]},{"path":[4,19,2,14,1],"span":[285,18,22]},{"path":[4,19,2,14,3],"span":[285,25,27]},{"path":[4,19,2,15],"span":[286,2,28]},{"path":[4,19,2,15,4],"span":[286,2,10]},{"path":[4,19,2,15,5],"span":[286,11,17]},{"path":[4,19,2,15,1],"span":[286,18,22]},{"path":[4,19,2,15,3],"span":[286,25,27]},{"path":[4,19,2,16],"span":[288,2,27]},{"path":[4,19,2,16,4],"span":[288,2,10]},{"path":[4,19,2,16,5],"span":[288,11,17]},{"path":[4,19,2,16,1],"span":[288,18,21]},{"path":[4,19,2,16,3],"span":[288,24,26]},{"path":[4,19,2,17],"span":[290,2,23]},{"path":[4,19,2,17,6],"span":[290,2,13]},{"path":[4,19,2,17,1],"span":[290,14,17]},{"path":[4,19,2,17,3],"span":[290,20,22]},{"path":[4,19,2,18],"span":[291,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,19,2,18,4],"span":[291,2,10]},{"path":[4,19,2,18,5],"span":[291,11,17]},{"path":[4,19,2,18,1],"span":[291,18,26]},{"path":[4,19,2,18,3],"span":[291,29,31]},{"path":[4,19,2,19],"span":[292,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,19,2,19,4],"span":[292,2,10]},{"path":[4,19,2,19,5],"span":[292,11,17]},{"path":[4,19,2,19,1],"span":[292,18,26]},{"path":[4,19,2,19,3],"span":[292,29,31]},{"path":[4,20],"span":[296,0,310,1],"leadingComments":" Raw Software definition "},{"path":[4,20,1],"span":[296,8,19]},{"path":[4,20,2,0],"span":[297,2,18]},{"path":[4,20,2,0,5],"span":[297,2,8]},{"path":[4,20,2,0,1],"span":[297,9,13]},{"path":[4,20,2,0,3],"span":[297,16,17]},{"path":[4,20,2,1],"span":[299,2,29]},{"path":[4,20,2,1,4],"span":[299,2,10]},{"path":[4,20,2,1,5],"span":[299,11,17]},{"path":[4,20,2,1,1],"span":[299,18,24]},{"path":[4,20,2,1,3],"span":[299,27,28]},{"path":[4,20,2,2],"span":[300,2,30]},{"path":[4,20,2,2,4],"span":[300,2,10]},{"path":[4,20,2,2,5],"span":[300,11,17]},{"path":[4,20,2,2,1],"span":[300,18,25]},{"path":[4,20,2,2,3],"span":[300,28,29]},{"path":[4,20,2,3],"span":[301,2,27]},{"path":[4,20,2,3,4],"span":[301,2,10]},{"path":[4,20,2,3,5],"span":[301,11,17]},{"path":[4,20,2,3,1],"span":[301,18,22]},{"path":[4,20,2,3,3],"span":[301,25,26]},{"path":[4,20,2,4],"span":[302,2,31]},{"path":[4,20,2,4,4],"span":[302,2,10]},{"path":[4,20,2,4,5],"span":[302,11,17]},{"path":[4,20,2,4,1],"span":[302,18,26]},{"path":[4,20,2,4,3],"span":[302,29,30]},{"path":[4,20,2,5],"span":[303,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,20,2,5,4],"span":[303,2,10]},{"path":[4,20,2,5,5],"span":[303,11,17]},{"path":[4,20,2,5,1],"span":[303,18,22]},{"path":[4,20,2,5,3],"span":[303,25,26]},{"path":[4,20,2,6],"span":[304,2,34]},{"path":[4,20,2,6,4],"span":[304,2,10]},{"path":[4,20,2,6,5],"span":[304,11,16]},{"path":[4,20,2,6,1],"span":[304,17,29]},{"path":[4,20,2,6,3],"span":[304,32,33]},{"path":[4,20,2,7],"span":[305,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,20,2,7,4],"span":[305,2,10]},{"path":[4,20,2,7,5],"span":[305,11,17]},{"path":[4,20,2,7,1],"span":[305,18,29]},{"path":[4,20,2,7,3],"span":[305,32,33]},{"path":[4,20,2,8],"span":[307,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,20,2,8,4],"span":[307,2,10]},{"path":[4,20,2,8,5],"span":[307,11,17]},{"path":[4,20,2,8,1],"span":[307,18,23]},{"path":[4,20,2,8,3],"span":[307,26,27]},{"path":[4,20,2,9],"span":[309,2,37]},{"path":[4,20,2,9,4],"span":[309,2,10]},{"path":[4,20,2,9,5],"span":[309,11,15]},{"path":[4,20,2,9,1],"span":[309,16,31]},{"path":[4,20,2,9,3],"span":[309,34,36]},{"path":[4,21],"span":[314,0,347,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,21,1],"span":[314,8,20]},{"path":[4,21,2,0],"span":[315,2,16]},{"path":[4,21,2,0,5],"span":[315,2,7]},{"path":[4,21,2,0,1],"span":[315,9,11]},{"path":[4,21,2,0,3],"span":[315,14,15]},{"path":[4,21,2,1],"span":[316,2,23]},{"path":[4,21,2,1,5],"span":[316,2,8]},{"path":[4,21,2,1,1],"span":[316,9,18]},{"path":[4,21,2,1,3],"span":[316,21,22]},{"path":[4,21,2,2],"span":[318,2,32]},{"path":[4,21,2,2,4],"span":[318,2,10]},{"path":[4,21,2,2,5],"span":[318,11,16]},{"path":[4,21,2,2,1],"span":[318,17,26]},{"path":[4,21,2,2,3],"span":[318,29,31]},{"path":[4,21,2,3],"span":[319,2,38]},{"path":[4,21,2,3,4],"span":[319,2,10]},{"path":[4,21,2,3,5],"span":[319,11,16]},{"path":[4,21,2,3,1],"span":[319,17,33]},{"path":[4,21,2,3,3],"span":[319,36,37]},{"path":[4,21,2,4],"span":[321,2,35]},{"path":[4,21,2,4,4],"span":[321,2,10]},{"path":[4,21,2,4,5],"span":[321,11,17]},{"path":[4,21,2,4,1],"span":[321,18,30]},{"path":[4,21,2,4,3],"span":[321,33,34]},{"path":[4,21,2,5],"span":[322,2,37]},{"path":[4,21,2,5,4],"span":[322,2,10]},{"path":[4,21,2,5,5],"span":[322,11,17]},{"path":[4,21,2,5,1],"span":[322,18,32]},{"path":[4,21,2,5,3],"span":[322,35,36]},{"path":[4,21,2,6],"span":[323,2,39]},{"path":[4,21,2,6,4],"span":[323,2,10]},{"path":[4,21,2,6,5],"span":[323,11,17]},{"path":[4,21,2,6,1],"span":[323,18,34]},{"path":[4,21,2,6,3],"span":[323,37,38]},{"path":[4,21,2,7],"span":[324,2,35]},{"path":[4,21,2,7,4],"span":[324,2,10]},{"path":[4,21,2,7,5],"span":[324,11,17]},{"path":[4,21,2,7,1],"span":[324,18,30]},{"path":[4,21,2,7,3],"span":[324,33,34]},{"path":[4,21,2,8],"span":[325,2,43]},{"path":[4,21,2,8,4],"span":[325,2,10]},{"path":[4,21,2,8,5],"span":[325,11,17]},{"path":[4,21,2,8,1],"span":[325,18,37]},{"path":[4,21,2,8,3],"span":[325,40,42]},{"path":[4,21,2,9],"span":[326,2,35]},{"path":[4,21,2,9,4],"span":[326,2,10]},{"path":[4,21,2,9,5],"span":[326,11,17]},{"path":[4,21,2,9,1],"span":[326,18,29]},{"path":[4,21,2,9,3],"span":[326,32,34]},{"path":[4,21,2,10],"span":[327,2,35]},{"path":[4,21,2,10,4],"span":[327,2,10]},{"path":[4,21,2,10,5],"span":[327,11,17]},{"path":[4,21,2,10,1],"span":[327,18,29]},{"path":[4,21,2,10,3],"span":[327,32,34]},{"path":[4,21,2,11],"span":[328,2,37]},{"path":[4,21,2,11,4],"span":[328,2,10]},{"path":[4,21,2,11,5],"span":[328,11,17]},{"path":[4,21,2,11,1],"span":[328,18,31]},{"path":[4,21,2,11,3],"span":[328,34,36]},{"path":[4,21,2,12],"span":[329,2,40]},{"path":[4,21,2,12,4],"span":[329,2,10]},{"path":[4,21,2,12,5],"span":[329,11,17]},{"path":[4,21,2,12,1],"span":[329,18,34]},{"path":[4,21,2,12,3],"span":[329,37,39]},{"path":[4,21,2,13],"span":[330,2,39]},{"path":[4,21,2,13,4],"span":[330,2,10]},{"path":[4,21,2,13,5],"span":[330,11,17]},{"path":[4,21,2,13,1],"span":[330,18,33]},{"path":[4,21,2,13,3],"span":[330,36,38]},{"path":[4,21,2,14],"span":[331,2,36]},{"path":[4,21,2,14,4],"span":[331,2,10]},{"path":[4,21,2,14,5],"span":[331,11,17]},{"path":[4,21,2,14,1],"span":[331,18,30]},{"path":[4,21,2,14,3],"span":[331,33,35]},{"path":[4,21,2,15],"span":[332,2,43]},{"path":[4,21,2,15,4],"span":[332,2,10]},{"path":[4,21,2,15,5],"span":[332,11,17]},{"path":[4,21,2,15,1],"span":[332,18,37]},{"path":[4,21,2,15,3],"span":[332,40,42]},{"path":[4,21,2,16],"span":[333,2,37]},{"path":[4,21,2,16,4],"span":[333,2,10]},{"path":[4,21,2,16,5],"span":[333,11,17]},{"path":[4,21,2,16,1],"span":[333,18,31]},{"path":[4,21,2,16,3],"span":[333,34,36]},{"path":[4,21,2,17],"span":[334,2,40]},{"path":[4,21,2,17,4],"span":[334,2,10]},{"path":[4,21,2,17,5],"span":[334,11,17]},{"path":[4,21,2,17,1],"span":[334,18,34]},{"path":[4,21,2,17,3],"span":[334,37,39]},{"path":[4,21,2,18],"span":[335,2,41]},{"path":[4,21,2,18,4],"span":[335,2,10]},{"path":[4,21,2,18,5],"span":[335,11,17]},{"path":[4,21,2,18,1],"span":[335,18,35]},{"path":[4,21,2,18,3],"span":[335,38,40]},{"path":[4,21,2,19],"span":[336,2,39]},{"path":[4,21,2,19,4],"span":[336,2,10]},{"path":[4,21,2,19,5],"span":[336,11,17]},{"path":[4,21,2,19,1],"span":[336,18,33]},{"path":[4,21,2,19,3],"span":[336,36,38]},{"path":[4,21,2,20],"span":[337,2,41]},{"path":[4,21,2,20,4],"span":[337,2,10]},{"path":[4,21,2,20,5],"span":[337,11,17]},{"path":[4,21,2,20,1],"span":[337,18,35]},{"path":[4,21,2,20,3],"span":[337,38,40]},{"path":[4,21,2,21],"span":[339,2,36]},{"path":[4,21,2,21,4],"span":[339,2,10]},{"path":[4,21,2,21,5],"span":[339,11,15]},{"path":[4,21,2,21,1],"span":[339,16,30]},{"path":[4,21,2,21,3],"span":[339,33,35]},{"path":[4,21,2,22],"span":[340,2,36]},{"path":[4,21,2,22,4],"span":[340,2,10]},{"path":[4,21,2,22,5],"span":[340,11,15]},{"path":[4,21,2,22,1],"span":[340,16,30]},{"path":[4,21,2,22,3],"span":[340,33,35]},{"path":[4,21,2,23],"span":[341,2,36]},{"path":[4,21,2,23,4],"span":[341,2,10]},{"path":[4,21,2,23,5],"span":[341,11,15]},{"path":[4,21,2,23,1],"span":[341,16,30]},{"path":[4,21,2,23,3],"span":[341,33,35]},{"path":[4,21,2,24],"span":[342,2,38]},{"path":[4,21,2,24,4],"span":[342,2,10]},{"path":[4,21,2,24,5],"span":[342,11,15]},{"path":[4,21,2,24,1],"span":[342,16,32]},{"path":[4,21,2,24,3],"span":[342,35,37]},{"path":[4,21,2,25],"span":[343,2,38]},{"path":[4,21,2,25,4],"span":[343,2,10]},{"path":[4,21,2,25,5],"span":[343,11,15]},{"path":[4,21,2,25,1],"span":[343,16,32]},{"path":[4,21,2,25,3],"span":[343,35,37]},{"path":[4,21,2,26],"span":[344,2,38]},{"path":[4,21,2,26,4],"span":[344,2,10]},{"path":[4,21,2,26,5],"span":[344,11,15]},{"path":[4,21,2,26,1],"span":[344,16,32]},{"path":[4,21,2,26,3],"span":[344,35,37]},{"path":[4,21,2,27],"span":[346,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,21,2,27,4],"span":[346,2,10]},{"path":[4,21,2,27,5],"span":[346,11,16]},{"path":[4,21,2,27,1],"span":[346,17,28]},{"path":[4,21,2,27,3],"span":[346,31,33]},{"path":[4,22],"span":[349,0,384,1]},{"path":[4,22,1],"span":[349,8,20]},{"path":[4,22,2,0],"span":[350,2,15]},{"path":[4,22,2,0,5],"span":[350,2,7]},{"path":[4,22,2,0,1],"span":[350,8,10]},{"path":[4,22,2,0,3],"span":[350,13,14]},{"path":[4,22,2,1],"span":[352,2,20]},{"path":[4,22,2,1,5],"span":[352,2,7]},{"path":[4,22,2,1,1],"span":[352,8,15]},{"path":[4,22,2,1,3],"span":[352,18,19]},{"path":[4,22,2,2],"span":[353,2,26]},{"path":[4,22,2,2,5],"span":[353,2,8]},{"path":[4,22,2,2,1],"span":[353,9,21]},{"path":[4,22,2,2,3],"span":[353,24,25]},{"path":[4,22,2,3],"span":[355,2,36]},{"path":[4,22,2,3,4],"span":[355,2,10]},{"path":[4,22,2,3,5],"span":[355,11,16]},{"path":[4,22,2,3,1],"span":[355,17,31]},{"path":[4,22,2,3,3],"span":[355,34,35]},{"path":[4,22,2,4],"span":[356,2,40]},{"path":[4,22,2,4,4],"span":[356,2,10]},{"path":[4,22,2,4,5],"span":[356,11,17]},{"path":[4,22,2,4,1],"span":[356,18,35]},{"path":[4,22,2,4,3],"span":[356,38,39]},{"path":[4,22,2,5],"span":[358,2,32]},{"path":[4,22,2,5,4],"span":[358,2,10]},{"path":[4,22,2,5,5],"span":[358,11,16]},{"path":[4,22,2,5,1],"span":[358,17,26]},{"path":[4,22,2,5,3],"span":[358,29,31]},{"path":[4,22,2,6],"span":[359,2,31]},{"path":[4,22,2,6,4],"span":[359,2,10]},{"path":[4,22,2,6,5],"span":[359,11,15]},{"path":[4,22,2,6,1],"span":[359,16,25]},{"path":[4,22,2,6,3],"span":[359,28,30]},{"path":[4,22,2,7],"span":[360,2,34]},{"path":[4,22,2,7,4],"span":[360,2,10]},{"path":[4,22,2,7,5],"span":[360,11,17]},{"path":[4,22,2,7,1],"span":[360,18,28]},{"path":[4,22,2,7,3],"span":[360,31,33]},{"path":[4,22,2,8],"span":[361,2,31]},{"path":[4,22,2,8,4],"span":[361,2,10]},{"path":[4,22,2,8,5],"span":[361,11,17]},{"path":[4,22,2,8,1],"span":[361,18,25]},{"path":[4,22,2,8,3],"span":[361,28,30]},{"path":[4,22,2,9],"span":[362,2,35]},{"path":[4,22,2,9,4],"span":[362,2,10]},{"path":[4,22,2,9,5],"span":[362,11,16]},{"path":[4,22,2,9,1],"span":[362,17,29]},{"path":[4,22,2,9,3],"span":[362,32,34]},{"path":[4,22,2,10],"span":[363,2,32]},{"path":[4,22,2,10,4],"span":[363,2,10]},{"path":[4,22,2,10,5],"span":[363,11,16]},{"path":[4,22,2,10,1],"span":[363,17,26]},{"path":[4,22,2,10,3],"span":[363,29,31]},{"path":[4,22,2,11],"span":[364,2,31]},{"path":[4,22,2,11,4],"span":[364,2,10]},{"path":[4,22,2,11,5],"span":[364,11,16]},{"path":[4,22,2,11,1],"span":[364,17,25]},{"path":[4,22,2,11,3],"span":[364,28,30]},{"path":[4,22,2,12],"span":[365,2,43]},{"path":[4,22,2,12,4],"span":[365,2,10]},{"path":[4,22,2,12,5],"span":[365,11,17]},{"path":[4,22,2,12,1],"span":[365,18,37]},{"path":[4,22,2,12,3],"span":[365,40,42]},{"path":[4,22,2,13],"span":[367,2,35]},{"path":[4,22,2,13,4],"span":[367,2,10]},{"path":[4,22,2,13,5],"span":[367,11,17]},{"path":[4,22,2,13,1],"span":[367,18,29]},{"path":[4,22,2,13,3],"span":[367,32,34]},{"path":[4,22,2,14],"span":[368,2,37]},{"path":[4,22,2,14,4],"span":[368,2,10]},{"path":[4,22,2,14,5],"span":[368,11,17]},{"path":[4,22,2,14,1],"span":[368,18,31]},{"path":[4,22,2,14,3],"span":[368,34,36]},{"path":[4,22,2,15],"span":[370,2,39]},{"path":[4,22,2,15,4],"span":[370,2,10]},{"path":[4,22,2,15,5],"span":[370,11,17]},{"path":[4,22,2,15,1],"span":[370,18,33]},{"path":[4,22,2,15,3],"span":[370,36,38]},{"path":[4,22,2,16],"span":[371,2,43]},{"path":[4,22,2,16,4],"span":[371,2,10]},{"path":[4,22,2,16,5],"span":[371,11,17]},{"path":[4,22,2,16,1],"span":[371,18,37]},{"path":[4,22,2,16,3],"span":[371,40,42]},{"path":[4,22,2,17],"span":[372,2,38]},{"path":[4,22,2,17,4],"span":[372,2,10]},{"path":[4,22,2,17,5],"span":[372,11,17]},{"path":[4,22,2,17,1],"span":[372,18,32]},{"path":[4,22,2,17,3],"span":[372,35,37]},{"path":[4,22,2,18],"span":[373,2,38]},{"path":[4,22,2,18,4],"span":[373,2,10]},{"path":[4,22,2,18,5],"span":[373,11,17]},{"path":[4,22,2,18,1],"span":[373,18,32]},{"path":[4,22,2,18,3],"span":[373,35,37]},{"path":[4,22,2,19],"span":[374,2,41]},{"path":[4,22,2,19,4],"span":[374,2,10]},{"path":[4,22,2,19,5],"span":[374,11,15]},{"path":[4,22,2,19,1],"span":[374,18,35]},{"path":[4,22,2,19,3],"span":[374,38,40]},{"path":[4,22,2,20],"span":[375,2,42]},{"path":[4,22,2,20,4],"span":[375,2,10]},{"path":[4,22,2,20,5],"span":[375,11,17]},{"path":[4,22,2,20,1],"span":[375,18,36]},{"path":[4,22,2,20,3],"span":[375,39,41]},{"path":[4,22,2,21],"span":[377,2,32]},{"path":[4,22,2,21,4],"span":[377,2,10]},{"path":[4,22,2,21,5],"span":[377,11,17]},{"path":[4,22,2,21,1],"span":[377,18,26]},{"path":[4,22,2,21,3],"span":[377,29,31]},{"path":[4,22,2,22],"span":[379,2,33]},{"path":[4,22,2,22,4],"span":[379,2,10]},{"path":[4,22,2,22,5],"span":[379,11,16]},{"path":[4,22,2,22,1],"span":[379,17,27]},{"path":[4,22,2,22,3],"span":[379,30,32]},{"path":[4,22,2,23],"span":[381,2,39]},{"path":[4,22,2,23,4],"span":[381,2,10]},{"path":[4,22,2,23,5],"span":[381,11,16]},{"path":[4,22,2,23,1],"span":[381,17,33]},{"path":[4,22,2,23,3],"span":[381,36,38]},{"path":[4,22,2,24],"span":[383,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,22,2,24,4],"span":[383,2,10]},{"path":[4,22,2,24,5],"span":[383,11,16]},{"path":[4,22,2,24,1],"span":[383,17,28]},{"path":[4,22,2,24,3],"span":[383,31,33]},{"path":[4,23],"span":[386,0,419,1]},{"path":[4,23,1],"span":[386,8,17]},{"path":[4,23,2,0],"span":[387,2,15]},{"path":[4,23,2,0,5],"span":[387,2,7]},{"path":[4,23,2,0,1],"span":[387,8,10]},{"path":[4,23,2,0,3],"span":[387,13,14]},{"path":[4,23,2,1],"span":[389,2,21]},{"path":[4,23,2,1,5],"span":[389,2,8]},{"path":[4,23,2,1,1],"span":[389,9,16]},{"path":[4,23,2,1,3],"span":[389,19,20]},{"path":[4,23,2,2],"span":[391,2,33]},{"path":[4,23,2,2,4],"span":[391,2,10]},{"path":[4,23,2,2,5],"span":[391,11,17]},{"path":[4,23,2,2,1],"span":[391,18,28]},{"path":[4,23,2,2,3],"span":[391,31,32]},{"path":[4,23,2,3],"span":[392,2,32]},{"path":[4,23,2,3,4],"span":[392,2,10]},{"path":[4,23,2,3,5],"span":[392,11,17]},{"path":[4,23,2,3,1],"span":[392,18,26]},{"path":[4,23,2,3,3],"span":[392,29,31]},{"path":[4,23,2,4],"span":[393,2,38]},{"path":[4,23,2,4,4],"span":[393,2,10]},{"path":[4,23,2,4,5],"span":[393,11,17]},{"path":[4,23,2,4,1],"span":[393,18,33]},{"path":[4,23,2,4,3],"span":[393,36,37]},{"path":[4,23,2,5],"span":[395,2,33]},{"path":[4,23,2,5,4],"span":[395,2,10]},{"path":[4,23,2,5,5],"span":[395,11,16]},{"path":[4,23,2,5,1],"span":[395,17,28]},{"path":[4,23,2,5,3],"span":[395,31,32]},{"path":[4,23,2,6],"span":[396,2,29]},{"path":[4,23,2,6,4],"span":[396,2,10]},{"path":[4,23,2,6,5],"span":[396,11,16]},{"path":[4,23,2,6,1],"span":[396,17,24]},{"path":[4,23,2,6,3],"span":[396,27,28]},{"path":[4,23,2,7],"span":[397,2,31]},{"path":[4,23,2,7,4],"span":[397,2,10]},{"path":[4,23,2,7,5],"span":[397,11,16]},{"path":[4,23,2,7,1],"span":[397,17,26]},{"path":[4,23,2,7,3],"span":[397,29,30]},{"path":[4,23,2,8],"span":[399,2,34]},{"path":[4,23,2,8,4],"span":[399,2,10]},{"path":[4,23,2,8,5],"span":[399,11,16]},{"path":[4,23,2,8,1],"span":[399,17,29]},{"path":[4,23,2,8,3],"span":[399,32,33]},{"path":[4,23,2,9],"span":[400,2,31]},{"path":[4,23,2,9,4],"span":[400,2,10]},{"path":[4,23,2,9,5],"span":[400,11,16]},{"path":[4,23,2,9,1],"span":[400,17,25]},{"path":[4,23,2,9,3],"span":[400,28,30]},{"path":[4,23,2,10],"span":[401,2,31]},{"path":[4,23,2,10,4],"span":[401,2,10]},{"path":[4,23,2,10,5],"span":[401,11,16]},{"path":[4,23,2,10,1],"span":[401,17,25]},{"path":[4,23,2,10,3],"span":[401,28,30]},{"path":[4,23,2,11],"span":[402,2,32]},{"path":[4,23,2,11,4],"span":[402,2,10]},{"path":[4,23,2,11,5],"span":[402,11,16]},{"path":[4,23,2,11,1],"span":[402,17,26]},{"path":[4,23,2,11,3],"span":[402,29,31]},{"path":[4,23,2,12],"span":[403,2,43]},{"path":[4,23,2,12,4],"span":[403,2,10]},{"path":[4,23,2,12,5],"span":[403,11,17]},{"path":[4,23,2,12,1],"span":[403,18,37]},{"path":[4,23,2,12,3],"span":[403,40,42]},{"path":[4,23,2,13],"span":[404,2,38]},{"path":[4,23,2,13,4],"span":[404,2,10]},{"path":[4,23,2,13,5],"span":[404,11,17]},{"path":[4,23,2,13,1],"span":[404,18,32]},{"path":[4,23,2,13,3],"span":[404,35,37]},{"path":[4,23,2,14],"span":[405,2,40]},{"path":[4,23,2,14,4],"span":[405,2,10]},{"path":[4,23,2,14,5],"span":[405,11,17]},{"path":[4,23,2,14,1],"span":[405,18,34]},{"path":[4,23,2,14,3],"span":[405,37,39]},{"path":[4,23,2,15],"span":[406,2,36]},{"path":[4,23,2,15,4],"span":[406,2,10]},{"path":[4,23,2,15,5],"span":[406,11,17]},{"path":[4,23,2,15,1],"span":[406,18,30]},{"path":[4,23,2,15,3],"span":[406,33,35]},{"path":[4,23,2,16],"span":[407,2,43]},{"path":[4,23,2,16,4],"span":[407,2,10]},{"path":[4,23,2,16,5],"span":[407,11,17]},{"path":[4,23,2,16,1],"span":[407,18,37]},{"path":[4,23,2,16,3],"span":[407,40,42]},{"path":[4,23,2,17],"span":[408,2,35]},{"path":[4,23,2,17,4],"span":[408,2,10]},{"path":[4,23,2,17,5],"span":[408,11,17]},{"path":[4,23,2,17,1],"span":[408,18,29]},{"path":[4,23,2,17,3],"span":[408,32,34]},{"path":[4,23,2,18],"span":[409,2,35]},{"path":[4,23,2,18,4],"span":[409,2,10]},{"path":[4,23,2,18,5],"span":[409,11,17]},{"path":[4,23,2,18,1],"span":[409,18,29]},{"path":[4,23,2,18,3],"span":[409,32,34]},{"path":[4,23,2,19],"span":[410,2,37]},{"path":[4,23,2,19,4],"span":[410,2,10]},{"path":[4,23,2,19,5],"span":[410,11,17]},{"path":[4,23,2,19,1],"span":[410,18,31]},{"path":[4,23,2,19,3],"span":[410,34,36]},{"path":[4,23,2,20],"span":[411,2,40]},{"path":[4,23,2,20,4],"span":[411,2,10]},{"path":[4,23,2,20,5],"span":[411,11,17]},{"path":[4,23,2,20,1],"span":[411,18,34]},{"path":[4,23,2,20,3],"span":[411,37,39]},{"path":[4,23,2,21],"span":[412,2,39]},{"path":[4,23,2,21,4],"span":[412,2,10]},{"path":[4,23,2,21,5],"span":[412,11,17]},{"path":[4,23,2,21,1],"span":[412,18,33]},{"path":[4,23,2,21,3],"span":[412,36,38]},{"path":[4,23,2,22],"span":[414,2,32]},{"path":[4,23,2,22,4],"span":[414,2,10]},{"path":[4,23,2,22,5],"span":[414,11,17]},{"path":[4,23,2,22,1],"span":[414,18,26]},{"path":[4,23,2,22,3],"span":[414,29,31]},{"path":[4,23,2,23],"span":[416,2,39]},{"path":[4,23,2,23,4],"span":[416,2,10]},{"path":[4,23,2,23,5],"span":[416,11,16]},{"path":[4,23,2,23,1],"span":[416,17,33]},{"path":[4,23,2,23,3],"span":[416,36,38]},{"path":[4,23,2,24],"span":[418,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,23,2,24,4],"span":[418,2,10]},{"path":[4,23,2,24,5],"span":[418,11,16]},{"path":[4,23,2,24,1],"span":[418,17,28]},{"path":[4,23,2,24,3],"span":[418,31,33]},{"path":[4,24],"span":[421,0,451,1]},{"path":[4,24,1],"span":[421,8,23]},{"path":[4,24,2,0],"span":[422,2,15]},{"path":[4,24,2,0,5],"span":[422,2,7]},{"path":[4,24,2,0,1],"span":[422,8,10]},{"path":[4,24,2,0,3],"span":[422,13,14]},{"path":[4,24,2,1],"span":[423,2,21]},{"path":[4,24,2,1,5],"span":[423,2,8]},{"path":[4,24,2,1,1],"span":[423,9,16]},{"path":[4,24,2,1,3],"span":[423,19,20]},{"path":[4,24,2,2],"span":[425,2,33]},{"path":[4,24,2,2,4],"span":[425,2,10]},{"path":[4,24,2,2,5],"span":[425,11,17]},{"path":[4,24,2,2,1],"span":[425,18,28]},{"path":[4,24,2,2,3],"span":[425,31,32]},{"path":[4,24,2,3],"span":[426,2,36]},{"path":[4,24,2,3,4],"span":[426,2,10]},{"path":[4,24,2,3,5],"span":[426,11,17]},{"path":[4,24,2,3,1],"span":[426,18,31]},{"path":[4,24,2,3,3],"span":[426,34,35]},{"path":[4,24,2,4],"span":[427,2,33]},{"path":[4,24,2,4,4],"span":[427,2,10]},{"path":[4,24,2,4,5],"span":[427,11,17]},{"path":[4,24,2,4,1],"span":[427,18,28]},{"path":[4,24,2,4,3],"span":[427,31,32]},{"path":[4,24,2,5],"span":[428,2,30]},{"path":[4,24,2,5,4],"span":[428,2,10]},{"path":[4,24,2,5,5],"span":[428,11,17]},{"path":[4,24,2,5,1],"span":[428,18,25]},{"path":[4,24,2,5,3],"span":[428,28,29]},{"path":[4,24,2,6],"span":[429,2,31]},{"path":[4,24,2,6,4],"span":[429,2,10]},{"path":[4,24,2,6,5],"span":[429,11,17]},{"path":[4,24,2,6,1],"span":[429,18,26]},{"path":[4,24,2,6,3],"span":[429,29,30]},{"path":[4,24,2,7],"span":[431,2,29]},{"path":[4,24,2,7,4],"span":[431,2,10]},{"path":[4,24,2,7,5],"span":[431,11,16]},{"path":[4,24,2,7,1],"span":[431,17,24]},{"path":[4,24,2,7,3],"span":[431,27,28]},{"path":[4,24,2,8],"span":[432,2,31]},{"path":[4,24,2,8,4],"span":[432,2,10]},{"path":[4,24,2,8,5],"span":[432,11,16]},{"path":[4,24,2,8,1],"span":[432,17,26]},{"path":[4,24,2,8,3],"span":[432,29,30]},{"path":[4,24,2,9],"span":[433,2,32]},{"path":[4,24,2,9,4],"span":[433,2,10]},{"path":[4,24,2,9,5],"span":[433,11,16]},{"path":[4,24,2,9,1],"span":[433,17,26]},{"path":[4,24,2,9,3],"span":[433,29,31]},{"path":[4,24,2,10],"span":[435,2,31]},{"path":[4,24,2,10,4],"span":[435,2,10]},{"path":[4,24,2,10,5],"span":[435,11,17]},{"path":[4,24,2,10,1],"span":[435,18,25]},{"path":[4,24,2,10,3],"span":[435,28,30]},{"path":[4,24,2,11],"span":[436,2,35]},{"path":[4,24,2,11,4],"span":[436,2,10]},{"path":[4,24,2,11,5],"span":[436,11,17]},{"path":[4,24,2,11,1],"span":[436,18,29]},{"path":[4,24,2,11,3],"span":[436,32,34]},{"path":[4,24,2,12],"span":[438,2,35]},{"path":[4,24,2,12,4],"span":[438,2,10]},{"path":[4,24,2,12,5],"span":[438,11,16]},{"path":[4,24,2,12,1],"span":[438,17,29]},{"path":[4,24,2,12,3],"span":[438,32,34]},{"path":[4,24,2,13],"span":[439,2,31]},{"path":[4,24,2,13,4],"span":[439,2,10]},{"path":[4,24,2,13,5],"span":[439,11,16]},{"path":[4,24,2,13,1],"span":[439,17,25]},{"path":[4,24,2,13,3],"span":[439,28,30]},{"path":[4,24,2,14],"span":[440,2,31]},{"path":[4,24,2,14,4],"span":[440,2,10]},{"path":[4,24,2,14,5],"span":[440,11,16]},{"path":[4,24,2,14,1],"span":[440,17,25]},{"path":[4,24,2,14,3],"span":[440,28,30]},{"path":[4,24,2,15],"span":[441,2,32]},{"path":[4,24,2,15,4],"span":[441,2,10]},{"path":[4,24,2,15,5],"span":[441,11,16]},{"path":[4,24,2,15,1],"span":[441,17,26]},{"path":[4,24,2,15,3],"span":[441,29,31]},{"path":[4,24,2,16],"span":[442,2,43]},{"path":[4,24,2,16,4],"span":[442,2,10]},{"path":[4,24,2,16,5],"span":[442,11,17]},{"path":[4,24,2,16,1],"span":[442,18,37]},{"path":[4,24,2,16,3],"span":[442,40,42]},{"path":[4,24,2,17],"span":[444,2,33]},{"path":[4,24,2,17,4],"span":[444,2,10]},{"path":[4,24,2,17,5],"span":[444,11,15]},{"path":[4,24,2,17,1],"span":[444,16,27]},{"path":[4,24,2,17,3],"span":[444,30,32]},{"path":[4,24,2,18],"span":[445,2,37]},{"path":[4,24,2,18,4],"span":[445,2,10]},{"path":[4,24,2,18,5],"span":[445,11,15]},{"path":[4,24,2,18,1],"span":[445,16,31]},{"path":[4,24,2,18,3],"span":[445,34,36]},{"path":[4,24,2,19],"span":[446,2,37]},{"path":[4,24,2,19,4],"span":[446,2,10]},{"path":[4,24,2,19,5],"span":[446,11,15]},{"path":[4,24,2,19,1],"span":[446,16,31]},{"path":[4,24,2,19,3],"span":[446,34,36]},{"path":[4,24,2,20],"span":[448,2,39]},{"path":[4,24,2,20,4],"span":[448,2,10]},{"path":[4,24,2,20,5],"span":[448,11,16]},{"path":[4,24,2,20,1],"span":[448,17,33]},{"path":[4,24,2,20,3],"span":[448,36,38]},{"path":[4,24,2,21],"span":[450,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,24,2,21,4],"span":[450,2,10]},{"path":[4,24,2,21,5],"span":[450,11,16]},{"path":[4,24,2,21,1],"span":[450,17,28]},{"path":[4,24,2,21,3],"span":[450,31,34]},{"path":[4,25],"span":[453,0,509,1]},{"path":[4,25,1],"span":[453,8,22]},{"path":[4,25,2,0],"span":[454,2,16]},{"path":[4,25,2,0,5],"span":[454,2,7]},{"path":[4,25,2,0,1],"span":[454,9,11]},{"path":[4,25,2,0,3],"span":[454,14,15]},{"path":[4,25,2,1],"span":[456,2,19]},{"path":[4,25,2,1,5],"span":[456,2,8]},{"path":[4,25,2,1,1],"span":[456,9,14]},{"path":[4,25,2,1,3],"span":[456,17,18]},{"path":[4,25,2,2],"span":[457,2,32]},{"path":[4,25,2,2,4],"span":[457,2,10]},{"path":[4,25,2,2,5],"span":[457,11,17]},{"path":[4,25,2,2,1],"span":[457,18,27]},{"path":[4,25,2,2,3],"span":[457,30,31]},{"path":[4,25,2,3],"span":[458,2,29]},{"path":[4,25,2,3,4],"span":[458,2,10]},{"path":[4,25,2,3,5],"span":[458,11,16]},{"path":[4,25,2,3,1],"span":[458,17,24]},{"path":[4,25,2,3,3],"span":[458,27,28]},{"path":[4,25,2,4],"span":[460,2,31]},{"path":[4,25,2,4,4],"span":[460,2,10]},{"path":[4,25,2,4,5],"span":[460,11,16]},{"path":[4,25,2,4,1],"span":[460,17,26]},{"path":[4,25,2,4,3],"span":[460,29,30]},{"path":[4,25,2,5],"span":[461,2,30]},{"path":[4,25,2,5,4],"span":[461,2,10]},{"path":[4,25,2,5,5],"span":[461,11,15]},{"path":[4,25,2,5,1],"span":[461,16,25]},{"path":[4,25,2,5,3],"span":[461,28,29]},{"path":[4,25,2,6],"span":[462,2,36]},{"path":[4,25,2,6,4],"span":[462,2,10]},{"path":[4,25,2,6,5],"span":[462,11,17]},{"path":[4,25,2,6,1],"span":[462,18,31]},{"path":[4,25,2,6,3],"span":[462,34,35]},{"path":[4,25,2,7],"span":[463,2,35]},{"path":[4,25,2,7,4],"span":[463,2,10]},{"path":[4,25,2,7,5],"span":[463,11,17]},{"path":[4,25,2,7,1],"span":[463,18,30]},{"path":[4,25,2,7,3],"span":[463,33,34]},{"path":[4,25,2,8],"span":[465,2,33]},{"path":[4,25,2,8,4],"span":[465,2,10]},{"path":[4,25,2,8,5],"span":[465,11,17]},{"path":[4,25,2,8,1],"span":[465,18,27]},{"path":[4,25,2,8,3],"span":[465,30,32]},{"path":[4,25,2,9],"span":[466,2,38]},{"path":[4,25,2,9,4],"span":[466,2,10]},{"path":[4,25,2,9,5],"span":[466,11,17]},{"path":[4,25,2,9,1],"span":[466,18,32]},{"path":[4,25,2,9,3],"span":[466,35,37]},{"path":[4,25,2,10],"span":[467,2,36]},{"path":[4,25,2,10,4],"span":[467,2,10]},{"path":[4,25,2,10,5],"span":[467,11,17]},{"path":[4,25,2,10,1],"span":[467,18,30]},{"path":[4,25,2,10,3],"span":[467,33,35]},{"path":[4,25,2,11],"span":[468,2,40]},{"path":[4,25,2,11,4],"span":[468,2,10]},{"path":[4,25,2,11,5],"span":[468,11,17]},{"path":[4,25,2,11,1],"span":[468,18,34]},{"path":[4,25,2,11,3],"span":[468,37,39]},{"path":[4,25,2,12],"span":[469,2,31]},{"path":[4,25,2,12,4],"span":[469,2,10]},{"path":[4,25,2,12,5],"span":[469,11,17]},{"path":[4,25,2,12,1],"span":[469,18,25]},{"path":[4,25,2,12,3],"span":[469,28,30]},{"path":[4,25,2,13],"span":[470,2,36]},{"path":[4,25,2,13,4],"span":[470,2,10]},{"path":[4,25,2,13,5],"span":[470,11,17]},{"path":[4,25,2,13,1],"span":[470,18,30]},{"path":[4,25,2,13,3],"span":[470,33,35]},{"path":[4,25,2,14],"span":[471,2,35]},{"path":[4,25,2,14,4],"span":[471,2,10]},{"path":[4,25,2,14,5],"span":[471,11,16]},{"path":[4,25,2,14,1],"span":[471,17,29]},{"path":[4,25,2,14,3],"span":[471,32,34]},{"path":[4,25,2,15],"span":[472,2,29]},{"path":[4,25,2,15,4],"span":[472,2,10]},{"path":[4,25,2,15,5],"span":[472,11,17]},{"path":[4,25,2,15,1],"span":[472,18,23]},{"path":[4,25,2,15,3],"span":[472,26,28]},{"path":[4,25,2,16],"span":[473,2,33]},{"path":[4,25,2,16,4],"span":[473,2,10]},{"path":[4,25,2,16,5],"span":[473,11,17]},{"path":[4,25,2,16,1],"span":[473,18,27]},{"path":[4,25,2,16,3],"span":[473,30,32]},{"path":[4,25,2,17],"span":[474,2,32]},{"path":[4,25,2,17,4],"span":[474,2,10]},{"path":[4,25,2,17,5],"span":[474,11,17]},{"path":[4,25,2,17,1],"span":[474,18,26]},{"path":[4,25,2,17,3],"span":[474,29,31]},{"path":[4,25,2,18],"span":[475,2,35]},{"path":[4,25,2,18,4],"span":[475,2,10]},{"path":[4,25,2,18,5],"span":[475,11,17]},{"path":[4,25,2,18,1],"span":[475,18,29]},{"path":[4,25,2,18,3],"span":[475,32,34]},{"path":[4,25,2,19],"span":[477,2,36]},{"path":[4,25,2,19,4],"span":[477,2,10]},{"path":[4,25,2,19,5],"span":[477,11,17]},{"path":[4,25,2,19,1],"span":[477,18,30]},{"path":[4,25,2,19,3],"span":[477,33,35]},{"path":[4,25,2,20],"span":[478,2,38]},{"path":[4,25,2,20,4],"span":[478,2,10]},{"path":[4,25,2,20,5],"span":[478,11,16]},{"path":[4,25,2,20,1],"span":[478,17,32]},{"path":[4,25,2,20,3],"span":[478,35,37]},{"path":[4,25,2,21],"span":[479,2,47]},{"path":[4,25,2,21,4],"span":[479,2,10]},{"path":[4,25,2,21,5],"span":[479,11,16]},{"path":[4,25,2,21,1],"span":[479,17,41]},{"path":[4,25,2,21,3],"span":[479,44,46]},{"path":[4,25,2,22],"span":[480,2,30]},{"path":[4,25,2,22,4],"span":[480,2,10]},{"path":[4,25,2,22,5],"span":[480,11,16]},{"path":[4,25,2,22,1],"span":[480,17,24]},{"path":[4,25,2,22,3],"span":[480,27,29]},{"path":[4,25,2,23],"span":[481,2,29]},{"path":[4,25,2,23,4],"span":[481,2,10]},{"path":[4,25,2,23,5],"span":[481,11,16]},{"path":[4,25,2,23,1],"span":[481,17,23]},{"path":[4,25,2,23,3],"span":[481,26,28]},{"path":[4,25,2,24],"span":[482,2,29]},{"path":[4,25,2,24,4],"span":[482,2,10]},{"path":[4,25,2,24,5],"span":[482,11,16]},{"path":[4,25,2,24,1],"span":[482,17,23]},{"path":[4,25,2,24,3],"span":[482,26,28]},{"path":[4,25,2,25],"span":[483,2,36]},{"path":[4,25,2,25,4],"span":[483,2,10]},{"path":[4,25,2,25,5],"span":[483,11,17]},{"path":[4,25,2,25,1],"span":[483,18,30]},{"path":[4,25,2,25,3],"span":[483,33,35]},{"path":[4,25,2,26],"span":[484,2,39]},{"path":[4,25,2,26,4],"span":[484,2,10]},{"path":[4,25,2,26,5],"span":[484,11,16]},{"path":[4,25,2,26,1],"span":[484,17,33]},{"path":[4,25,2,26,3],"span":[484,36,38]},{"path":[4,25,2,27],"span":[485,2,44]},{"path":[4,25,2,27,4],"span":[485,2,10]},{"path":[4,25,2,27,5],"span":[485,11,17]},{"path":[4,25,2,27,1],"span":[485,18,38]},{"path":[4,25,2,27,3],"span":[485,41,43]},{"path":[4,25,2,28],"span":[487,2,36]},{"path":[4,25,2,28,4],"span":[487,2,10]},{"path":[4,25,2,28,5],"span":[487,11,17]},{"path":[4,25,2,28,1],"span":[487,18,30]},{"path":[4,25,2,28,3],"span":[487,33,35]},{"path":[4,25,2,29],"span":[488,2,37]},{"path":[4,25,2,29,4],"span":[488,2,10]},{"path":[4,25,2,29,5],"span":[488,11,16]},{"path":[4,25,2,29,1],"span":[488,17,31]},{"path":[4,25,2,29,3],"span":[488,34,36]},{"path":[4,25,2,30],"span":[489,2,42]},{"path":[4,25,2,30,4],"span":[489,2,10]},{"path":[4,25,2,30,5],"span":[489,11,17]},{"path":[4,25,2,30,1],"span":[489,18,36]},{"path":[4,25,2,30,3],"span":[489,39,41]},{"path":[4,25,2,31],"span":[490,2,38]},{"path":[4,25,2,31,4],"span":[490,2,10]},{"path":[4,25,2,31,5],"span":[490,11,17]},{"path":[4,25,2,31,1],"span":[490,18,32]},{"path":[4,25,2,31,3],"span":[490,35,37]},{"path":[4,25,2,32],"span":[491,2,42]},{"path":[4,25,2,32,4],"span":[491,2,10]},{"path":[4,25,2,32,5],"span":[491,11,17]},{"path":[4,25,2,32,1],"span":[491,18,36]},{"path":[4,25,2,32,3],"span":[491,39,41]},{"path":[4,25,2,33],"span":[492,2,39]},{"path":[4,25,2,33,4],"span":[492,2,10]},{"path":[4,25,2,33,5],"span":[492,11,17]},{"path":[4,25,2,33,1],"span":[492,18,33]},{"path":[4,25,2,33,3],"span":[492,36,38]},{"path":[4,25,2,34],"span":[493,2,34]},{"path":[4,25,2,34,4],"span":[493,2,10]},{"path":[4,25,2,34,5],"span":[493,11,17]},{"path":[4,25,2,34,1],"span":[493,18,28]},{"path":[4,25,2,34,3],"span":[493,31,33]},{"path":[4,25,2,35],"span":[494,2,34]},{"path":[4,25,2,35,4],"span":[494,2,10]},{"path":[4,25,2,35,5],"span":[494,11,17]},{"path":[4,25,2,35,1],"span":[494,18,28]},{"path":[4,25,2,35,3],"span":[494,31,33]},{"path":[4,25,2,36],"span":[495,2,33]},{"path":[4,25,2,36,4],"span":[495,2,10]},{"path":[4,25,2,36,5],"span":[495,11,17]},{"path":[4,25,2,36,1],"span":[495,18,27]},{"path":[4,25,2,36,3],"span":[495,30,32]},{"path":[4,25,2,37],"span":[497,2,33]},{"path":[4,25,2,37,4],"span":[497,2,10]},{"path":[4,25,2,37,5],"span":[497,11,15]},{"path":[4,25,2,37,1],"span":[497,16,27]},{"path":[4,25,2,37,3],"span":[497,30,32]},{"path":[4,25,2,38],"span":[498,2,36]},{"path":[4,25,2,38,4],"span":[498,2,10]},{"path":[4,25,2,38,5],"span":[498,11,15]},{"path":[4,25,2,38,1],"span":[498,16,30]},{"path":[4,25,2,38,3],"span":[498,33,35]},{"path":[4,25,2,39],"span":[499,2,38]},{"path":[4,25,2,39,4],"span":[499,2,10]},{"path":[4,25,2,39,5],"span":[499,11,15]},{"path":[4,25,2,39,1],"span":[499,16,32]},{"path":[4,25,2,39,3],"span":[499,35,37]},{"path":[4,25,2,40],"span":[500,2,34]},{"path":[4,25,2,40,4],"span":[500,2,10]},{"path":[4,25,2,40,5],"span":[500,11,15]},{"path":[4,25,2,40,1],"span":[500,16,28]},{"path":[4,25,2,40,3],"span":[500,31,33]},{"path":[4,25,2,41],"span":[501,2,33]},{"path":[4,25,2,41,4],"span":[501,2,10]},{"path":[4,25,2,41,5],"span":[501,11,15]},{"path":[4,25,2,41,1],"span":[501,16,27]},{"path":[4,25,2,41,3],"span":[501,30,32]},{"path":[4,25,2,42],"span":[502,2,38]},{"path":[4,25,2,42,4],"span":[502,2,10]},{"path":[4,25,2,42,5],"span":[502,11,15]},{"path":[4,25,2,42,1],"span":[502,16,32]},{"path":[4,25,2,42,3],"span":[502,35,37]},{"path":[4,25,2,43],"span":[503,2,36]},{"path":[4,25,2,43,4],"span":[503,2,10]},{"path":[4,25,2,43,5],"span":[503,11,15]},{"path":[4,25,2,43,1],"span":[503,16,30]},{"path":[4,25,2,43,3],"span":[503,33,35]},{"path":[4,25,2,44],"span":[505,2,39]},{"path":[4,25,2,44,4],"span":[505,2,10]},{"path":[4,25,2,44,5],"span":[505,11,16]},{"path":[4,25,2,44,1],"span":[505,17,33]},{"path":[4,25,2,44,3],"span":[505,36,38]},{"path":[4,25,2,45],"span":[507,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,25,2,45,4],"span":[507,2,10]},{"path":[4,25,2,45,5],"span":[507,11,16]},{"path":[4,25,2,45,1],"span":[507,17,28]},{"path":[4,25,2,45,3],"span":[507,31,34]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}