@lansweeper/data-platform-outbound-grpc 0.1.21 → 0.1.23

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":"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":"source_tag","number":12,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"sourceTag"},{"name":"tag","number":14,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"tag"},{"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},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":4,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"os_patch","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"processor","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"}],"oneofDecl":[{"name":"_hw"},{"name":"_os"},{"name":"_software_inventory"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"}]},{"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":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":12,"jsonName":"spec","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":"_spec"}]},{"name":"SpecHardwareInfo","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.WindowsOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_name"},{"name":"_version"},{"name":"_build"},{"name":"_fw_version"},{"name":"_cpe"},{"name":"_fw_cpe"},{"name":"_rank"}]},{"name":"OperatingSystemPatch","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"type","proto3Optional":true},{"name":"install_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"installDate","proto3Optional":true},{"name":"install_by","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"installBy","proto3Optional":true},{"name":"comments","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"comments","proto3Optional":true},{"name":"windows_service_pack","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"windowsServicePack","proto3Optional":true}],"oneofDecl":[{"name":"_type"},{"name":"_install_date"},{"name":"_install_by"},{"name":"_comments"},{"name":"_windows_service_pack"}]},{"name":"WindowsOperatingSystemInfo","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":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"osCode","proto3Optional":true},{"name":"boot_device","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"bootDevice","proto3Optional":true},{"name":"build_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"buildNumber","proto3Optional":true},{"name":"build_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"buildType","proto3Optional":true},{"name":"caption","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"caption","proto3Optional":true},{"name":"code_set","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"codeSet","proto3Optional":true},{"name":"country_code","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"countryCode","proto3Optional":true},{"name":"csd_version","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"csdVersion","proto3Optional":true},{"name":"current_timezone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"currentTimezone","proto3Optional":true},{"name":"debug","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"debug","proto3Optional":true},{"name":"description","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"description","proto3Optional":true},{"name":"foreground_application_boost","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":18,"jsonName":"foregroundApplicationBoost","proto3Optional":true},{"name":"install_date","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":19,"jsonName":"installDate","proto3Optional":true},{"name":"max_process_memory_size","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":20,"jsonName":"maxProcessMemorySize","proto3Optional":true},{"name":"number_of_licensed_users","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":21,"jsonName":"numberOfLicensedUsers","proto3Optional":true},{"name":"organization","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"organization","proto3Optional":true},{"name":"os_language","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":23,"jsonName":"osLanguage","proto3Optional":true},{"name":"os_product_suite","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":24,"jsonName":"osProductSuite","proto3Optional":true},{"name":"os_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"osType","proto3Optional":true},{"name":"plus_product_id","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"plusProductId","proto3Optional":true},{"name":"plus_version_number","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"plusVersionNumber","proto3Optional":true},{"name":"registered_user","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":28,"jsonName":"registeredUser","proto3Optional":true},{"name":"serial_number","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"serialNumber","proto3Optional":true},{"name":"service_pack_major_version","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":30,"jsonName":"servicePackMajorVersion","proto3Optional":true},{"name":"service_pack_minor_version","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":31,"jsonName":"servicePackMinorVersion","proto3Optional":true},{"name":"size_stored_in_paging_files","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":32,"jsonName":"sizeStoredInPagingFiles","proto3Optional":true},{"name":"status","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"status","proto3Optional":true},{"name":"system_device","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"systemDevice","proto3Optional":true},{"name":"system_directory","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":35,"jsonName":"systemDirectory","proto3Optional":true},{"name":"total_virtual_memory_size","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":36,"jsonName":"totalVirtualMemorySize","proto3Optional":true},{"name":"total_visible_memory_size","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":37,"jsonName":"totalVisibleMemorySize","proto3Optional":true},{"name":"windows_directory","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":38,"jsonName":"windowsDirectory","proto3Optional":true},{"name":"total_swap_space_size","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":39,"jsonName":"totalSwapSpaceSize","proto3Optional":true},{"name":"large_system_cache","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":40,"jsonName":"largeSystemCache","proto3Optional":true},{"name":"other_type_description","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":41,"jsonName":"otherTypeDescription","proto3Optional":true},{"name":"product_type","number":47,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":42,"jsonName":"productType","proto3Optional":true},{"name":"suite_mask","number":48,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":43,"jsonName":"suiteMask","proto3Optional":true},{"name":"system_drive","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":44,"jsonName":"systemDrive","proto3Optional":true},{"name":"encryption_level","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":45,"jsonName":"encryptionLevel","proto3Optional":true},{"name":"data_execution_prevention32_bit_applications","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":46,"jsonName":"dataExecutionPrevention32BitApplications","proto3Optional":true},{"name":"is_data_execution_prevention_available","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":47,"jsonName":"isDataExecutionPreventionAvailable","proto3Optional":true},{"name":"data_execution_prevention_drivers","number":53,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":48,"jsonName":"dataExecutionPreventionDrivers","proto3Optional":true},{"name":"data_execution_prevention_support_policy","number":54,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":49,"jsonName":"dataExecutionPreventionSupportPolicy","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"},{"name":"_boot_device"},{"name":"_build_number"},{"name":"_build_type"},{"name":"_caption"},{"name":"_code_set"},{"name":"_country_code"},{"name":"_csd_version"},{"name":"_current_timezone"},{"name":"_debug"},{"name":"_description"},{"name":"_foreground_application_boost"},{"name":"_install_date"},{"name":"_max_process_memory_size"},{"name":"_number_of_licensed_users"},{"name":"_organization"},{"name":"_os_language"},{"name":"_os_product_suite"},{"name":"_os_type"},{"name":"_plus_product_id"},{"name":"_plus_version_number"},{"name":"_registered_user"},{"name":"_serial_number"},{"name":"_service_pack_major_version"},{"name":"_service_pack_minor_version"},{"name":"_size_stored_in_paging_files"},{"name":"_status"},{"name":"_system_device"},{"name":"_system_directory"},{"name":"_total_virtual_memory_size"},{"name":"_total_visible_memory_size"},{"name":"_windows_directory"},{"name":"_total_swap_space_size"},{"name":"_large_system_cache"},{"name":"_other_type_description"},{"name":"_product_type"},{"name":"_suite_mask"},{"name":"_system_drive"},{"name":"_encryption_level"},{"name":"_data_execution_prevention32_bit_applications"},{"name":"_is_data_execution_prevention_available"},{"name":"_data_execution_prevention_drivers"},{"name":"_data_execution_prevention_support_policy"}]},{"name":"NetworkInterfaces","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"interface","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterface","jsonName":"interface"}]},{"name":"NetworkInterface","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type"},{"name":"sub_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subType"},{"name":"id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"id","proto3Optional":true},{"name":"mac","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"mac","proto3Optional":true},{"name":"dhcp_enabled","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"dhcpEnabled","proto3Optional":true},{"name":"dhcp_server_ip","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"dhcpServerIp","proto3Optional":true},{"name":"ip","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetIpAddress","jsonName":"ip"},{"name":"gateway_ip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"gatewayIp","proto3Optional":true},{"name":"gateway_mac","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"gatewayMac","proto3Optional":true},{"name":"dns_server","number":11,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"dnsServer"},{"name":"dns_host_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dnsHostName","proto3Optional":true},{"name":"dns_domain_suffix_search_order","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"dnsDomainSuffixSearchOrder","proto3Optional":true},{"name":"service_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"serviceName","proto3Optional":true},{"name":"database_path","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"databasePath","proto3Optional":true}],"oneofDecl":[{"name":"_id"},{"name":"_mac"},{"name":"_dhcp_enabled"},{"name":"_dhcp_server_ip"},{"name":"_gateway_ip"},{"name":"_gateway_mac"},{"name":"_dns_host_name"},{"name":"_dns_domain_suffix_search_order"},{"name":"_service_name"},{"name":"_database_path"}]},{"name":"NetIpAddress","field":[{"name":"ip","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ip"},{"name":"subnet","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subnet"}]},{"name":"Processor","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"address_sizes","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"addressSizes","proto3Optional":true},{"name":"address_width","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"addressWidth","proto3Optional":true},{"name":"architecture","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"architecture","proto3Optional":true},{"name":"availability","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"availability","proto3Optional":true},{"name":"bogo_mips","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":4,"jsonName":"bogoMips","proto3Optional":true},{"name":"byte_order","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"byteOrder","proto3Optional":true},{"name":"caption","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"caption","proto3Optional":true},{"name":"current_clock_speed","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentClockSpeed","proto3Optional":true},{"name":"data_width","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"deviceId","proto3Optional":true},{"name":"external_clock_mhz","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"externalClockMhz","proto3Optional":true},{"name":"family","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":11,"jsonName":"family","proto3Optional":true},{"name":"hypervisor_vendor","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"hypervisorVendor","proto3Optional":true},{"name":"l1d_cache_size_kb","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"l1dCacheSizeKb","proto3Optional":true},{"name":"l1i_cache_size_kb","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"l1iCacheSizeKb","proto3Optional":true},{"name":"l2_cache_size_kb","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"l2CacheSizeKb","proto3Optional":true},{"name":"l2_cache_speed_mhz","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"l2CacheSpeedMhz","proto3Optional":true},{"name":"l3_cache_size_kb","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"l3CacheSizeKb","proto3Optional":true},{"name":"level","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"level","proto3Optional":true},{"name":"logical_cores_count","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"logicalCoresCount","proto3Optional":true},{"name":"manufacturer","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_clock_speed_mhz","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"maxClockSpeedMhz","proto3Optional":true},{"name":"min_clock_speed_mhz","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"minClockSpeedMhz","proto3Optional":true},{"name":"model_number","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":23,"jsonName":"modelNumber","proto3Optional":true},{"name":"op_modes","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"opModes","proto3Optional":true},{"name":"physical_cores_count","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"physicalCoresCount","proto3Optional":true},{"name":"processor_id","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"processorId","proto3Optional":true},{"name":"processor_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":27,"jsonName":"processorType","proto3Optional":true},{"name":"revision","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":28,"jsonName":"revision","proto3Optional":true},{"name":"socket_designation","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"socketDesignation","proto3Optional":true},{"name":"sockets","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":30,"jsonName":"sockets","proto3Optional":true},{"name":"status","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":31,"jsonName":"status","proto3Optional":true},{"name":"stepping","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":32,"jsonName":"stepping","proto3Optional":true},{"name":"threads_per_physical_core_count","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":33,"jsonName":"threadsPerPhysicalCoreCount","proto3Optional":true},{"name":"unique_id","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"uniqueId","proto3Optional":true},{"name":"upgrade_method","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":35,"jsonName":"upgradeMethod","proto3Optional":true},{"name":"version","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":36,"jsonName":"version","proto3Optional":true},{"name":"virtualization","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":37,"jsonName":"virtualization","proto3Optional":true},{"name":"voltage_capabilities","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":38,"jsonName":"voltageCapabilities","proto3Optional":true}],"oneofDecl":[{"name":"_address_sizes"},{"name":"_address_width"},{"name":"_architecture"},{"name":"_availability"},{"name":"_bogo_mips"},{"name":"_byte_order"},{"name":"_caption"},{"name":"_current_clock_speed"},{"name":"_data_width"},{"name":"_device_id"},{"name":"_external_clock_mhz"},{"name":"_family"},{"name":"_hypervisor_vendor"},{"name":"_l1d_cache_size_kb"},{"name":"_l1i_cache_size_kb"},{"name":"_l2_cache_size_kb"},{"name":"_l2_cache_speed_mhz"},{"name":"_l3_cache_size_kb"},{"name":"_level"},{"name":"_logical_cores_count"},{"name":"_manufacturer"},{"name":"_max_clock_speed_mhz"},{"name":"_min_clock_speed_mhz"},{"name":"_model_number"},{"name":"_op_modes"},{"name":"_physical_cores_count"},{"name":"_processor_id"},{"name":"_processor_type"},{"name":"_revision"},{"name":"_socket_designation"},{"name":"_sockets"},{"name":"_status"},{"name":"_stepping"},{"name":"_threads_per_physical_core_count"},{"name":"_unique_id"},{"name":"_upgrade_method"},{"name":"_version"},{"name":"_virtualization"},{"name":"_voltage_capabilities"}]},{"name":"MappedValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"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.WindowsMonitorInfo","oneofIndex":0,"jsonName":"windows"}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_serial_number"}]},{"name":"WindowsMonitorInfo","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_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","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":"tiktok_account","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"tiktokAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":25,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":26,"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":"_tiktok_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_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":10,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":11,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":12,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","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,696,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":[88,0,94,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[88,8,14]},{"path":[4,7,8,0],"span":[89,2,93,3]},{"path":[4,7,8,0,1],"span":[89,8,14]},{"path":[4,7,2,0],"span":[90,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[90,4,9]},{"path":[4,7,2,0,1],"span":[90,10,15]},{"path":[4,7,2,0,3],"span":[90,18,19]},{"path":[4,8],"span":[97,0,141,1],"leadingComments":" Asset object: IT/OT/CDR... CDK? "},{"path":[4,8,1],"span":[97,8,13]},{"path":[4,8,2,0],"span":[99,2,20]},{"path":[4,8,2,0,6],"span":[99,2,12]},{"path":[4,8,2,0,1],"span":[99,13,15]},{"path":[4,8,2,0,3],"span":[99,18,19]},{"path":[4,8,2,1],"span":[101,2,44]},{"path":[4,8,2,1,6],"span":[101,2,27]},{"path":[4,8,2,1,1],"span":[101,28,39]},{"path":[4,8,2,1,3],"span":[101,42,43]},{"path":[4,8,2,2],"span":[102,2,43]},{"path":[4,8,2,2,6],"span":[102,2,27]},{"path":[4,8,2,2,1],"span":[102,28,38]},{"path":[4,8,2,2,3],"span":[102,41,42]},{"path":[4,8,2,3],"span":[103,2,45]},{"path":[4,8,2,3,6],"span":[103,2,27]},{"path":[4,8,2,3,1],"span":[103,28,40]},{"path":[4,8,2,3,3],"span":[103,43,44]},{"path":[4,8,2,4],"span":[104,2,46]},{"path":[4,8,2,4,6],"span":[104,2,27]},{"path":[4,8,2,4,1],"span":[104,28,41]},{"path":[4,8,2,4,3],"span":[104,44,45]},{"path":[4,8,2,5],"span":[116,2,34],"leadingComments":"\n Source tags in the format: brand/type/sub-type\n E.g.: LS/IT/CDR\n E.g.: LS/IT/Scan-WMI\n E.g.: LS/IT/Scan-MAC\n E.g.: LS/IT/Scan-Linux\n E.g.: LS/IT/OT (OT like this?)\n E.g.: LS/CDK (cloud discovery?)\n E.g.: LS/DataCore (reconciliation)\n"},{"path":[4,8,2,5,4],"span":[116,2,10]},{"path":[4,8,2,5,5],"span":[116,11,17]},{"path":[4,8,2,5,1],"span":[116,18,28]},{"path":[4,8,2,5,3],"span":[116,31,33]},{"path":[4,8,2,6],"span":[118,2,27]},{"path":[4,8,2,6,4],"span":[118,2,10]},{"path":[4,8,2,6,5],"span":[118,11,17]},{"path":[4,8,2,6,1],"span":[118,18,21]},{"path":[4,8,2,6,3],"span":[118,24,26]},{"path":[4,8,2,7],"span":[120,2,22]},{"path":[4,8,2,7,6],"span":[120,2,12]},{"path":[4,8,2,7,1],"span":[120,13,17]},{"path":[4,8,2,7,3],"span":[120,20,21]},{"path":[4,8,2,8],"span":[122,2,31]},{"path":[4,8,2,8,4],"span":[122,2,10]},{"path":[4,8,2,8,6],"span":[122,11,23]},{"path":[4,8,2,8,1],"span":[122,24,26]},{"path":[4,8,2,8,3],"span":[122,29,30]},{"path":[4,8,2,9],"span":[123,2,38]},{"path":[4,8,2,9,4],"span":[123,2,10]},{"path":[4,8,2,9,6],"span":[123,11,30]},{"path":[4,8,2,9,1],"span":[123,31,33]},{"path":[4,8,2,9,3],"span":[123,36,37]},{"path":[4,8,2,10],"span":[124,2,52]},{"path":[4,8,2,10,4],"span":[124,2,10]},{"path":[4,8,2,10,6],"span":[124,11,28]},{"path":[4,8,2,10,1],"span":[124,29,47]},{"path":[4,8,2,10,3],"span":[124,50,51]},{"path":[4,8,2,11],"span":[126,2,51]},{"path":[4,8,2,11,4],"span":[126,2,10]},{"path":[4,8,2,11,6],"span":[126,11,27]},{"path":[4,8,2,11,1],"span":[126,28,45]},{"path":[4,8,2,11,3],"span":[126,48,50]},{"path":[4,8,2,12],"span":[128,2,53]},{"path":[4,8,2,12,4],"span":[128,2,10]},{"path":[4,8,2,12,6],"span":[128,11,28]},{"path":[4,8,2,12,1],"span":[128,29,47]},{"path":[4,8,2,12,3],"span":[128,50,52]},{"path":[4,8,2,13],"span":[130,2,46]},{"path":[4,8,2,13,4],"span":[130,2,10]},{"path":[4,8,2,13,6],"span":[130,11,31]},{"path":[4,8,2,13,1],"span":[130,32,40]},{"path":[4,8,2,13,3],"span":[130,43,45]},{"path":[4,8,2,14],"span":[132,2,36]},{"path":[4,8,2,14,4],"span":[132,2,10]},{"path":[4,8,2,14,6],"span":[132,11,20]},{"path":[4,8,2,14,1],"span":[132,21,30]},{"path":[4,8,2,14,3],"span":[132,33,35]},{"path":[4,9],"span":[148,0,155,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":[148,8,17]},{"path":[4,9,2,0],"span":[150,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":[150,2,8]},{"path":[4,9,2,0,1],"span":[150,9,16]},{"path":[4,9,2,0,3],"span":[150,19,20]},{"path":[4,9,2,1],"span":[152,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,9,2,1,5],"span":[152,2,7]},{"path":[4,9,2,1,1],"span":[152,8,13]},{"path":[4,9,2,1,3],"span":[152,16,17]},{"path":[4,9,2,2],"span":[154,2,32],"leadingComments":" Fing Type\n"},{"path":[4,9,2,2,4],"span":[154,2,10]},{"path":[4,9,2,2,5],"span":[154,11,17]},{"path":[4,9,2,2,1],"span":[154,18,27]},{"path":[4,9,2,2,3],"span":[154,30,31]},{"path":[4,10],"span":[160,0,169,1],"leadingComments":"\n\n"},{"path":[4,10,1],"span":[160,8,18]},{"path":[4,10,2,0],"span":[161,2,21]},{"path":[4,10,2,0,6],"span":[161,2,11]},{"path":[4,10,2,0,1],"span":[161,12,16]},{"path":[4,10,2,0,3],"span":[161,19,20]},{"path":[4,10,2,1],"span":[162,2,18]},{"path":[4,10,2,1,5],"span":[162,2,8]},{"path":[4,10,2,1,1],"span":[162,9,13]},{"path":[4,10,2,1,3],"span":[162,16,17]},{"path":[4,10,2,2],"span":[163,2,29]},{"path":[4,10,2,2,4],"span":[163,2,10]},{"path":[4,10,2,2,5],"span":[163,11,17]},{"path":[4,10,2,2,1],"span":[163,18,24]},{"path":[4,10,2,2,3],"span":[163,27,28]},{"path":[4,10,2,3],"span":[164,2,33]},{"path":[4,10,2,3,4],"span":[164,2,10]},{"path":[4,10,2,3,5],"span":[164,11,17]},{"path":[4,10,2,3,1],"span":[164,18,28]},{"path":[4,10,2,3,3],"span":[164,31,32]},{"path":[4,10,2,4],"span":[165,2,29]},{"path":[4,10,2,4,4],"span":[165,2,10]},{"path":[4,10,2,4,5],"span":[165,11,17]},{"path":[4,10,2,4,1],"span":[165,18,24]},{"path":[4,10,2,4,3],"span":[165,27,28]},{"path":[4,10,2,5],"span":[166,2,26]},{"path":[4,10,2,5,4],"span":[166,2,10]},{"path":[4,10,2,5,5],"span":[166,11,17]},{"path":[4,10,2,5,1],"span":[166,18,21]},{"path":[4,10,2,5,3],"span":[166,24,25]},{"path":[4,10,2,6],"span":[167,2,33]},{"path":[4,10,2,6,4],"span":[167,2,10]},{"path":[4,10,2,6,5],"span":[167,11,17]},{"path":[4,10,2,6,1],"span":[167,18,28]},{"path":[4,10,2,6,3],"span":[167,31,32]},{"path":[4,10,2,7],"span":[168,2,32]},{"path":[4,10,2,7,4],"span":[168,2,10]},{"path":[4,10,2,7,5],"span":[168,11,17]},{"path":[4,10,2,7,1],"span":[168,18,27]},{"path":[4,10,2,7,3],"span":[168,30,31]},{"path":[4,11],"span":[171,0,194,1]},{"path":[4,11,1],"span":[171,8,20]},{"path":[4,11,2,0],"span":[172,2,29]},{"path":[4,11,2,0,4],"span":[172,2,10]},{"path":[4,11,2,0,5],"span":[172,11,16]},{"path":[4,11,2,0,1],"span":[172,17,24]},{"path":[4,11,2,0,3],"span":[172,27,28]},{"path":[4,11,2,1],"span":[175,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,11,2,1,4],"span":[175,2,10]},{"path":[4,11,2,1,5],"span":[175,11,16]},{"path":[4,11,2,1,1],"span":[175,17,24]},{"path":[4,11,2,1,3],"span":[175,27,28]},{"path":[4,11,2,2],"span":[178,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,11,2,2,4],"span":[178,2,10]},{"path":[4,11,2,2,5],"span":[178,11,16]},{"path":[4,11,2,2,1],"span":[178,17,25]},{"path":[4,11,2,2,3],"span":[178,28,29]},{"path":[4,11,2,3],"span":[181,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,11,2,3,4],"span":[181,2,10]},{"path":[4,11,2,3,5],"span":[181,11,16]},{"path":[4,11,2,3,1],"span":[181,17,26]},{"path":[4,11,2,3,3],"span":[181,29,30]},{"path":[4,11,2,4],"span":[183,2,30]},{"path":[4,11,2,4,4],"span":[183,2,10]},{"path":[4,11,2,4,5],"span":[183,11,15]},{"path":[4,11,2,4,1],"span":[183,16,25]},{"path":[4,11,2,4,3],"span":[183,28,29]},{"path":[4,11,2,5],"span":[184,2,29]},{"path":[4,11,2,5,4],"span":[184,2,10]},{"path":[4,11,2,5,5],"span":[184,11,17]},{"path":[4,11,2,5,1],"span":[184,18,24]},{"path":[4,11,2,5,3],"span":[184,27,28]},{"path":[4,11,2,6],"span":[185,2,33]},{"path":[4,11,2,6,4],"span":[185,2,10]},{"path":[4,11,2,6,5],"span":[185,11,17]},{"path":[4,11,2,6,1],"span":[185,18,27]},{"path":[4,11,2,6,3],"span":[185,30,32]},{"path":[4,11,2,7],"span":[186,2,33]},{"path":[4,11,2,7,4],"span":[186,2,10]},{"path":[4,11,2,7,5],"span":[186,11,17]},{"path":[4,11,2,7,1],"span":[186,18,27]},{"path":[4,11,2,7,3],"span":[186,30,32]},{"path":[4,11,2,8],"span":[187,2,34]},{"path":[4,11,2,8,4],"span":[187,2,10]},{"path":[4,11,2,8,5],"span":[187,11,17]},{"path":[4,11,2,8,1],"span":[187,18,28]},{"path":[4,11,2,8,3],"span":[187,31,33]},{"path":[4,11,2,9],"span":[188,2,35]},{"path":[4,11,2,9,4],"span":[188,2,10]},{"path":[4,11,2,9,5],"span":[188,11,17]},{"path":[4,11,2,9,1],"span":[188,18,29]},{"path":[4,11,2,9,3],"span":[188,32,34]},{"path":[4,11,2,10],"span":[190,2,27]},{"path":[4,11,2,10,4],"span":[190,2,10]},{"path":[4,11,2,10,5],"span":[190,11,17]},{"path":[4,11,2,10,1],"span":[190,18,21]},{"path":[4,11,2,10,3],"span":[190,24,26]},{"path":[4,11,2,11],"span":[191,2,27]},{"path":[4,11,2,11,4],"span":[191,2,10]},{"path":[4,11,2,11,5],"span":[191,11,16]},{"path":[4,11,2,11,1],"span":[191,17,21]},{"path":[4,11,2,11,3],"span":[191,24,26]},{"path":[4,11,2,12],"span":[193,2,38]},{"path":[4,11,2,12,4],"span":[193,2,10]},{"path":[4,11,2,12,6],"span":[193,11,27]},{"path":[4,11,2,12,1],"span":[193,28,32]},{"path":[4,11,2,12,3],"span":[193,35,37]},{"path":[4,12],"span":[196,0,201,1]},{"path":[4,12,1],"span":[196,8,24]},{"path":[4,12,2,0],"span":[197,2,35]},{"path":[4,12,2,0,4],"span":[197,2,10]},{"path":[4,12,2,0,5],"span":[197,11,17]},{"path":[4,12,2,0,1],"span":[197,18,30]},{"path":[4,12,2,0,3],"span":[197,33,34]},{"path":[4,12,2,1],"span":[198,2,28]},{"path":[4,12,2,1,4],"span":[198,2,10]},{"path":[4,12,2,1,5],"span":[198,11,17]},{"path":[4,12,2,1,1],"span":[198,18,23]},{"path":[4,12,2,1,3],"span":[198,26,27]},{"path":[4,12,2,2],"span":[199,2,35]},{"path":[4,12,2,2,4],"span":[199,2,10]},{"path":[4,12,2,2,5],"span":[199,11,17]},{"path":[4,12,2,2,1],"span":[199,18,30]},{"path":[4,12,2,2,3],"span":[199,33,34]},{"path":[4,12,2,3],"span":[200,2,36]},{"path":[4,12,2,3,4],"span":[200,2,10]},{"path":[4,12,2,3,5],"span":[200,11,17]},{"path":[4,12,2,3,1],"span":[200,18,31]},{"path":[4,12,2,3,3],"span":[200,34,35]},{"path":[4,13],"span":[203,0,224,1]},{"path":[4,13,1],"span":[203,8,27]},{"path":[4,13,2,0],"span":[205,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,13,2,0,4],"span":[205,2,10]},{"path":[4,13,2,0,5],"span":[205,11,16]},{"path":[4,13,2,0,1],"span":[205,17,19]},{"path":[4,13,2,0,3],"span":[205,22,23]},{"path":[4,13,2,1],"span":[208,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,13,2,1,4],"span":[208,2,10]},{"path":[4,13,2,1,5],"span":[208,11,16]},{"path":[4,13,2,1,1],"span":[208,17,24]},{"path":[4,13,2,1,3],"span":[208,27,29]},{"path":[4,13,2,2],"span":[210,2,27]},{"path":[4,13,2,2,4],"span":[210,2,10]},{"path":[4,13,2,2,5],"span":[210,11,17]},{"path":[4,13,2,2,1],"span":[210,18,22]},{"path":[4,13,2,2,3],"span":[210,25,26]},{"path":[4,13,2,3],"span":[211,2,30]},{"path":[4,13,2,3,4],"span":[211,2,10]},{"path":[4,13,2,3,5],"span":[211,11,17]},{"path":[4,13,2,3,1],"span":[211,18,25]},{"path":[4,13,2,3,3],"span":[211,28,29]},{"path":[4,13,2,4],"span":[212,2,28]},{"path":[4,13,2,4,4],"span":[212,2,10]},{"path":[4,13,2,4,5],"span":[212,11,17]},{"path":[4,13,2,4,1],"span":[212,18,23]},{"path":[4,13,2,4,3],"span":[212,26,27]},{"path":[4,13,2,5],"span":[214,2,33]},{"path":[4,13,2,5,4],"span":[214,2,10]},{"path":[4,13,2,5,5],"span":[214,11,17]},{"path":[4,13,2,5,1],"span":[214,18,28]},{"path":[4,13,2,5,3],"span":[214,31,32]},{"path":[4,13,2,6],"span":[216,2,26]},{"path":[4,13,2,6,4],"span":[216,2,10]},{"path":[4,13,2,6,5],"span":[216,11,17]},{"path":[4,13,2,6,1],"span":[216,18,21]},{"path":[4,13,2,6,3],"span":[216,24,25]},{"path":[4,13,2,7],"span":[217,2,29]},{"path":[4,13,2,7,4],"span":[217,2,10]},{"path":[4,13,2,7,5],"span":[217,11,17]},{"path":[4,13,2,7,1],"span":[217,18,24]},{"path":[4,13,2,7,3],"span":[217,27,28]},{"path":[4,13,2,8],"span":[219,2,26]},{"path":[4,13,2,8,4],"span":[219,2,10]},{"path":[4,13,2,8,5],"span":[219,11,16]},{"path":[4,13,2,8,1],"span":[219,17,21]},{"path":[4,13,2,8,3],"span":[219,24,25]},{"path":[4,13,8,0],"span":[221,2,223,3]},{"path":[4,13,8,0,1],"span":[221,8,12]},{"path":[4,13,2,9],"span":[222,4,44]},{"path":[4,13,2,9,6],"span":[222,4,30]},{"path":[4,13,2,9,1],"span":[222,31,38]},{"path":[4,13,2,9,3],"span":[222,41,43]},{"path":[4,14],"span":[227,0,243,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,14,1],"span":[227,8,28]},{"path":[4,14,2,0],"span":[229,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,14,2,0,5],"span":[229,2,8]},{"path":[4,14,2,0,1],"span":[229,9,11]},{"path":[4,14,2,0,3],"span":[229,14,15]},{"path":[4,14,2,1],"span":[232,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,14,2,1,4],"span":[232,2,10]},{"path":[4,14,2,1,5],"span":[232,11,17]},{"path":[4,14,2,1,1],"span":[232,18,22]},{"path":[4,14,2,1,3],"span":[232,25,26]},{"path":[4,14,2,2],"span":[234,2,54]},{"path":[4,14,2,2,4],"span":[234,2,10]},{"path":[4,14,2,2,6],"span":[234,11,36]},{"path":[4,14,2,2,1],"span":[234,37,49]},{"path":[4,14,2,2,3],"span":[234,52,53]},{"path":[4,14,2,3],"span":[237,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,14,2,3,4],"span":[237,2,10]},{"path":[4,14,2,3,5],"span":[237,11,17]},{"path":[4,14,2,3,1],"span":[237,18,28]},{"path":[4,14,2,3,3],"span":[237,31,32]},{"path":[4,14,2,4],"span":[239,2,31]},{"path":[4,14,2,4,4],"span":[239,2,10]},{"path":[4,14,2,4,5],"span":[239,11,17]},{"path":[4,14,2,4,1],"span":[239,18,26]},{"path":[4,14,2,4,3],"span":[239,29,30]},{"path":[4,14,2,5],"span":[241,2,43]},{"path":[4,14,2,5,4],"span":[241,2,10]},{"path":[4,14,2,5,5],"span":[241,11,17]},{"path":[4,14,2,5,1],"span":[241,18,38]},{"path":[4,14,2,5,3],"span":[241,41,42]},{"path":[4,15],"span":[245,0,298,1]},{"path":[4,15,1],"span":[245,8,34]},{"path":[4,15,2,0],"span":[246,2,30]},{"path":[4,15,2,0,4],"span":[246,2,10]},{"path":[4,15,2,0,5],"span":[246,11,17]},{"path":[4,15,2,0,1],"span":[246,18,25]},{"path":[4,15,2,0,3],"span":[246,28,29]},{"path":[4,15,2,1],"span":[247,2,34]},{"path":[4,15,2,1,4],"span":[247,2,10]},{"path":[4,15,2,1,5],"span":[247,11,16]},{"path":[4,15,2,1,1],"span":[247,17,29]},{"path":[4,15,2,1,3],"span":[247,32,33]},{"path":[4,15,2,2],"span":[248,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,15,2,2,4],"span":[248,2,10]},{"path":[4,15,2,2,5],"span":[248,11,17]},{"path":[4,15,2,2,1],"span":[248,18,23]},{"path":[4,15,2,2,3],"span":[248,26,27]},{"path":[4,15,2,3],"span":[249,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,15,2,3,4],"span":[249,2,10]},{"path":[4,15,2,3,5],"span":[249,11,17]},{"path":[4,15,2,3,1],"span":[249,18,30]},{"path":[4,15,2,3,3],"span":[249,33,34]},{"path":[4,15,2,4],"span":[250,2,41]},{"path":[4,15,2,4,4],"span":[250,2,10]},{"path":[4,15,2,4,5],"span":[250,11,15]},{"path":[4,15,2,4,1],"span":[250,16,36]},{"path":[4,15,2,4,3],"span":[250,39,40]},{"path":[4,15,2,5],"span":[251,2,35]},{"path":[4,15,2,5,4],"span":[251,2,10]},{"path":[4,15,2,5,5],"span":[251,11,15]},{"path":[4,15,2,5,1],"span":[251,16,30]},{"path":[4,15,2,5,3],"span":[251,33,34]},{"path":[4,15,2,6],"span":[252,2,39]},{"path":[4,15,2,6,4],"span":[252,2,10]},{"path":[4,15,2,6,5],"span":[252,11,15]},{"path":[4,15,2,6,1],"span":[252,16,34]},{"path":[4,15,2,6,3],"span":[252,37,38]},{"path":[4,15,2,7],"span":[254,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,15,2,7,4],"span":[254,2,10]},{"path":[4,15,2,7,5],"span":[254,11,17]},{"path":[4,15,2,7,1],"span":[254,18,25]},{"path":[4,15,2,7,3],"span":[254,28,30]},{"path":[4,15,2,8],"span":[256,2,35]},{"path":[4,15,2,8,4],"span":[256,2,10]},{"path":[4,15,2,8,5],"span":[256,11,17]},{"path":[4,15,2,8,1],"span":[256,18,29]},{"path":[4,15,2,8,3],"span":[256,32,34]},{"path":[4,15,2,9],"span":[257,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,15,2,9,4],"span":[257,2,10]},{"path":[4,15,2,9,5],"span":[257,11,17]},{"path":[4,15,2,9,1],"span":[257,18,30]},{"path":[4,15,2,9,3],"span":[257,33,35]},{"path":[4,15,2,10],"span":[258,2,34]},{"path":[4,15,2,10,4],"span":[258,2,10]},{"path":[4,15,2,10,5],"span":[258,11,17]},{"path":[4,15,2,10,1],"span":[258,18,28]},{"path":[4,15,2,10,3],"span":[258,31,33]},{"path":[4,15,2,11],"span":[259,2,31]},{"path":[4,15,2,11,4],"span":[259,2,10]},{"path":[4,15,2,11,5],"span":[259,11,17]},{"path":[4,15,2,11,1],"span":[259,18,25]},{"path":[4,15,2,11,3],"span":[259,28,30]},{"path":[4,15,2,12],"span":[260,2,32]},{"path":[4,15,2,12,4],"span":[260,2,10]},{"path":[4,15,2,12,5],"span":[260,11,17]},{"path":[4,15,2,12,1],"span":[260,18,26]},{"path":[4,15,2,12,3],"span":[260,29,31]},{"path":[4,15,2,13],"span":[261,2,36]},{"path":[4,15,2,13,4],"span":[261,2,10]},{"path":[4,15,2,13,5],"span":[261,11,17]},{"path":[4,15,2,13,1],"span":[261,18,30]},{"path":[4,15,2,13,3],"span":[261,33,35]},{"path":[4,15,2,14],"span":[262,2,35]},{"path":[4,15,2,14,4],"span":[262,2,10]},{"path":[4,15,2,14,5],"span":[262,11,17]},{"path":[4,15,2,14,1],"span":[262,18,29]},{"path":[4,15,2,14,3],"span":[262,32,34]},{"path":[4,15,2,15],"span":[263,2,39]},{"path":[4,15,2,15,4],"span":[263,2,10]},{"path":[4,15,2,15,5],"span":[263,11,16]},{"path":[4,15,2,15,1],"span":[263,17,33]},{"path":[4,15,2,15,3],"span":[263,36,38]},{"path":[4,15,2,16],"span":[264,2,27]},{"path":[4,15,2,16,4],"span":[264,2,10]},{"path":[4,15,2,16,5],"span":[264,11,15]},{"path":[4,15,2,16,1],"span":[264,16,21]},{"path":[4,15,2,16,3],"span":[264,24,26]},{"path":[4,15,2,17],"span":[265,2,35]},{"path":[4,15,2,17,4],"span":[265,2,10]},{"path":[4,15,2,17,5],"span":[265,11,17]},{"path":[4,15,2,17,1],"span":[265,18,29]},{"path":[4,15,2,17,3],"span":[265,32,34]},{"path":[4,15,2,18],"span":[266,2,52]},{"path":[4,15,2,18,4],"span":[266,2,10]},{"path":[4,15,2,18,5],"span":[266,11,17]},{"path":[4,15,2,18,1],"span":[266,18,46]},{"path":[4,15,2,18,3],"span":[266,49,51]},{"path":[4,15,2,19],"span":[267,2,55]},{"path":[4,15,2,19,4],"span":[267,2,10]},{"path":[4,15,2,19,6],"span":[267,11,36]},{"path":[4,15,2,19,1],"span":[267,37,49]},{"path":[4,15,2,19,3],"span":[267,52,54]},{"path":[4,15,2,20],"span":[268,2,47]},{"path":[4,15,2,20,4],"span":[268,2,10]},{"path":[4,15,2,20,5],"span":[268,11,17]},{"path":[4,15,2,20,1],"span":[268,18,41]},{"path":[4,15,2,20,3],"span":[268,44,46]},{"path":[4,15,2,21],"span":[269,2,48]},{"path":[4,15,2,21,4],"span":[269,2,10]},{"path":[4,15,2,21,5],"span":[269,11,17]},{"path":[4,15,2,21,1],"span":[269,18,42]},{"path":[4,15,2,21,3],"span":[269,45,47]},{"path":[4,15,2,22],"span":[270,2,36]},{"path":[4,15,2,22,4],"span":[270,2,10]},{"path":[4,15,2,22,5],"span":[270,11,17]},{"path":[4,15,2,22,1],"span":[270,18,30]},{"path":[4,15,2,22,3],"span":[270,33,35]},{"path":[4,15,2,23],"span":[271,2,40]},{"path":[4,15,2,23,4],"span":[271,2,10]},{"path":[4,15,2,23,6],"span":[271,11,22]},{"path":[4,15,2,23,1],"span":[271,23,34]},{"path":[4,15,2,23,3],"span":[271,37,39]},{"path":[4,15,2,24],"span":[272,2,45]},{"path":[4,15,2,24,4],"span":[272,2,10]},{"path":[4,15,2,24,6],"span":[272,11,22]},{"path":[4,15,2,24,1],"span":[272,23,39]},{"path":[4,15,2,24,3],"span":[272,42,44]},{"path":[4,15,2,25],"span":[273,2,36]},{"path":[4,15,2,25,4],"span":[273,2,10]},{"path":[4,15,2,25,6],"span":[273,11,22]},{"path":[4,15,2,25,1],"span":[273,23,30]},{"path":[4,15,2,25,3],"span":[273,33,35]},{"path":[4,15,2,26],"span":[274,2,39]},{"path":[4,15,2,26,4],"span":[274,2,10]},{"path":[4,15,2,26,5],"span":[274,11,17]},{"path":[4,15,2,26,1],"span":[274,18,33]},{"path":[4,15,2,26,3],"span":[274,36,38]},{"path":[4,15,2,27],"span":[275,2,43]},{"path":[4,15,2,27,4],"span":[275,2,10]},{"path":[4,15,2,27,5],"span":[275,11,17]},{"path":[4,15,2,27,1],"span":[275,18,37]},{"path":[4,15,2,27,3],"span":[275,40,42]},{"path":[4,15,2,28],"span":[276,2,39]},{"path":[4,15,2,28,4],"span":[276,2,10]},{"path":[4,15,2,28,5],"span":[276,11,17]},{"path":[4,15,2,28,1],"span":[276,18,33]},{"path":[4,15,2,28,3],"span":[276,36,38]},{"path":[4,15,2,29],"span":[277,2,37]},{"path":[4,15,2,29,4],"span":[277,2,10]},{"path":[4,15,2,29,5],"span":[277,11,17]},{"path":[4,15,2,29,1],"span":[277,18,31]},{"path":[4,15,2,29,3],"span":[277,34,36]},{"path":[4,15,2,30],"span":[278,2,50]},{"path":[4,15,2,30,4],"span":[278,2,10]},{"path":[4,15,2,30,5],"span":[278,11,17]},{"path":[4,15,2,30,1],"span":[278,18,44]},{"path":[4,15,2,30,3],"span":[278,47,49]},{"path":[4,15,2,31],"span":[279,2,50]},{"path":[4,15,2,31,4],"span":[279,2,10]},{"path":[4,15,2,31,5],"span":[279,11,17]},{"path":[4,15,2,31,1],"span":[279,18,44]},{"path":[4,15,2,31,3],"span":[279,47,49]},{"path":[4,15,2,32],"span":[280,2,51]},{"path":[4,15,2,32,4],"span":[280,2,10]},{"path":[4,15,2,32,5],"span":[280,11,17]},{"path":[4,15,2,32,1],"span":[280,18,45]},{"path":[4,15,2,32,3],"span":[280,48,50]},{"path":[4,15,2,33],"span":[281,2,30]},{"path":[4,15,2,33,4],"span":[281,2,10]},{"path":[4,15,2,33,5],"span":[281,11,17]},{"path":[4,15,2,33,1],"span":[281,18,24]},{"path":[4,15,2,33,3],"span":[281,27,29]},{"path":[4,15,2,34],"span":[282,2,37]},{"path":[4,15,2,34,4],"span":[282,2,10]},{"path":[4,15,2,34,5],"span":[282,11,17]},{"path":[4,15,2,34,1],"span":[282,18,31]},{"path":[4,15,2,34,3],"span":[282,34,36]},{"path":[4,15,2,35],"span":[283,2,40]},{"path":[4,15,2,35,4],"span":[283,2,10]},{"path":[4,15,2,35,5],"span":[283,11,17]},{"path":[4,15,2,35,1],"span":[283,18,34]},{"path":[4,15,2,35,3],"span":[283,37,39]},{"path":[4,15,2,36],"span":[284,2,49]},{"path":[4,15,2,36,4],"span":[284,2,10]},{"path":[4,15,2,36,5],"span":[284,11,17]},{"path":[4,15,2,36,1],"span":[284,18,43]},{"path":[4,15,2,36,3],"span":[284,46,48]},{"path":[4,15,2,37],"span":[285,2,49]},{"path":[4,15,2,37,4],"span":[285,2,10]},{"path":[4,15,2,37,5],"span":[285,11,17]},{"path":[4,15,2,37,1],"span":[285,18,43]},{"path":[4,15,2,37,3],"span":[285,46,48]},{"path":[4,15,2,38],"span":[286,2,41]},{"path":[4,15,2,38,4],"span":[286,2,10]},{"path":[4,15,2,38,5],"span":[286,11,17]},{"path":[4,15,2,38,1],"span":[286,18,35]},{"path":[4,15,2,38,3],"span":[286,38,40]},{"path":[4,15,2,39],"span":[287,2,45]},{"path":[4,15,2,39,4],"span":[287,2,10]},{"path":[4,15,2,39,5],"span":[287,11,17]},{"path":[4,15,2,39,1],"span":[287,18,39]},{"path":[4,15,2,39,3],"span":[287,42,44]},{"path":[4,15,2,40],"span":[288,2,42]},{"path":[4,15,2,40,4],"span":[288,2,10]},{"path":[4,15,2,40,5],"span":[288,11,17]},{"path":[4,15,2,40,1],"span":[288,18,36]},{"path":[4,15,2,40,3],"span":[288,39,41]},{"path":[4,15,2,41],"span":[289,2,46]},{"path":[4,15,2,41,4],"span":[289,2,10]},{"path":[4,15,2,41,5],"span":[289,11,17]},{"path":[4,15,2,41,1],"span":[289,18,40]},{"path":[4,15,2,41,3],"span":[289,43,45]},{"path":[4,15,2,42],"span":[290,2,41]},{"path":[4,15,2,42,4],"span":[290,2,10]},{"path":[4,15,2,42,6],"span":[290,11,22]},{"path":[4,15,2,42,1],"span":[290,23,35]},{"path":[4,15,2,42,3],"span":[290,38,40]},{"path":[4,15,2,43],"span":[291,2,34]},{"path":[4,15,2,43,4],"span":[291,2,10]},{"path":[4,15,2,43,5],"span":[291,11,17]},{"path":[4,15,2,43,1],"span":[291,18,28]},{"path":[4,15,2,43,3],"span":[291,31,33]},{"path":[4,15,2,44],"span":[292,2,36]},{"path":[4,15,2,44,4],"span":[292,2,10]},{"path":[4,15,2,44,5],"span":[292,11,17]},{"path":[4,15,2,44,1],"span":[292,18,30]},{"path":[4,15,2,44,3],"span":[292,33,35]},{"path":[4,15,2,45],"span":[293,2,40]},{"path":[4,15,2,45,4],"span":[293,2,10]},{"path":[4,15,2,45,5],"span":[293,11,17]},{"path":[4,15,2,45,1],"span":[293,18,34]},{"path":[4,15,2,45,3],"span":[293,37,39]},{"path":[4,15,2,46],"span":[294,2,66]},{"path":[4,15,2,46,4],"span":[294,2,10]},{"path":[4,15,2,46,5],"span":[294,11,15]},{"path":[4,15,2,46,1],"span":[294,16,60]},{"path":[4,15,2,46,3],"span":[294,63,65]},{"path":[4,15,2,47],"span":[295,2,60]},{"path":[4,15,2,47,4],"span":[295,2,10]},{"path":[4,15,2,47,5],"span":[295,11,15]},{"path":[4,15,2,47,1],"span":[295,16,54]},{"path":[4,15,2,47,3],"span":[295,57,59]},{"path":[4,15,2,48],"span":[296,2,55]},{"path":[4,15,2,48,4],"span":[296,2,10]},{"path":[4,15,2,48,5],"span":[296,11,15]},{"path":[4,15,2,48,1],"span":[296,16,49]},{"path":[4,15,2,48,3],"span":[296,52,54]},{"path":[4,15,2,49],"span":[297,2,64]},{"path":[4,15,2,49,4],"span":[297,2,10]},{"path":[4,15,2,49,5],"span":[297,11,17]},{"path":[4,15,2,49,1],"span":[297,18,58]},{"path":[4,15,2,49,3],"span":[297,61,63]},{"path":[4,16],"span":[301,0,304,1],"leadingComments":" Network Interface cards "},{"path":[4,16,1],"span":[301,8,25]},{"path":[4,16,2,0],"span":[302,2,42]},{"path":[4,16,2,0,6],"span":[302,2,27]},{"path":[4,16,2,0,1],"span":[302,28,37]},{"path":[4,16,2,0,3],"span":[302,40,41]},{"path":[4,16,2,1],"span":[303,2,42]},{"path":[4,16,2,1,4],"span":[303,2,10]},{"path":[4,16,2,1,6],"span":[303,11,27]},{"path":[4,16,2,1,1],"span":[303,28,37]},{"path":[4,16,2,1,3],"span":[303,40,41]},{"path":[4,17],"span":[306,0,329,1]},{"path":[4,17,1],"span":[306,8,24]},{"path":[4,17,2,0],"span":[307,2,18]},{"path":[4,17,2,0,5],"span":[307,2,8]},{"path":[4,17,2,0,1],"span":[307,9,13]},{"path":[4,17,2,0,3],"span":[307,16,17]},{"path":[4,17,2,1],"span":[308,2,18]},{"path":[4,17,2,1,5],"span":[308,2,8]},{"path":[4,17,2,1,1],"span":[308,9,13]},{"path":[4,17,2,1,3],"span":[308,16,17]},{"path":[4,17,2,2],"span":[309,2,22]},{"path":[4,17,2,2,5],"span":[309,2,8]},{"path":[4,17,2,2,1],"span":[309,9,17]},{"path":[4,17,2,2,3],"span":[309,20,21]},{"path":[4,17,2,3],"span":[311,2,25]},{"path":[4,17,2,3,4],"span":[311,2,10]},{"path":[4,17,2,3,5],"span":[311,11,17]},{"path":[4,17,2,3,1],"span":[311,18,20]},{"path":[4,17,2,3,3],"span":[311,23,24]},{"path":[4,17,2,4],"span":[313,2,26]},{"path":[4,17,2,4,4],"span":[313,2,10]},{"path":[4,17,2,4,5],"span":[313,11,17]},{"path":[4,17,2,4,1],"span":[313,18,21]},{"path":[4,17,2,4,3],"span":[313,24,25]},{"path":[4,17,2,5],"span":[315,2,33]},{"path":[4,17,2,5,4],"span":[315,2,10]},{"path":[4,17,2,5,5],"span":[315,11,15]},{"path":[4,17,2,5,1],"span":[315,16,28]},{"path":[4,17,2,5,3],"span":[315,31,32]},{"path":[4,17,2,6],"span":[316,2,37]},{"path":[4,17,2,6,4],"span":[316,2,10]},{"path":[4,17,2,6,5],"span":[316,11,17]},{"path":[4,17,2,6,1],"span":[316,18,32]},{"path":[4,17,2,6,3],"span":[316,35,36]},{"path":[4,17,2,7],"span":[318,2,31]},{"path":[4,17,2,7,4],"span":[318,2,10]},{"path":[4,17,2,7,6],"span":[318,11,23]},{"path":[4,17,2,7,1],"span":[318,24,26]},{"path":[4,17,2,7,3],"span":[318,29,30]},{"path":[4,17,2,8],"span":[320,2,33]},{"path":[4,17,2,8,4],"span":[320,2,10]},{"path":[4,17,2,8,5],"span":[320,11,17]},{"path":[4,17,2,8,1],"span":[320,18,28]},{"path":[4,17,2,8,3],"span":[320,31,32]},{"path":[4,17,2,9],"span":[321,2,35]},{"path":[4,17,2,9,4],"span":[321,2,10]},{"path":[4,17,2,9,5],"span":[321,11,17]},{"path":[4,17,2,9,1],"span":[321,18,29]},{"path":[4,17,2,9,3],"span":[321,32,34]},{"path":[4,17,2,10],"span":[323,2,34]},{"path":[4,17,2,10,4],"span":[323,2,10]},{"path":[4,17,2,10,5],"span":[323,11,17]},{"path":[4,17,2,10,1],"span":[323,18,28]},{"path":[4,17,2,10,3],"span":[323,31,33]},{"path":[4,17,2,11],"span":[324,2,37]},{"path":[4,17,2,11,4],"span":[324,2,10]},{"path":[4,17,2,11,5],"span":[324,11,17]},{"path":[4,17,2,11,1],"span":[324,18,31]},{"path":[4,17,2,11,3],"span":[324,34,36]},{"path":[4,17,2,12],"span":[325,2,54]},{"path":[4,17,2,12,4],"span":[325,2,10]},{"path":[4,17,2,12,5],"span":[325,11,17]},{"path":[4,17,2,12,1],"span":[325,18,48]},{"path":[4,17,2,12,3],"span":[325,51,53]},{"path":[4,17,2,13],"span":[327,2,36]},{"path":[4,17,2,13,4],"span":[327,2,10]},{"path":[4,17,2,13,5],"span":[327,11,17]},{"path":[4,17,2,13,1],"span":[327,18,30]},{"path":[4,17,2,13,3],"span":[327,33,35]},{"path":[4,17,2,14],"span":[328,2,37]},{"path":[4,17,2,14,4],"span":[328,2,10]},{"path":[4,17,2,14,5],"span":[328,11,17]},{"path":[4,17,2,14,1],"span":[328,18,31]},{"path":[4,17,2,14,3],"span":[328,34,36]},{"path":[4,18],"span":[332,0,335,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,18,1],"span":[332,8,20]},{"path":[4,18,2,0],"span":[333,2,16]},{"path":[4,18,2,0,5],"span":[333,2,8]},{"path":[4,18,2,0,1],"span":[333,9,11]},{"path":[4,18,2,0,3],"span":[333,14,15]},{"path":[4,18,2,1],"span":[334,2,20]},{"path":[4,18,2,1,5],"span":[334,2,8]},{"path":[4,18,2,1,1],"span":[334,9,15]},{"path":[4,18,2,1,3],"span":[334,18,19]},{"path":[4,19],"span":[338,0,379,1],"leadingComments":" Processor *"},{"path":[4,19,1],"span":[338,8,17]},{"path":[4,19,2,0],"span":[339,2,21]},{"path":[4,19,2,0,5],"span":[339,2,8]},{"path":[4,19,2,0,1],"span":[339,10,14]},{"path":[4,19,2,0,3],"span":[339,17,18]},{"path":[4,19,2,1],"span":[340,2,36],"trailingComments":" Linux-only\n"},{"path":[4,19,2,1,4],"span":[340,2,10]},{"path":[4,19,2,1,5],"span":[340,11,17]},{"path":[4,19,2,1,1],"span":[340,18,31]},{"path":[4,19,2,1,3],"span":[340,34,35]},{"path":[4,19,2,2],"span":[341,2,35],"trailingComments":" Windows-only\n"},{"path":[4,19,2,2,4],"span":[341,2,10]},{"path":[4,19,2,2,5],"span":[341,11,16]},{"path":[4,19,2,2,1],"span":[341,17,30]},{"path":[4,19,2,2,3],"span":[341,33,34]},{"path":[4,19,2,3],"span":[342,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,19,2,3,4],"span":[342,2,10]},{"path":[4,19,2,3,6],"span":[342,11,22]},{"path":[4,19,2,3,1],"span":[342,23,35]},{"path":[4,19,2,3,3],"span":[342,38,39]},{"path":[4,19,2,4],"span":[343,2,34],"trailingComments":" Windows-only\n"},{"path":[4,19,2,4,4],"span":[343,2,10]},{"path":[4,19,2,4,5],"span":[343,11,16]},{"path":[4,19,2,4,1],"span":[343,17,29]},{"path":[4,19,2,4,3],"span":[343,32,33]},{"path":[4,19,2,5],"span":[344,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,19,2,5,4],"span":[344,2,10]},{"path":[4,19,2,5,5],"span":[344,11,17]},{"path":[4,19,2,5,1],"span":[344,18,27]},{"path":[4,19,2,5,3],"span":[344,30,31]},{"path":[4,19,2,6],"span":[345,2,33],"trailingComments":" Linux-only\n"},{"path":[4,19,2,6,4],"span":[345,2,10]},{"path":[4,19,2,6,5],"span":[345,11,17]},{"path":[4,19,2,6,1],"span":[345,18,28]},{"path":[4,19,2,6,3],"span":[345,31,32]},{"path":[4,19,2,7],"span":[346,2,30],"trailingComments":" Windows-only\n"},{"path":[4,19,2,7,4],"span":[346,2,10]},{"path":[4,19,2,7,5],"span":[346,11,17]},{"path":[4,19,2,7,1],"span":[346,18,25]},{"path":[4,19,2,7,3],"span":[346,28,29]},{"path":[4,19,2,8],"span":[347,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,19,2,8,4],"span":[347,2,10]},{"path":[4,19,2,8,5],"span":[347,11,16]},{"path":[4,19,2,8,1],"span":[347,17,36]},{"path":[4,19,2,8,3],"span":[347,39,40]},{"path":[4,19,2,9],"span":[348,2,33],"trailingComments":" Windows-only\n"},{"path":[4,19,2,9,4],"span":[348,2,10]},{"path":[4,19,2,9,5],"span":[348,11,16]},{"path":[4,19,2,9,1],"span":[348,17,27]},{"path":[4,19,2,9,3],"span":[348,30,32]},{"path":[4,19,2,10],"span":[349,2,33],"trailingComments":" Windows-only\n"},{"path":[4,19,2,10,4],"span":[349,2,10]},{"path":[4,19,2,10,5],"span":[349,11,17]},{"path":[4,19,2,10,1],"span":[349,18,27]},{"path":[4,19,2,10,3],"span":[349,30,32]},{"path":[4,19,2,11],"span":[350,2,41],"trailingComments":" Windows-only\n"},{"path":[4,19,2,11,4],"span":[350,2,10]},{"path":[4,19,2,11,5],"span":[350,11,16]},{"path":[4,19,2,11,1],"span":[350,17,35]},{"path":[4,19,2,11,3],"span":[350,38,40]},{"path":[4,19,2,12],"span":[351,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,19,2,12,4],"span":[351,2,10]},{"path":[4,19,2,12,6],"span":[351,11,22]},{"path":[4,19,2,12,1],"span":[351,23,29]},{"path":[4,19,2,12,3],"span":[351,32,34]},{"path":[4,19,2,13],"span":[352,2,41],"trailingComments":" Linux-only\n"},{"path":[4,19,2,13,4],"span":[352,2,10]},{"path":[4,19,2,13,5],"span":[352,11,17]},{"path":[4,19,2,13,1],"span":[352,18,35]},{"path":[4,19,2,13,3],"span":[352,38,40]},{"path":[4,19,2,14],"span":[353,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,19,2,14,4],"span":[353,2,10]},{"path":[4,19,2,14,5],"span":[353,11,16]},{"path":[4,19,2,14,1],"span":[353,17,34]},{"path":[4,19,2,14,3],"span":[353,37,39]},{"path":[4,19,2,15],"span":[354,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,19,2,15,4],"span":[354,2,10]},{"path":[4,19,2,15,5],"span":[354,11,16]},{"path":[4,19,2,15,1],"span":[354,17,34]},{"path":[4,19,2,15,3],"span":[354,37,39]},{"path":[4,19,2,16],"span":[355,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,19,2,16,4],"span":[355,2,10]},{"path":[4,19,2,16,5],"span":[355,11,16]},{"path":[4,19,2,16,1],"span":[355,17,33]},{"path":[4,19,2,16,3],"span":[355,36,38]},{"path":[4,19,2,17],"span":[356,2,41],"trailingComments":" Windows-only\n"},{"path":[4,19,2,17,4],"span":[356,2,10]},{"path":[4,19,2,17,5],"span":[356,11,16]},{"path":[4,19,2,17,1],"span":[356,17,35]},{"path":[4,19,2,17,3],"span":[356,38,40]},{"path":[4,19,2,18],"span":[357,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,19,2,18,4],"span":[357,2,10]},{"path":[4,19,2,18,5],"span":[357,11,16]},{"path":[4,19,2,18,1],"span":[357,17,33]},{"path":[4,19,2,18,3],"span":[357,36,38]},{"path":[4,19,2,19],"span":[358,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,19,2,19,4],"span":[358,2,10]},{"path":[4,19,2,19,5],"span":[358,11,16]},{"path":[4,19,2,19,1],"span":[358,17,22]},{"path":[4,19,2,19,3],"span":[358,25,27]},{"path":[4,19,2,20],"span":[359,2,44]},{"path":[4,19,2,20,4],"span":[359,2,10]},{"path":[4,19,2,20,5],"span":[359,11,16]},{"path":[4,19,2,20,1],"span":[359,17,36]},{"path":[4,19,2,20,3],"span":[359,39,41]},{"path":[4,19,2,21],"span":[360,2,38]},{"path":[4,19,2,21,4],"span":[360,2,10]},{"path":[4,19,2,21,5],"span":[360,11,17]},{"path":[4,19,2,21,1],"span":[360,18,30]},{"path":[4,19,2,21,3],"span":[360,33,35]},{"path":[4,19,2,22],"span":[361,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,19,2,22,4],"span":[361,2,10]},{"path":[4,19,2,22,5],"span":[361,11,16]},{"path":[4,19,2,22,1],"span":[361,17,36]},{"path":[4,19,2,22,3],"span":[361,39,41]},{"path":[4,19,2,23],"span":[362,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,19,2,23,4],"span":[362,2,10]},{"path":[4,19,2,23,5],"span":[362,11,16]},{"path":[4,19,2,23,1],"span":[362,17,36]},{"path":[4,19,2,23,3],"span":[362,39,41]},{"path":[4,19,2,24],"span":[363,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,19,2,24,4],"span":[363,2,10]},{"path":[4,19,2,24,5],"span":[363,11,16]},{"path":[4,19,2,24,1],"span":[363,17,29]},{"path":[4,19,2,24,3],"span":[363,32,34]},{"path":[4,19,2,25],"span":[364,2,32],"trailingComments":" Linux-only\n"},{"path":[4,19,2,25,4],"span":[364,2,10]},{"path":[4,19,2,25,5],"span":[364,11,17]},{"path":[4,19,2,25,1],"span":[364,18,26]},{"path":[4,19,2,25,3],"span":[364,29,31]},{"path":[4,19,2,26],"span":[365,2,45]},{"path":[4,19,2,26,4],"span":[365,2,10]},{"path":[4,19,2,26,5],"span":[365,11,16]},{"path":[4,19,2,26,1],"span":[365,17,37]},{"path":[4,19,2,26,3],"span":[365,40,42]},{"path":[4,19,2,27],"span":[366,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,19,2,27,4],"span":[366,2,10]},{"path":[4,19,2,27,5],"span":[366,11,17]},{"path":[4,19,2,27,1],"span":[366,18,30]},{"path":[4,19,2,27,3],"span":[366,33,35]},{"path":[4,19,2,28],"span":[367,2,43],"trailingComments":" Windows-only\n"},{"path":[4,19,2,28,4],"span":[367,2,10]},{"path":[4,19,2,28,6],"span":[367,11,22]},{"path":[4,19,2,28,1],"span":[367,23,37]},{"path":[4,19,2,28,3],"span":[367,40,42]},{"path":[4,19,2,29],"span":[368,2,31],"trailingComments":" Windows-only\n"},{"path":[4,19,2,29,4],"span":[368,2,10]},{"path":[4,19,2,29,5],"span":[368,11,16]},{"path":[4,19,2,29,1],"span":[368,17,25]},{"path":[4,19,2,29,3],"span":[368,28,30]},{"path":[4,19,2,30],"span":[369,2,42],"trailingComments":" Windows-only\n"},{"path":[4,19,2,30,4],"span":[369,2,10]},{"path":[4,19,2,30,5],"span":[369,11,17]},{"path":[4,19,2,30,1],"span":[369,18,36]},{"path":[4,19,2,30,3],"span":[369,39,41]},{"path":[4,19,2,31],"span":[370,2,31],"trailingComments":" Linux-only\n"},{"path":[4,19,2,31,4],"span":[370,2,10]},{"path":[4,19,2,31,5],"span":[370,11,16]},{"path":[4,19,2,31,1],"span":[370,18,25]},{"path":[4,19,2,31,3],"span":[370,28,30]},{"path":[4,19,2,32],"span":[371,2,35],"trailingComments":" Windows-only\n"},{"path":[4,19,2,32,4],"span":[371,2,10]},{"path":[4,19,2,32,6],"span":[371,11,22]},{"path":[4,19,2,32,1],"span":[371,23,29]},{"path":[4,19,2,32,3],"span":[371,32,34]},{"path":[4,19,2,33],"span":[372,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,19,2,33,4],"span":[372,2,10]},{"path":[4,19,2,33,5],"span":[372,11,16]},{"path":[4,19,2,33,1],"span":[372,17,25]},{"path":[4,19,2,33,3],"span":[372,28,30]},{"path":[4,19,2,34],"span":[373,2,54],"trailingComments":" Linux-only\n"},{"path":[4,19,2,34,4],"span":[373,2,10]},{"path":[4,19,2,34,5],"span":[373,11,16]},{"path":[4,19,2,34,1],"span":[373,17,48]},{"path":[4,19,2,34,3],"span":[373,51,53]},{"path":[4,19,2,35],"span":[374,2,33],"trailingComments":" Windows-only\n"},{"path":[4,19,2,35,4],"span":[374,2,10]},{"path":[4,19,2,35,5],"span":[374,11,17]},{"path":[4,19,2,35,1],"span":[374,18,27]},{"path":[4,19,2,35,3],"span":[374,30,32]},{"path":[4,19,2,36],"span":[375,2,43],"trailingComments":" Windows-only\n"},{"path":[4,19,2,36,4],"span":[375,2,10]},{"path":[4,19,2,36,6],"span":[375,11,22]},{"path":[4,19,2,36,1],"span":[375,23,37]},{"path":[4,19,2,36,3],"span":[375,40,42]},{"path":[4,19,2,37],"span":[376,2,31],"trailingComments":" Windows-only\n"},{"path":[4,19,2,37,4],"span":[376,2,10]},{"path":[4,19,2,37,5],"span":[376,11,17]},{"path":[4,19,2,37,1],"span":[376,18,25]},{"path":[4,19,2,37,3],"span":[376,28,30]},{"path":[4,19,2,38],"span":[377,2,38],"trailingComments":" Linux-only\n"},{"path":[4,19,2,38,4],"span":[377,2,10]},{"path":[4,19,2,38,5],"span":[377,11,17]},{"path":[4,19,2,38,1],"span":[377,18,32]},{"path":[4,19,2,38,3],"span":[377,35,37]},{"path":[4,19,2,39],"span":[378,2,49],"trailingComments":" Windows-only\n"},{"path":[4,19,2,39,4],"span":[378,2,10]},{"path":[4,19,2,39,6],"span":[378,11,22]},{"path":[4,19,2,39,1],"span":[378,23,43]},{"path":[4,19,2,39,3],"span":[378,46,48]},{"path":[4,20],"span":[385,0,388,1],"leadingComments":"\n A Mapped value is a numeric field that can optionally have a text looked up value.\n Typical in WMI fields.\n"},{"path":[4,20,1],"span":[385,8,19]},{"path":[4,20,2,0],"span":[386,2,18]},{"path":[4,20,2,0,5],"span":[386,2,7]},{"path":[4,20,2,0,1],"span":[386,8,13]},{"path":[4,20,2,0,3],"span":[386,16,17]},{"path":[4,20,2,1],"span":[387,2,27]},{"path":[4,20,2,1,4],"span":[387,2,10]},{"path":[4,20,2,1,5],"span":[387,11,17]},{"path":[4,20,2,1,1],"span":[387,18,22]},{"path":[4,20,2,1,3],"span":[387,25,26]},{"path":[4,21],"span":[391,0,394,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,21,1],"span":[391,8,24]},{"path":[4,21,2,0],"span":[392,2,42]},{"path":[4,21,2,0,6],"span":[392,2,27]},{"path":[4,21,2,0,1],"span":[392,28,37]},{"path":[4,21,2,0,3],"span":[392,40,41]},{"path":[4,21,2,1],"span":[393,2,31]},{"path":[4,21,2,1,4],"span":[393,2,10]},{"path":[4,21,2,1,6],"span":[393,11,18]},{"path":[4,21,2,1,1],"span":[393,19,26]},{"path":[4,21,2,1,3],"span":[393,29,30]},{"path":[4,22],"span":[398,0,414,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,22,1],"span":[398,8,15]},{"path":[4,22,2,0],"span":[400,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,22,2,0,4],"span":[400,2,10]},{"path":[4,22,2,0,5],"span":[400,11,16]},{"path":[4,22,2,0,1],"span":[400,17,19]},{"path":[4,22,2,0,3],"span":[400,22,23]},{"path":[4,22,2,1],"span":[403,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,22,2,1,4],"span":[403,2,10]},{"path":[4,22,2,1,5],"span":[403,11,16]},{"path":[4,22,2,1,1],"span":[403,17,24]},{"path":[4,22,2,1,3],"span":[403,27,28]},{"path":[4,22,2,2],"span":[405,2,23]},{"path":[4,22,2,2,5],"span":[405,2,8]},{"path":[4,22,2,2,1],"span":[405,9,18]},{"path":[4,22,2,2,3],"span":[405,21,22]},{"path":[4,22,2,3],"span":[406,2,24]},{"path":[4,22,2,3,5],"span":[406,2,8]},{"path":[4,22,2,3,1],"span":[406,9,19]},{"path":[4,22,2,3,3],"span":[406,22,23]},{"path":[4,22,2,4],"span":[408,2,36]},{"path":[4,22,2,4,4],"span":[408,2,10]},{"path":[4,22,2,4,5],"span":[408,11,17]},{"path":[4,22,2,4,1],"span":[408,18,31]},{"path":[4,22,2,4,3],"span":[408,34,35]},{"path":[4,22,2,5],"span":[409,2,50]},{"path":[4,22,2,5,6],"span":[409,2,27]},{"path":[4,22,2,5,1],"span":[409,28,45]},{"path":[4,22,2,5,3],"span":[409,48,49]},{"path":[4,22,8,0],"span":[411,2,413,3]},{"path":[4,22,8,0,1],"span":[411,8,12]},{"path":[4,22,2,6],"span":[412,4,36]},{"path":[4,22,2,6,6],"span":[412,4,22]},{"path":[4,22,2,6,1],"span":[412,23,30]},{"path":[4,22,2,6,3],"span":[412,33,35]},{"path":[4,23],"span":[416,0,425,1]},{"path":[4,23,1],"span":[416,8,26]},{"path":[4,23,2,0],"span":[417,2,19]},{"path":[4,23,2,0,5],"span":[417,2,8]},{"path":[4,23,2,0,1],"span":[417,9,14]},{"path":[4,23,2,0,3],"span":[417,17,18]},{"path":[4,23,2,1],"span":[418,2,36]},{"path":[4,23,2,1,4],"span":[418,2,10]},{"path":[4,23,2,1,5],"span":[418,11,17]},{"path":[4,23,2,1,1],"span":[418,18,31]},{"path":[4,23,2,1,3],"span":[418,34,35]},{"path":[4,23,2,2],"span":[419,2,36]},{"path":[4,23,2,2,4],"span":[419,2,10]},{"path":[4,23,2,2,5],"span":[419,11,17]},{"path":[4,23,2,2,1],"span":[419,18,31]},{"path":[4,23,2,2,3],"span":[419,34,35]},{"path":[4,23,2,3],"span":[420,2,33]},{"path":[4,23,2,3,4],"span":[420,2,10]},{"path":[4,23,2,3,5],"span":[420,11,17]},{"path":[4,23,2,3,1],"span":[420,18,28]},{"path":[4,23,2,3,3],"span":[420,31,32]},{"path":[4,23,2,4],"span":[421,2,40]},{"path":[4,23,2,4,4],"span":[421,2,10]},{"path":[4,23,2,4,5],"span":[421,11,17]},{"path":[4,23,2,4,1],"span":[421,18,35]},{"path":[4,23,2,4,3],"span":[421,38,39]},{"path":[4,23,2,5],"span":[422,2,39]},{"path":[4,23,2,5,4],"span":[422,2,10]},{"path":[4,23,2,5,5],"span":[422,11,17]},{"path":[4,23,2,5,1],"span":[422,18,34]},{"path":[4,23,2,5,3],"span":[422,37,38]},{"path":[4,23,2,6],"span":[423,2,59]},{"path":[4,23,2,6,4],"span":[423,2,10]},{"path":[4,23,2,6,6],"span":[423,11,36]},{"path":[4,23,2,6,1],"span":[423,37,54]},{"path":[4,23,2,6,3],"span":[423,57,58]},{"path":[4,23,2,7],"span":[424,2,32]},{"path":[4,23,2,7,4],"span":[424,2,10]},{"path":[4,23,2,7,5],"span":[424,11,17]},{"path":[4,23,2,7,1],"span":[424,18,27]},{"path":[4,23,2,7,3],"span":[424,30,31]},{"path":[4,24],"span":[434,0,437,1],"leadingComments":"\n Software Inventory with list of installed SW.\n Sources:\n - com.lansweeper.discovery.sensor.windows.v1.WindowsSoftwareInfo: section on Windows WMI/Local/SCCM\n - com.lansweeper.discovery.sensor.mac.v1.MacSoftware: section on Mac via SSH or local\n - com.lansweeper.discovery.sensor.unix.v1.Software: section Linux/Unix via SSH or local\n"},{"path":[4,24,1],"span":[434,8,25]},{"path":[4,24,2,0],"span":[435,2,42]},{"path":[4,24,2,0,6],"span":[435,2,27]},{"path":[4,24,2,0,1],"span":[435,28,37]},{"path":[4,24,2,0,3],"span":[435,40,41]},{"path":[4,24,2,1],"span":[436,2,33]},{"path":[4,24,2,1,4],"span":[436,2,10]},{"path":[4,24,2,1,6],"span":[436,11,19]},{"path":[4,24,2,1,1],"span":[436,20,28]},{"path":[4,24,2,1,3],"span":[436,31,32]},{"path":[4,25],"span":[446,0,477,1],"leadingComments":"\n Software definition: normalized and with link to raw.\n Translated and enriched from:\n - com.lansweeper.discovery.sensor.windows.v1.SoftwareInfo\n - com.lansweeper.discovery.sensor.mac.v1.Software\n - com.lansweeper.discovery.sensor.unix.v1.SoftwareEntry\n"},{"path":[4,25,1],"span":[446,8,16]},{"path":[4,25,2,0],"span":[448,2,26]},{"path":[4,25,2,0,4],"span":[448,2,10]},{"path":[4,25,2,0,5],"span":[448,11,16]},{"path":[4,25,2,0,1],"span":[448,17,21]},{"path":[4,25,2,0,3],"span":[448,24,25]},{"path":[4,25,2,1],"span":[449,2,29]},{"path":[4,25,2,1,4],"span":[449,2,10]},{"path":[4,25,2,1,5],"span":[449,11,16]},{"path":[4,25,2,1,1],"span":[449,17,24]},{"path":[4,25,2,1,3],"span":[449,27,28]},{"path":[4,25,2,2],"span":[450,2,28]},{"path":[4,25,2,2,4],"span":[450,2,10]},{"path":[4,25,2,2,5],"span":[450,11,16]},{"path":[4,25,2,2,1],"span":[450,17,23]},{"path":[4,25,2,2,3],"span":[450,26,27]},{"path":[4,25,2,3],"span":[453,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,25,2,3,4],"span":[453,2,10]},{"path":[4,25,2,3,5],"span":[453,11,16]},{"path":[4,25,2,3,1],"span":[453,17,24]},{"path":[4,25,2,3,3],"span":[453,27,28]},{"path":[4,25,2,4],"span":[456,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,25,2,4,4],"span":[456,2,10]},{"path":[4,25,2,4,5],"span":[456,11,16]},{"path":[4,25,2,4,1],"span":[456,17,22]},{"path":[4,25,2,4,3],"span":[456,25,26]},{"path":[4,25,2,5],"span":[459,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,25,2,5,4],"span":[459,2,10]},{"path":[4,25,2,5,5],"span":[459,11,16]},{"path":[4,25,2,5,1],"span":[459,17,26]},{"path":[4,25,2,5,3],"span":[459,29,30]},{"path":[4,25,2,6],"span":[461,2,32]},{"path":[4,25,2,6,4],"span":[461,2,10]},{"path":[4,25,2,6,5],"span":[461,11,17]},{"path":[4,25,2,6,1],"span":[461,18,27]},{"path":[4,25,2,6,3],"span":[461,30,31]},{"path":[4,25,2,7],"span":[462,2,31]},{"path":[4,25,2,7,4],"span":[462,2,10]},{"path":[4,25,2,7,5],"span":[462,11,17]},{"path":[4,25,2,7,1],"span":[462,18,26]},{"path":[4,25,2,7,3],"span":[462,29,30]},{"path":[4,25,2,8],"span":[463,2,32]},{"path":[4,25,2,8,4],"span":[463,2,10]},{"path":[4,25,2,8,5],"span":[463,11,17]},{"path":[4,25,2,8,1],"span":[463,18,27]},{"path":[4,25,2,8,3],"span":[463,30,31]},{"path":[4,25,2,9],"span":[464,2,28]},{"path":[4,25,2,9,4],"span":[464,2,10]},{"path":[4,25,2,9,5],"span":[464,11,17]},{"path":[4,25,2,9,1],"span":[464,18,22]},{"path":[4,25,2,9,3],"span":[464,25,27]},{"path":[4,25,2,10],"span":[465,2,31]},{"path":[4,25,2,10,4],"span":[465,2,10]},{"path":[4,25,2,10,5],"span":[465,11,17]},{"path":[4,25,2,10,1],"span":[465,18,25]},{"path":[4,25,2,10,3],"span":[465,28,30]},{"path":[4,25,2,11],"span":[466,2,34]},{"path":[4,25,2,11,4],"span":[466,2,10]},{"path":[4,25,2,11,5],"span":[466,11,17]},{"path":[4,25,2,11,1],"span":[466,18,28]},{"path":[4,25,2,11,3],"span":[466,31,33]},{"path":[4,25,2,12],"span":[467,2,31]},{"path":[4,25,2,12,4],"span":[467,2,10]},{"path":[4,25,2,12,5],"span":[467,11,17]},{"path":[4,25,2,12,1],"span":[467,18,25]},{"path":[4,25,2,12,3],"span":[467,28,30]},{"path":[4,25,2,13],"span":[468,2,29]},{"path":[4,25,2,13,4],"span":[468,2,10]},{"path":[4,25,2,13,5],"span":[468,11,17]},{"path":[4,25,2,13,1],"span":[468,18,23]},{"path":[4,25,2,13,3],"span":[468,26,28]},{"path":[4,25,2,14],"span":[469,2,28]},{"path":[4,25,2,14,4],"span":[469,2,10]},{"path":[4,25,2,14,5],"span":[469,11,17]},{"path":[4,25,2,14,1],"span":[469,18,22]},{"path":[4,25,2,14,3],"span":[469,25,27]},{"path":[4,25,2,15],"span":[470,2,28]},{"path":[4,25,2,15,4],"span":[470,2,10]},{"path":[4,25,2,15,5],"span":[470,11,17]},{"path":[4,25,2,15,1],"span":[470,18,22]},{"path":[4,25,2,15,3],"span":[470,25,27]},{"path":[4,25,2,16],"span":[472,2,27]},{"path":[4,25,2,16,4],"span":[472,2,10]},{"path":[4,25,2,16,5],"span":[472,11,17]},{"path":[4,25,2,16,1],"span":[472,18,21]},{"path":[4,25,2,16,3],"span":[472,24,26]},{"path":[4,25,2,17],"span":[474,2,23]},{"path":[4,25,2,17,6],"span":[474,2,13]},{"path":[4,25,2,17,1],"span":[474,14,17]},{"path":[4,25,2,17,3],"span":[474,20,22]},{"path":[4,25,2,18],"span":[475,2,32],"trailingComments":" optional raw hash of SW\n"},{"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,26]},{"path":[4,25,2,18,3],"span":[475,29,31]},{"path":[4,25,2,19],"span":[476,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,25,2,19,4],"span":[476,2,10]},{"path":[4,25,2,19,5],"span":[476,11,17]},{"path":[4,25,2,19,1],"span":[476,18,26]},{"path":[4,25,2,19,3],"span":[476,29,31]},{"path":[4,26],"span":[482,0,496,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,26,1],"span":[482,8,19]},{"path":[4,26,2,0],"span":[483,2,18]},{"path":[4,26,2,0,5],"span":[483,2,8]},{"path":[4,26,2,0,1],"span":[483,9,13]},{"path":[4,26,2,0,3],"span":[483,16,17]},{"path":[4,26,2,1],"span":[485,2,29]},{"path":[4,26,2,1,4],"span":[485,2,10]},{"path":[4,26,2,1,5],"span":[485,11,17]},{"path":[4,26,2,1,1],"span":[485,18,24]},{"path":[4,26,2,1,3],"span":[485,27,28]},{"path":[4,26,2,2],"span":[486,2,30]},{"path":[4,26,2,2,4],"span":[486,2,10]},{"path":[4,26,2,2,5],"span":[486,11,17]},{"path":[4,26,2,2,1],"span":[486,18,25]},{"path":[4,26,2,2,3],"span":[486,28,29]},{"path":[4,26,2,3],"span":[487,2,27]},{"path":[4,26,2,3,4],"span":[487,2,10]},{"path":[4,26,2,3,5],"span":[487,11,17]},{"path":[4,26,2,3,1],"span":[487,18,22]},{"path":[4,26,2,3,3],"span":[487,25,26]},{"path":[4,26,2,4],"span":[488,2,31]},{"path":[4,26,2,4,4],"span":[488,2,10]},{"path":[4,26,2,4,5],"span":[488,11,17]},{"path":[4,26,2,4,1],"span":[488,18,26]},{"path":[4,26,2,4,3],"span":[488,29,30]},{"path":[4,26,2,5],"span":[489,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,26,2,5,4],"span":[489,2,10]},{"path":[4,26,2,5,5],"span":[489,11,17]},{"path":[4,26,2,5,1],"span":[489,18,22]},{"path":[4,26,2,5,3],"span":[489,25,26]},{"path":[4,26,2,6],"span":[490,2,54]},{"path":[4,26,2,6,4],"span":[490,2,10]},{"path":[4,26,2,6,6],"span":[490,11,36]},{"path":[4,26,2,6,1],"span":[490,37,49]},{"path":[4,26,2,6,3],"span":[490,52,53]},{"path":[4,26,2,7],"span":[491,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,26,2,7,4],"span":[491,2,10]},{"path":[4,26,2,7,5],"span":[491,11,17]},{"path":[4,26,2,7,1],"span":[491,18,29]},{"path":[4,26,2,7,3],"span":[491,32,33]},{"path":[4,26,2,8],"span":[493,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,26,2,8,4],"span":[493,2,10]},{"path":[4,26,2,8,5],"span":[493,11,17]},{"path":[4,26,2,8,1],"span":[493,18,23]},{"path":[4,26,2,8,3],"span":[493,26,27]},{"path":[4,26,2,9],"span":[495,2,37]},{"path":[4,26,2,9,4],"span":[495,2,10]},{"path":[4,26,2,9,5],"span":[495,11,15]},{"path":[4,26,2,9,1],"span":[495,16,31]},{"path":[4,26,2,9,3],"span":[495,34,36]},{"path":[4,27],"span":[500,0,534,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,27,1],"span":[500,8,20]},{"path":[4,27,2,0],"span":[501,2,16]},{"path":[4,27,2,0,5],"span":[501,2,7]},{"path":[4,27,2,0,1],"span":[501,9,11]},{"path":[4,27,2,0,3],"span":[501,14,15]},{"path":[4,27,2,1],"span":[502,2,23]},{"path":[4,27,2,1,5],"span":[502,2,8]},{"path":[4,27,2,1,1],"span":[502,9,18]},{"path":[4,27,2,1,3],"span":[502,21,22]},{"path":[4,27,2,2],"span":[504,2,32]},{"path":[4,27,2,2,4],"span":[504,2,10]},{"path":[4,27,2,2,5],"span":[504,11,16]},{"path":[4,27,2,2,1],"span":[504,17,26]},{"path":[4,27,2,2,3],"span":[504,29,31]},{"path":[4,27,2,3],"span":[505,2,58]},{"path":[4,27,2,3,4],"span":[505,2,10]},{"path":[4,27,2,3,6],"span":[505,11,36]},{"path":[4,27,2,3,1],"span":[505,37,53]},{"path":[4,27,2,3,3],"span":[505,56,57]},{"path":[4,27,2,4],"span":[507,2,35]},{"path":[4,27,2,4,4],"span":[507,2,10]},{"path":[4,27,2,4,5],"span":[507,11,17]},{"path":[4,27,2,4,1],"span":[507,18,30]},{"path":[4,27,2,4,3],"span":[507,33,34]},{"path":[4,27,2,5],"span":[508,2,37]},{"path":[4,27,2,5,4],"span":[508,2,10]},{"path":[4,27,2,5,5],"span":[508,11,17]},{"path":[4,27,2,5,1],"span":[508,18,32]},{"path":[4,27,2,5,3],"span":[508,35,36]},{"path":[4,27,2,6],"span":[509,2,39]},{"path":[4,27,2,6,4],"span":[509,2,10]},{"path":[4,27,2,6,5],"span":[509,11,17]},{"path":[4,27,2,6,1],"span":[509,18,34]},{"path":[4,27,2,6,3],"span":[509,37,38]},{"path":[4,27,2,7],"span":[510,2,35]},{"path":[4,27,2,7,4],"span":[510,2,10]},{"path":[4,27,2,7,5],"span":[510,11,17]},{"path":[4,27,2,7,1],"span":[510,18,30]},{"path":[4,27,2,7,3],"span":[510,33,34]},{"path":[4,27,2,8],"span":[511,2,43]},{"path":[4,27,2,8,4],"span":[511,2,10]},{"path":[4,27,2,8,5],"span":[511,11,17]},{"path":[4,27,2,8,1],"span":[511,18,37]},{"path":[4,27,2,8,3],"span":[511,40,42]},{"path":[4,27,2,9],"span":[512,2,35]},{"path":[4,27,2,9,4],"span":[512,2,10]},{"path":[4,27,2,9,5],"span":[512,11,17]},{"path":[4,27,2,9,1],"span":[512,18,29]},{"path":[4,27,2,9,3],"span":[512,32,34]},{"path":[4,27,2,10],"span":[513,2,35]},{"path":[4,27,2,10,4],"span":[513,2,10]},{"path":[4,27,2,10,5],"span":[513,11,17]},{"path":[4,27,2,10,1],"span":[513,18,29]},{"path":[4,27,2,10,3],"span":[513,32,34]},{"path":[4,27,2,11],"span":[514,2,37]},{"path":[4,27,2,11,4],"span":[514,2,10]},{"path":[4,27,2,11,5],"span":[514,11,17]},{"path":[4,27,2,11,1],"span":[514,18,31]},{"path":[4,27,2,11,3],"span":[514,34,36]},{"path":[4,27,2,12],"span":[515,2,40]},{"path":[4,27,2,12,4],"span":[515,2,10]},{"path":[4,27,2,12,5],"span":[515,11,17]},{"path":[4,27,2,12,1],"span":[515,18,34]},{"path":[4,27,2,12,3],"span":[515,37,39]},{"path":[4,27,2,13],"span":[516,2,39]},{"path":[4,27,2,13,4],"span":[516,2,10]},{"path":[4,27,2,13,5],"span":[516,11,17]},{"path":[4,27,2,13,1],"span":[516,18,33]},{"path":[4,27,2,13,3],"span":[516,36,38]},{"path":[4,27,2,14],"span":[517,2,36]},{"path":[4,27,2,14,4],"span":[517,2,10]},{"path":[4,27,2,14,5],"span":[517,11,17]},{"path":[4,27,2,14,1],"span":[517,18,30]},{"path":[4,27,2,14,3],"span":[517,33,35]},{"path":[4,27,2,15],"span":[518,2,43]},{"path":[4,27,2,15,4],"span":[518,2,10]},{"path":[4,27,2,15,5],"span":[518,11,17]},{"path":[4,27,2,15,1],"span":[518,18,37]},{"path":[4,27,2,15,3],"span":[518,40,42]},{"path":[4,27,2,16],"span":[519,2,37]},{"path":[4,27,2,16,4],"span":[519,2,10]},{"path":[4,27,2,16,5],"span":[519,11,17]},{"path":[4,27,2,16,1],"span":[519,18,31]},{"path":[4,27,2,16,3],"span":[519,34,36]},{"path":[4,27,2,17],"span":[520,2,40]},{"path":[4,27,2,17,4],"span":[520,2,10]},{"path":[4,27,2,17,5],"span":[520,11,17]},{"path":[4,27,2,17,1],"span":[520,18,34]},{"path":[4,27,2,17,3],"span":[520,37,39]},{"path":[4,27,2,18],"span":[521,2,41]},{"path":[4,27,2,18,4],"span":[521,2,10]},{"path":[4,27,2,18,5],"span":[521,11,17]},{"path":[4,27,2,18,1],"span":[521,18,35]},{"path":[4,27,2,18,3],"span":[521,38,40]},{"path":[4,27,2,19],"span":[522,2,39]},{"path":[4,27,2,19,4],"span":[522,2,10]},{"path":[4,27,2,19,5],"span":[522,11,17]},{"path":[4,27,2,19,1],"span":[522,18,33]},{"path":[4,27,2,19,3],"span":[522,36,38]},{"path":[4,27,2,20],"span":[523,2,41]},{"path":[4,27,2,20,4],"span":[523,2,10]},{"path":[4,27,2,20,5],"span":[523,11,17]},{"path":[4,27,2,20,1],"span":[523,18,35]},{"path":[4,27,2,20,3],"span":[523,38,40]},{"path":[4,27,2,21],"span":[524,2,38]},{"path":[4,27,2,21,4],"span":[524,2,10]},{"path":[4,27,2,21,5],"span":[524,11,17]},{"path":[4,27,2,21,1],"span":[524,18,32]},{"path":[4,27,2,21,3],"span":[524,35,37]},{"path":[4,27,2,22],"span":[526,2,36]},{"path":[4,27,2,22,4],"span":[526,2,10]},{"path":[4,27,2,22,5],"span":[526,11,15]},{"path":[4,27,2,22,1],"span":[526,16,30]},{"path":[4,27,2,22,3],"span":[526,33,35]},{"path":[4,27,2,23],"span":[527,2,36]},{"path":[4,27,2,23,4],"span":[527,2,10]},{"path":[4,27,2,23,5],"span":[527,11,15]},{"path":[4,27,2,23,1],"span":[527,16,30]},{"path":[4,27,2,23,3],"span":[527,33,35]},{"path":[4,27,2,24],"span":[528,2,36]},{"path":[4,27,2,24,4],"span":[528,2,10]},{"path":[4,27,2,24,5],"span":[528,11,15]},{"path":[4,27,2,24,1],"span":[528,16,30]},{"path":[4,27,2,24,3],"span":[528,33,35]},{"path":[4,27,2,25],"span":[529,2,38]},{"path":[4,27,2,25,4],"span":[529,2,10]},{"path":[4,27,2,25,5],"span":[529,11,15]},{"path":[4,27,2,25,1],"span":[529,16,32]},{"path":[4,27,2,25,3],"span":[529,35,37]},{"path":[4,27,2,26],"span":[530,2,38]},{"path":[4,27,2,26,4],"span":[530,2,10]},{"path":[4,27,2,26,5],"span":[530,11,15]},{"path":[4,27,2,26,1],"span":[530,16,32]},{"path":[4,27,2,26,3],"span":[530,35,37]},{"path":[4,27,2,27],"span":[531,2,38]},{"path":[4,27,2,27,4],"span":[531,2,10]},{"path":[4,27,2,27,5],"span":[531,11,15]},{"path":[4,27,2,27,1],"span":[531,16,32]},{"path":[4,27,2,27,3],"span":[531,35,37]},{"path":[4,27,2,28],"span":[533,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,27,2,28,4],"span":[533,2,10]},{"path":[4,27,2,28,5],"span":[533,11,16]},{"path":[4,27,2,28,1],"span":[533,17,28]},{"path":[4,27,2,28,3],"span":[533,31,33]},{"path":[4,28],"span":[536,0,571,1]},{"path":[4,28,1],"span":[536,8,20]},{"path":[4,28,2,0],"span":[537,2,15]},{"path":[4,28,2,0,5],"span":[537,2,7]},{"path":[4,28,2,0,1],"span":[537,8,10]},{"path":[4,28,2,0,3],"span":[537,13,14]},{"path":[4,28,2,1],"span":[539,2,20]},{"path":[4,28,2,1,5],"span":[539,2,7]},{"path":[4,28,2,1,1],"span":[539,8,15]},{"path":[4,28,2,1,3],"span":[539,18,19]},{"path":[4,28,2,2],"span":[540,2,26]},{"path":[4,28,2,2,5],"span":[540,2,8]},{"path":[4,28,2,2,1],"span":[540,9,21]},{"path":[4,28,2,2,3],"span":[540,24,25]},{"path":[4,28,2,3],"span":[542,2,36]},{"path":[4,28,2,3,4],"span":[542,2,10]},{"path":[4,28,2,3,5],"span":[542,11,16]},{"path":[4,28,2,3,1],"span":[542,17,31]},{"path":[4,28,2,3,3],"span":[542,34,35]},{"path":[4,28,2,4],"span":[543,2,40]},{"path":[4,28,2,4,4],"span":[543,2,10]},{"path":[4,28,2,4,5],"span":[543,11,17]},{"path":[4,28,2,4,1],"span":[543,18,35]},{"path":[4,28,2,4,3],"span":[543,38,39]},{"path":[4,28,2,5],"span":[545,2,32]},{"path":[4,28,2,5,4],"span":[545,2,10]},{"path":[4,28,2,5,5],"span":[545,11,16]},{"path":[4,28,2,5,1],"span":[545,17,26]},{"path":[4,28,2,5,3],"span":[545,29,31]},{"path":[4,28,2,6],"span":[546,2,31]},{"path":[4,28,2,6,4],"span":[546,2,10]},{"path":[4,28,2,6,5],"span":[546,11,15]},{"path":[4,28,2,6,1],"span":[546,16,25]},{"path":[4,28,2,6,3],"span":[546,28,30]},{"path":[4,28,2,7],"span":[547,2,34]},{"path":[4,28,2,7,4],"span":[547,2,10]},{"path":[4,28,2,7,5],"span":[547,11,17]},{"path":[4,28,2,7,1],"span":[547,18,28]},{"path":[4,28,2,7,3],"span":[547,31,33]},{"path":[4,28,2,8],"span":[548,2,31]},{"path":[4,28,2,8,4],"span":[548,2,10]},{"path":[4,28,2,8,5],"span":[548,11,17]},{"path":[4,28,2,8,1],"span":[548,18,25]},{"path":[4,28,2,8,3],"span":[548,28,30]},{"path":[4,28,2,9],"span":[549,2,55]},{"path":[4,28,2,9,4],"span":[549,2,10]},{"path":[4,28,2,9,6],"span":[549,11,36]},{"path":[4,28,2,9,1],"span":[549,37,49]},{"path":[4,28,2,9,3],"span":[549,52,54]},{"path":[4,28,2,10],"span":[550,2,52]},{"path":[4,28,2,10,4],"span":[550,2,10]},{"path":[4,28,2,10,6],"span":[550,11,36]},{"path":[4,28,2,10,1],"span":[550,37,46]},{"path":[4,28,2,10,3],"span":[550,49,51]},{"path":[4,28,2,11],"span":[551,2,51]},{"path":[4,28,2,11,4],"span":[551,2,10]},{"path":[4,28,2,11,6],"span":[551,11,36]},{"path":[4,28,2,11,1],"span":[551,37,45]},{"path":[4,28,2,11,3],"span":[551,48,50]},{"path":[4,28,2,12],"span":[552,2,43]},{"path":[4,28,2,12,4],"span":[552,2,10]},{"path":[4,28,2,12,5],"span":[552,11,17]},{"path":[4,28,2,12,1],"span":[552,18,37]},{"path":[4,28,2,12,3],"span":[552,40,42]},{"path":[4,28,2,13],"span":[554,2,35]},{"path":[4,28,2,13,4],"span":[554,2,10]},{"path":[4,28,2,13,5],"span":[554,11,17]},{"path":[4,28,2,13,1],"span":[554,18,29]},{"path":[4,28,2,13,3],"span":[554,32,34]},{"path":[4,28,2,14],"span":[555,2,37]},{"path":[4,28,2,14,4],"span":[555,2,10]},{"path":[4,28,2,14,5],"span":[555,11,17]},{"path":[4,28,2,14,1],"span":[555,18,31]},{"path":[4,28,2,14,3],"span":[555,34,36]},{"path":[4,28,2,15],"span":[557,2,39]},{"path":[4,28,2,15,4],"span":[557,2,10]},{"path":[4,28,2,15,5],"span":[557,11,17]},{"path":[4,28,2,15,1],"span":[557,18,33]},{"path":[4,28,2,15,3],"span":[557,36,38]},{"path":[4,28,2,16],"span":[558,2,43]},{"path":[4,28,2,16,4],"span":[558,2,10]},{"path":[4,28,2,16,5],"span":[558,11,17]},{"path":[4,28,2,16,1],"span":[558,18,37]},{"path":[4,28,2,16,3],"span":[558,40,42]},{"path":[4,28,2,17],"span":[559,2,38]},{"path":[4,28,2,17,4],"span":[559,2,10]},{"path":[4,28,2,17,5],"span":[559,11,17]},{"path":[4,28,2,17,1],"span":[559,18,32]},{"path":[4,28,2,17,3],"span":[559,35,37]},{"path":[4,28,2,18],"span":[560,2,38]},{"path":[4,28,2,18,4],"span":[560,2,10]},{"path":[4,28,2,18,5],"span":[560,11,17]},{"path":[4,28,2,18,1],"span":[560,18,32]},{"path":[4,28,2,18,3],"span":[560,35,37]},{"path":[4,28,2,19],"span":[561,2,41]},{"path":[4,28,2,19,4],"span":[561,2,10]},{"path":[4,28,2,19,5],"span":[561,11,15]},{"path":[4,28,2,19,1],"span":[561,18,35]},{"path":[4,28,2,19,3],"span":[561,38,40]},{"path":[4,28,2,20],"span":[562,2,42]},{"path":[4,28,2,20,4],"span":[562,2,10]},{"path":[4,28,2,20,5],"span":[562,11,17]},{"path":[4,28,2,20,1],"span":[562,18,36]},{"path":[4,28,2,20,3],"span":[562,39,41]},{"path":[4,28,2,21],"span":[564,2,32]},{"path":[4,28,2,21,4],"span":[564,2,10]},{"path":[4,28,2,21,5],"span":[564,11,17]},{"path":[4,28,2,21,1],"span":[564,18,26]},{"path":[4,28,2,21,3],"span":[564,29,31]},{"path":[4,28,2,22],"span":[566,2,33]},{"path":[4,28,2,22,4],"span":[566,2,10]},{"path":[4,28,2,22,5],"span":[566,11,16]},{"path":[4,28,2,22,1],"span":[566,17,27]},{"path":[4,28,2,22,3],"span":[566,30,32]},{"path":[4,28,2,23],"span":[568,2,59]},{"path":[4,28,2,23,4],"span":[568,2,10]},{"path":[4,28,2,23,6],"span":[568,11,36]},{"path":[4,28,2,23,1],"span":[568,37,53]},{"path":[4,28,2,23,3],"span":[568,56,58]},{"path":[4,28,2,24],"span":[570,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,28,2,24,4],"span":[570,2,10]},{"path":[4,28,2,24,5],"span":[570,11,16]},{"path":[4,28,2,24,1],"span":[570,17,28]},{"path":[4,28,2,24,3],"span":[570,31,33]},{"path":[4,29],"span":[573,0,606,1]},{"path":[4,29,1],"span":[573,8,17]},{"path":[4,29,2,0],"span":[574,2,15]},{"path":[4,29,2,0,5],"span":[574,2,7]},{"path":[4,29,2,0,1],"span":[574,8,10]},{"path":[4,29,2,0,3],"span":[574,13,14]},{"path":[4,29,2,1],"span":[576,2,21]},{"path":[4,29,2,1,5],"span":[576,2,8]},{"path":[4,29,2,1,1],"span":[576,9,16]},{"path":[4,29,2,1,3],"span":[576,19,20]},{"path":[4,29,2,2],"span":[578,2,33]},{"path":[4,29,2,2,4],"span":[578,2,10]},{"path":[4,29,2,2,5],"span":[578,11,17]},{"path":[4,29,2,2,1],"span":[578,18,28]},{"path":[4,29,2,2,3],"span":[578,31,32]},{"path":[4,29,2,3],"span":[579,2,32]},{"path":[4,29,2,3,4],"span":[579,2,10]},{"path":[4,29,2,3,5],"span":[579,11,17]},{"path":[4,29,2,3,1],"span":[579,18,26]},{"path":[4,29,2,3,3],"span":[579,29,31]},{"path":[4,29,2,4],"span":[580,2,38]},{"path":[4,29,2,4,4],"span":[580,2,10]},{"path":[4,29,2,4,5],"span":[580,11,17]},{"path":[4,29,2,4,1],"span":[580,18,33]},{"path":[4,29,2,4,3],"span":[580,36,37]},{"path":[4,29,2,5],"span":[582,2,33]},{"path":[4,29,2,5,4],"span":[582,2,10]},{"path":[4,29,2,5,5],"span":[582,11,16]},{"path":[4,29,2,5,1],"span":[582,17,28]},{"path":[4,29,2,5,3],"span":[582,31,32]},{"path":[4,29,2,6],"span":[583,2,29]},{"path":[4,29,2,6,4],"span":[583,2,10]},{"path":[4,29,2,6,5],"span":[583,11,16]},{"path":[4,29,2,6,1],"span":[583,17,24]},{"path":[4,29,2,6,3],"span":[583,27,28]},{"path":[4,29,2,7],"span":[584,2,31]},{"path":[4,29,2,7,4],"span":[584,2,10]},{"path":[4,29,2,7,5],"span":[584,11,16]},{"path":[4,29,2,7,1],"span":[584,17,26]},{"path":[4,29,2,7,3],"span":[584,29,30]},{"path":[4,29,2,8],"span":[586,2,54]},{"path":[4,29,2,8,4],"span":[586,2,10]},{"path":[4,29,2,8,6],"span":[586,11,36]},{"path":[4,29,2,8,1],"span":[586,37,49]},{"path":[4,29,2,8,3],"span":[586,52,53]},{"path":[4,29,2,9],"span":[587,2,51]},{"path":[4,29,2,9,4],"span":[587,2,10]},{"path":[4,29,2,9,6],"span":[587,11,36]},{"path":[4,29,2,9,1],"span":[587,37,45]},{"path":[4,29,2,9,3],"span":[587,48,50]},{"path":[4,29,2,10],"span":[588,2,51]},{"path":[4,29,2,10,4],"span":[588,2,10]},{"path":[4,29,2,10,6],"span":[588,11,36]},{"path":[4,29,2,10,1],"span":[588,37,45]},{"path":[4,29,2,10,3],"span":[588,48,50]},{"path":[4,29,2,11],"span":[589,2,52]},{"path":[4,29,2,11,4],"span":[589,2,10]},{"path":[4,29,2,11,6],"span":[589,11,36]},{"path":[4,29,2,11,1],"span":[589,37,46]},{"path":[4,29,2,11,3],"span":[589,49,51]},{"path":[4,29,2,12],"span":[590,2,43]},{"path":[4,29,2,12,4],"span":[590,2,10]},{"path":[4,29,2,12,5],"span":[590,11,17]},{"path":[4,29,2,12,1],"span":[590,18,37]},{"path":[4,29,2,12,3],"span":[590,40,42]},{"path":[4,29,2,13],"span":[591,2,38]},{"path":[4,29,2,13,4],"span":[591,2,10]},{"path":[4,29,2,13,5],"span":[591,11,17]},{"path":[4,29,2,13,1],"span":[591,18,32]},{"path":[4,29,2,13,3],"span":[591,35,37]},{"path":[4,29,2,14],"span":[592,2,40]},{"path":[4,29,2,14,4],"span":[592,2,10]},{"path":[4,29,2,14,5],"span":[592,11,17]},{"path":[4,29,2,14,1],"span":[592,18,34]},{"path":[4,29,2,14,3],"span":[592,37,39]},{"path":[4,29,2,15],"span":[593,2,36]},{"path":[4,29,2,15,4],"span":[593,2,10]},{"path":[4,29,2,15,5],"span":[593,11,17]},{"path":[4,29,2,15,1],"span":[593,18,30]},{"path":[4,29,2,15,3],"span":[593,33,35]},{"path":[4,29,2,16],"span":[594,2,43]},{"path":[4,29,2,16,4],"span":[594,2,10]},{"path":[4,29,2,16,5],"span":[594,11,17]},{"path":[4,29,2,16,1],"span":[594,18,37]},{"path":[4,29,2,16,3],"span":[594,40,42]},{"path":[4,29,2,17],"span":[595,2,35]},{"path":[4,29,2,17,4],"span":[595,2,10]},{"path":[4,29,2,17,5],"span":[595,11,17]},{"path":[4,29,2,17,1],"span":[595,18,29]},{"path":[4,29,2,17,3],"span":[595,32,34]},{"path":[4,29,2,18],"span":[596,2,35]},{"path":[4,29,2,18,4],"span":[596,2,10]},{"path":[4,29,2,18,5],"span":[596,11,17]},{"path":[4,29,2,18,1],"span":[596,18,29]},{"path":[4,29,2,18,3],"span":[596,32,34]},{"path":[4,29,2,19],"span":[597,2,37]},{"path":[4,29,2,19,4],"span":[597,2,10]},{"path":[4,29,2,19,5],"span":[597,11,17]},{"path":[4,29,2,19,1],"span":[597,18,31]},{"path":[4,29,2,19,3],"span":[597,34,36]},{"path":[4,29,2,20],"span":[598,2,40]},{"path":[4,29,2,20,4],"span":[598,2,10]},{"path":[4,29,2,20,5],"span":[598,11,17]},{"path":[4,29,2,20,1],"span":[598,18,34]},{"path":[4,29,2,20,3],"span":[598,37,39]},{"path":[4,29,2,21],"span":[599,2,39]},{"path":[4,29,2,21,4],"span":[599,2,10]},{"path":[4,29,2,21,5],"span":[599,11,17]},{"path":[4,29,2,21,1],"span":[599,18,33]},{"path":[4,29,2,21,3],"span":[599,36,38]},{"path":[4,29,2,22],"span":[601,2,32]},{"path":[4,29,2,22,4],"span":[601,2,10]},{"path":[4,29,2,22,5],"span":[601,11,17]},{"path":[4,29,2,22,1],"span":[601,18,26]},{"path":[4,29,2,22,3],"span":[601,29,31]},{"path":[4,29,2,23],"span":[603,2,59]},{"path":[4,29,2,23,4],"span":[603,2,10]},{"path":[4,29,2,23,6],"span":[603,11,36]},{"path":[4,29,2,23,1],"span":[603,37,53]},{"path":[4,29,2,23,3],"span":[603,56,58]},{"path":[4,29,2,24],"span":[605,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,29,2,24,4],"span":[605,2,10]},{"path":[4,29,2,24,5],"span":[605,11,16]},{"path":[4,29,2,24,1],"span":[605,17,28]},{"path":[4,29,2,24,3],"span":[605,31,33]},{"path":[4,30],"span":[608,0,638,1]},{"path":[4,30,1],"span":[608,8,23]},{"path":[4,30,2,0],"span":[609,2,15]},{"path":[4,30,2,0,5],"span":[609,2,7]},{"path":[4,30,2,0,1],"span":[609,8,10]},{"path":[4,30,2,0,3],"span":[609,13,14]},{"path":[4,30,2,1],"span":[610,2,21]},{"path":[4,30,2,1,5],"span":[610,2,8]},{"path":[4,30,2,1,1],"span":[610,9,16]},{"path":[4,30,2,1,3],"span":[610,19,20]},{"path":[4,30,2,2],"span":[612,2,33]},{"path":[4,30,2,2,4],"span":[612,2,10]},{"path":[4,30,2,2,5],"span":[612,11,17]},{"path":[4,30,2,2,1],"span":[612,18,28]},{"path":[4,30,2,2,3],"span":[612,31,32]},{"path":[4,30,2,3],"span":[613,2,36]},{"path":[4,30,2,3,4],"span":[613,2,10]},{"path":[4,30,2,3,5],"span":[613,11,17]},{"path":[4,30,2,3,1],"span":[613,18,31]},{"path":[4,30,2,3,3],"span":[613,34,35]},{"path":[4,30,2,4],"span":[614,2,33]},{"path":[4,30,2,4,4],"span":[614,2,10]},{"path":[4,30,2,4,5],"span":[614,11,17]},{"path":[4,30,2,4,1],"span":[614,18,28]},{"path":[4,30,2,4,3],"span":[614,31,32]},{"path":[4,30,2,5],"span":[615,2,30]},{"path":[4,30,2,5,4],"span":[615,2,10]},{"path":[4,30,2,5,5],"span":[615,11,17]},{"path":[4,30,2,5,1],"span":[615,18,25]},{"path":[4,30,2,5,3],"span":[615,28,29]},{"path":[4,30,2,6],"span":[616,2,31]},{"path":[4,30,2,6,4],"span":[616,2,10]},{"path":[4,30,2,6,5],"span":[616,11,17]},{"path":[4,30,2,6,1],"span":[616,18,26]},{"path":[4,30,2,6,3],"span":[616,29,30]},{"path":[4,30,2,7],"span":[618,2,29]},{"path":[4,30,2,7,4],"span":[618,2,10]},{"path":[4,30,2,7,5],"span":[618,11,16]},{"path":[4,30,2,7,1],"span":[618,17,24]},{"path":[4,30,2,7,3],"span":[618,27,28]},{"path":[4,30,2,8],"span":[619,2,31]},{"path":[4,30,2,8,4],"span":[619,2,10]},{"path":[4,30,2,8,5],"span":[619,11,16]},{"path":[4,30,2,8,1],"span":[619,17,26]},{"path":[4,30,2,8,3],"span":[619,29,30]},{"path":[4,30,2,9],"span":[620,2,32]},{"path":[4,30,2,9,4],"span":[620,2,10]},{"path":[4,30,2,9,5],"span":[620,11,16]},{"path":[4,30,2,9,1],"span":[620,17,26]},{"path":[4,30,2,9,3],"span":[620,29,31]},{"path":[4,30,2,10],"span":[622,2,31]},{"path":[4,30,2,10,4],"span":[622,2,10]},{"path":[4,30,2,10,5],"span":[622,11,17]},{"path":[4,30,2,10,1],"span":[622,18,25]},{"path":[4,30,2,10,3],"span":[622,28,30]},{"path":[4,30,2,11],"span":[623,2,35]},{"path":[4,30,2,11,4],"span":[623,2,10]},{"path":[4,30,2,11,5],"span":[623,11,17]},{"path":[4,30,2,11,1],"span":[623,18,29]},{"path":[4,30,2,11,3],"span":[623,32,34]},{"path":[4,30,2,12],"span":[625,2,55]},{"path":[4,30,2,12,4],"span":[625,2,10]},{"path":[4,30,2,12,6],"span":[625,11,36]},{"path":[4,30,2,12,1],"span":[625,37,49]},{"path":[4,30,2,12,3],"span":[625,52,54]},{"path":[4,30,2,13],"span":[626,2,51]},{"path":[4,30,2,13,4],"span":[626,2,10]},{"path":[4,30,2,13,6],"span":[626,11,36]},{"path":[4,30,2,13,1],"span":[626,37,45]},{"path":[4,30,2,13,3],"span":[626,48,50]},{"path":[4,30,2,14],"span":[627,2,51]},{"path":[4,30,2,14,4],"span":[627,2,10]},{"path":[4,30,2,14,6],"span":[627,11,36]},{"path":[4,30,2,14,1],"span":[627,37,45]},{"path":[4,30,2,14,3],"span":[627,48,50]},{"path":[4,30,2,15],"span":[628,2,52]},{"path":[4,30,2,15,4],"span":[628,2,10]},{"path":[4,30,2,15,6],"span":[628,11,36]},{"path":[4,30,2,15,1],"span":[628,37,46]},{"path":[4,30,2,15,3],"span":[628,49,51]},{"path":[4,30,2,16],"span":[629,2,43]},{"path":[4,30,2,16,4],"span":[629,2,10]},{"path":[4,30,2,16,5],"span":[629,11,17]},{"path":[4,30,2,16,1],"span":[629,18,37]},{"path":[4,30,2,16,3],"span":[629,40,42]},{"path":[4,30,2,17],"span":[631,2,33]},{"path":[4,30,2,17,4],"span":[631,2,10]},{"path":[4,30,2,17,5],"span":[631,11,15]},{"path":[4,30,2,17,1],"span":[631,16,27]},{"path":[4,30,2,17,3],"span":[631,30,32]},{"path":[4,30,2,18],"span":[632,2,37]},{"path":[4,30,2,18,4],"span":[632,2,10]},{"path":[4,30,2,18,5],"span":[632,11,15]},{"path":[4,30,2,18,1],"span":[632,16,31]},{"path":[4,30,2,18,3],"span":[632,34,36]},{"path":[4,30,2,19],"span":[633,2,37]},{"path":[4,30,2,19,4],"span":[633,2,10]},{"path":[4,30,2,19,5],"span":[633,11,15]},{"path":[4,30,2,19,1],"span":[633,16,31]},{"path":[4,30,2,19,3],"span":[633,34,36]},{"path":[4,30,2,20],"span":[635,2,59]},{"path":[4,30,2,20,4],"span":[635,2,10]},{"path":[4,30,2,20,6],"span":[635,11,36]},{"path":[4,30,2,20,1],"span":[635,37,53]},{"path":[4,30,2,20,3],"span":[635,56,58]},{"path":[4,30,2,21],"span":[637,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,30,2,21,4],"span":[637,2,10]},{"path":[4,30,2,21,5],"span":[637,11,16]},{"path":[4,30,2,21,1],"span":[637,17,28]},{"path":[4,30,2,21,3],"span":[637,31,34]},{"path":[4,31],"span":[640,0,696,1]},{"path":[4,31,1],"span":[640,8,22]},{"path":[4,31,2,0],"span":[641,2,16]},{"path":[4,31,2,0,5],"span":[641,2,7]},{"path":[4,31,2,0,1],"span":[641,9,11]},{"path":[4,31,2,0,3],"span":[641,14,15]},{"path":[4,31,2,1],"span":[643,2,19]},{"path":[4,31,2,1,5],"span":[643,2,8]},{"path":[4,31,2,1,1],"span":[643,9,14]},{"path":[4,31,2,1,3],"span":[643,17,18]},{"path":[4,31,2,2],"span":[644,2,32]},{"path":[4,31,2,2,4],"span":[644,2,10]},{"path":[4,31,2,2,5],"span":[644,11,17]},{"path":[4,31,2,2,1],"span":[644,18,27]},{"path":[4,31,2,2,3],"span":[644,30,31]},{"path":[4,31,2,3],"span":[645,2,29]},{"path":[4,31,2,3,4],"span":[645,2,10]},{"path":[4,31,2,3,5],"span":[645,11,16]},{"path":[4,31,2,3,1],"span":[645,17,24]},{"path":[4,31,2,3,3],"span":[645,27,28]},{"path":[4,31,2,4],"span":[647,2,31]},{"path":[4,31,2,4,4],"span":[647,2,10]},{"path":[4,31,2,4,5],"span":[647,11,16]},{"path":[4,31,2,4,1],"span":[647,17,26]},{"path":[4,31,2,4,3],"span":[647,29,30]},{"path":[4,31,2,5],"span":[648,2,30]},{"path":[4,31,2,5,4],"span":[648,2,10]},{"path":[4,31,2,5,5],"span":[648,11,15]},{"path":[4,31,2,5,1],"span":[648,16,25]},{"path":[4,31,2,5,3],"span":[648,28,29]},{"path":[4,31,2,6],"span":[649,2,36]},{"path":[4,31,2,6,4],"span":[649,2,10]},{"path":[4,31,2,6,5],"span":[649,11,17]},{"path":[4,31,2,6,1],"span":[649,18,31]},{"path":[4,31,2,6,3],"span":[649,34,35]},{"path":[4,31,2,7],"span":[650,2,35]},{"path":[4,31,2,7,4],"span":[650,2,10]},{"path":[4,31,2,7,5],"span":[650,11,17]},{"path":[4,31,2,7,1],"span":[650,18,30]},{"path":[4,31,2,7,3],"span":[650,33,34]},{"path":[4,31,2,8],"span":[652,2,33]},{"path":[4,31,2,8,4],"span":[652,2,10]},{"path":[4,31,2,8,5],"span":[652,11,17]},{"path":[4,31,2,8,1],"span":[652,18,27]},{"path":[4,31,2,8,3],"span":[652,30,32]},{"path":[4,31,2,9],"span":[653,2,38]},{"path":[4,31,2,9,4],"span":[653,2,10]},{"path":[4,31,2,9,5],"span":[653,11,17]},{"path":[4,31,2,9,1],"span":[653,18,32]},{"path":[4,31,2,9,3],"span":[653,35,37]},{"path":[4,31,2,10],"span":[654,2,36]},{"path":[4,31,2,10,4],"span":[654,2,10]},{"path":[4,31,2,10,5],"span":[654,11,17]},{"path":[4,31,2,10,1],"span":[654,18,30]},{"path":[4,31,2,10,3],"span":[654,33,35]},{"path":[4,31,2,11],"span":[655,2,40]},{"path":[4,31,2,11,4],"span":[655,2,10]},{"path":[4,31,2,11,5],"span":[655,11,17]},{"path":[4,31,2,11,1],"span":[655,18,34]},{"path":[4,31,2,11,3],"span":[655,37,39]},{"path":[4,31,2,12],"span":[656,2,31]},{"path":[4,31,2,12,4],"span":[656,2,10]},{"path":[4,31,2,12,5],"span":[656,11,17]},{"path":[4,31,2,12,1],"span":[656,18,25]},{"path":[4,31,2,12,3],"span":[656,28,30]},{"path":[4,31,2,13],"span":[657,2,36]},{"path":[4,31,2,13,4],"span":[657,2,10]},{"path":[4,31,2,13,5],"span":[657,11,17]},{"path":[4,31,2,13,1],"span":[657,18,30]},{"path":[4,31,2,13,3],"span":[657,33,35]},{"path":[4,31,2,14],"span":[658,2,35]},{"path":[4,31,2,14,4],"span":[658,2,10]},{"path":[4,31,2,14,5],"span":[658,11,16]},{"path":[4,31,2,14,1],"span":[658,17,29]},{"path":[4,31,2,14,3],"span":[658,32,34]},{"path":[4,31,2,15],"span":[659,2,29]},{"path":[4,31,2,15,4],"span":[659,2,10]},{"path":[4,31,2,15,5],"span":[659,11,17]},{"path":[4,31,2,15,1],"span":[659,18,23]},{"path":[4,31,2,15,3],"span":[659,26,28]},{"path":[4,31,2,16],"span":[660,2,33]},{"path":[4,31,2,16,4],"span":[660,2,10]},{"path":[4,31,2,16,5],"span":[660,11,17]},{"path":[4,31,2,16,1],"span":[660,18,27]},{"path":[4,31,2,16,3],"span":[660,30,32]},{"path":[4,31,2,17],"span":[661,2,32]},{"path":[4,31,2,17,4],"span":[661,2,10]},{"path":[4,31,2,17,5],"span":[661,11,17]},{"path":[4,31,2,17,1],"span":[661,18,26]},{"path":[4,31,2,17,3],"span":[661,29,31]},{"path":[4,31,2,18],"span":[662,2,35]},{"path":[4,31,2,18,4],"span":[662,2,10]},{"path":[4,31,2,18,5],"span":[662,11,17]},{"path":[4,31,2,18,1],"span":[662,18,29]},{"path":[4,31,2,18,3],"span":[662,32,34]},{"path":[4,31,2,19],"span":[664,2,36]},{"path":[4,31,2,19,4],"span":[664,2,10]},{"path":[4,31,2,19,5],"span":[664,11,17]},{"path":[4,31,2,19,1],"span":[664,18,30]},{"path":[4,31,2,19,3],"span":[664,33,35]},{"path":[4,31,2,20],"span":[665,2,38]},{"path":[4,31,2,20,4],"span":[665,2,10]},{"path":[4,31,2,20,5],"span":[665,11,16]},{"path":[4,31,2,20,1],"span":[665,17,32]},{"path":[4,31,2,20,3],"span":[665,35,37]},{"path":[4,31,2,21],"span":[666,2,47]},{"path":[4,31,2,21,4],"span":[666,2,10]},{"path":[4,31,2,21,5],"span":[666,11,16]},{"path":[4,31,2,21,1],"span":[666,17,41]},{"path":[4,31,2,21,3],"span":[666,44,46]},{"path":[4,31,2,22],"span":[667,2,30]},{"path":[4,31,2,22,4],"span":[667,2,10]},{"path":[4,31,2,22,5],"span":[667,11,16]},{"path":[4,31,2,22,1],"span":[667,17,24]},{"path":[4,31,2,22,3],"span":[667,27,29]},{"path":[4,31,2,23],"span":[668,2,29]},{"path":[4,31,2,23,4],"span":[668,2,10]},{"path":[4,31,2,23,5],"span":[668,11,16]},{"path":[4,31,2,23,1],"span":[668,17,23]},{"path":[4,31,2,23,3],"span":[668,26,28]},{"path":[4,31,2,24],"span":[669,2,29]},{"path":[4,31,2,24,4],"span":[669,2,10]},{"path":[4,31,2,24,5],"span":[669,11,16]},{"path":[4,31,2,24,1],"span":[669,17,23]},{"path":[4,31,2,24,3],"span":[669,26,28]},{"path":[4,31,2,25],"span":[670,2,36]},{"path":[4,31,2,25,4],"span":[670,2,10]},{"path":[4,31,2,25,5],"span":[670,11,17]},{"path":[4,31,2,25,1],"span":[670,18,30]},{"path":[4,31,2,25,3],"span":[670,33,35]},{"path":[4,31,2,26],"span":[671,2,39]},{"path":[4,31,2,26,4],"span":[671,2,10]},{"path":[4,31,2,26,5],"span":[671,11,16]},{"path":[4,31,2,26,1],"span":[671,17,33]},{"path":[4,31,2,26,3],"span":[671,36,38]},{"path":[4,31,2,27],"span":[672,2,44]},{"path":[4,31,2,27,4],"span":[672,2,10]},{"path":[4,31,2,27,5],"span":[672,11,17]},{"path":[4,31,2,27,1],"span":[672,18,38]},{"path":[4,31,2,27,3],"span":[672,41,43]},{"path":[4,31,2,28],"span":[674,2,36]},{"path":[4,31,2,28,4],"span":[674,2,10]},{"path":[4,31,2,28,5],"span":[674,11,17]},{"path":[4,31,2,28,1],"span":[674,18,30]},{"path":[4,31,2,28,3],"span":[674,33,35]},{"path":[4,31,2,29],"span":[675,2,37]},{"path":[4,31,2,29,4],"span":[675,2,10]},{"path":[4,31,2,29,5],"span":[675,11,16]},{"path":[4,31,2,29,1],"span":[675,17,31]},{"path":[4,31,2,29,3],"span":[675,34,36]},{"path":[4,31,2,30],"span":[676,2,42]},{"path":[4,31,2,30,4],"span":[676,2,10]},{"path":[4,31,2,30,5],"span":[676,11,17]},{"path":[4,31,2,30,1],"span":[676,18,36]},{"path":[4,31,2,30,3],"span":[676,39,41]},{"path":[4,31,2,31],"span":[677,2,38]},{"path":[4,31,2,31,4],"span":[677,2,10]},{"path":[4,31,2,31,5],"span":[677,11,17]},{"path":[4,31,2,31,1],"span":[677,18,32]},{"path":[4,31,2,31,3],"span":[677,35,37]},{"path":[4,31,2,32],"span":[678,2,42]},{"path":[4,31,2,32,4],"span":[678,2,10]},{"path":[4,31,2,32,5],"span":[678,11,17]},{"path":[4,31,2,32,1],"span":[678,18,36]},{"path":[4,31,2,32,3],"span":[678,39,41]},{"path":[4,31,2,33],"span":[679,2,39]},{"path":[4,31,2,33,4],"span":[679,2,10]},{"path":[4,31,2,33,5],"span":[679,11,17]},{"path":[4,31,2,33,1],"span":[679,18,33]},{"path":[4,31,2,33,3],"span":[679,36,38]},{"path":[4,31,2,34],"span":[680,2,34]},{"path":[4,31,2,34,4],"span":[680,2,10]},{"path":[4,31,2,34,5],"span":[680,11,17]},{"path":[4,31,2,34,1],"span":[680,18,28]},{"path":[4,31,2,34,3],"span":[680,31,33]},{"path":[4,31,2,35],"span":[681,2,34]},{"path":[4,31,2,35,4],"span":[681,2,10]},{"path":[4,31,2,35,5],"span":[681,11,17]},{"path":[4,31,2,35,1],"span":[681,18,28]},{"path":[4,31,2,35,3],"span":[681,31,33]},{"path":[4,31,2,36],"span":[682,2,33]},{"path":[4,31,2,36,4],"span":[682,2,10]},{"path":[4,31,2,36,5],"span":[682,11,17]},{"path":[4,31,2,36,1],"span":[682,18,27]},{"path":[4,31,2,36,3],"span":[682,30,32]},{"path":[4,31,2,37],"span":[684,2,33]},{"path":[4,31,2,37,4],"span":[684,2,10]},{"path":[4,31,2,37,5],"span":[684,11,15]},{"path":[4,31,2,37,1],"span":[684,16,27]},{"path":[4,31,2,37,3],"span":[684,30,32]},{"path":[4,31,2,38],"span":[685,2,36]},{"path":[4,31,2,38,4],"span":[685,2,10]},{"path":[4,31,2,38,5],"span":[685,11,15]},{"path":[4,31,2,38,1],"span":[685,16,30]},{"path":[4,31,2,38,3],"span":[685,33,35]},{"path":[4,31,2,39],"span":[686,2,38]},{"path":[4,31,2,39,4],"span":[686,2,10]},{"path":[4,31,2,39,5],"span":[686,11,15]},{"path":[4,31,2,39,1],"span":[686,16,32]},{"path":[4,31,2,39,3],"span":[686,35,37]},{"path":[4,31,2,40],"span":[687,2,34]},{"path":[4,31,2,40,4],"span":[687,2,10]},{"path":[4,31,2,40,5],"span":[687,11,15]},{"path":[4,31,2,40,1],"span":[687,16,28]},{"path":[4,31,2,40,3],"span":[687,31,33]},{"path":[4,31,2,41],"span":[688,2,33]},{"path":[4,31,2,41,4],"span":[688,2,10]},{"path":[4,31,2,41,5],"span":[688,11,15]},{"path":[4,31,2,41,1],"span":[688,16,27]},{"path":[4,31,2,41,3],"span":[688,30,32]},{"path":[4,31,2,42],"span":[689,2,38]},{"path":[4,31,2,42,4],"span":[689,2,10]},{"path":[4,31,2,42,5],"span":[689,11,15]},{"path":[4,31,2,42,1],"span":[689,16,32]},{"path":[4,31,2,42,3],"span":[689,35,37]},{"path":[4,31,2,43],"span":[690,2,36]},{"path":[4,31,2,43,4],"span":[690,2,10]},{"path":[4,31,2,43,5],"span":[690,11,15]},{"path":[4,31,2,43,1],"span":[690,16,30]},{"path":[4,31,2,43,3],"span":[690,33,35]},{"path":[4,31,2,44],"span":[692,2,59]},{"path":[4,31,2,44,4],"span":[692,2,10]},{"path":[4,31,2,44,6],"span":[692,11,36]},{"path":[4,31,2,44,1],"span":[692,37,53]},{"path":[4,31,2,44,3],"span":[692,56,58]},{"path":[4,31,2,45],"span":[694,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,31,2,45,4],"span":[694,2,10]},{"path":[4,31,2,45,5],"span":[694,11,16]},{"path":[4,31,2,45,1],"span":[694,17,28]},{"path":[4,31,2,45,3],"span":[694,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":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,157,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,67]},{"path":[8,11],"span":[35,0,67]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,41]},{"path":[8,8],"span":[37,0,41]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[4,0],"span":[124,0,157,1],"leadingComments":" `Any` contains an arbitrary serialized protocol buffer message along with a\n URL that describes the type of the serialized message.\n\n Protobuf library provides support to pack/unpack Any values in the form\n of utility functions or additional generated methods of the Any type.\n\n Example 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\n Example 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\n The pack methods provided by protobuf library will by default use\n 'type.googleapis.com/full.type.name' as the type URL and the unpack\n methods only use the fully qualified type name after the last '/'\n in the type URL, for example \"foo.bar.com/x/y.z\" will yield type\n name \"y.z\".\n\n\n JSON\n ====\n The JSON representation of an `Any` value uses the regular\n representation of the deserialized, embedded message, with an\n additional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": <string>,\n \"lastName\": <string>\n }\n\n If the embedded message type is well-known and has a custom JSON\n representation, that representation will be embedded adding a field\n `value` which holds the custom JSON in addition to the `@type`\n field. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }\n\n"},{"path":[4,0,1],"span":[124,8,11]},{"path":[4,0,2,0],"span":[153,2,22],"leadingComments":" A URL/resource name that uniquely identifies the type of the serialized\n protocol buffer message. This string must contain at least\n one \"/\" character. The last segment of the URL's path must represent\n the fully qualified name of the type (as in\n `path/google.protobuf.Duration`). The name should be in a canonical form\n (e.g., leading \".\" is not accepted).\n\n In practice, teams usually precompile into the binary all types that they\n expect it to use in the context of Any. However, for URLs which use the\n scheme `http`, `https`, or no scheme, one can optionally set up a type\n server that maps type URLs to message definitions as follows:\n\n * If no scheme is provided, `https` is assumed.\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n * Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\n Note: this functionality is not currently available in the official\n protobuf release, and it is not used for type URLs beginning with\n type.googleapis.com.\n\n Schemes other than `http`, `https` (or the empty scheme) might be\n used with implementation specific semantics.\n\n"},{"path":[4,0,2,0,5],"span":[153,2,8]},{"path":[4,0,2,0,1],"span":[153,9,17]},{"path":[4,0,2,0,3],"span":[153,20,21]},{"path":[4,0,2,1],"span":[156,2,18],"leadingComments":" Must be a valid serialized protocol buffer of the above specified type.\n"},{"path":[4,0,2,1,5],"span":[156,2,7]},{"path":[4,0,2,1,1],"span":[156,8,13]},{"path":[4,0,2,1,3],"span":[156,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.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":"source_tag","number":12,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"sourceTag"},{"name":"tag","number":14,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"tag"},{"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},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":4,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"os_patch","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"processor","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":5,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":6,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_hw"},{"name":"_os"},{"name":"_software_inventory"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"},{"name":"_ot_module"},{"name":"_cloud"}]},{"name":"CloudEntity","field":[{"name":"body","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"body"}]},{"name":"OtModule","field":[{"name":"parent_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":0,"jsonName":"parentId","proto3Optional":true},{"name":"sub_module_id","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"subModuleId"},{"name":"rack_number","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"rackNumber"},{"name":"rack_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rackName"},{"name":"rack_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"rackSize"},{"name":"slot","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"slot"},{"name":"slot_width","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"slotWidth"},{"name":"is_main_module","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMainModule"},{"name":"component_type","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"componentType","proto3Optional":true},{"name":"part_number","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"partNumber","proto3Optional":true},{"name":"ext_info","number":11,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModuleExtInfo","jsonName":"extInfo"}],"oneofDecl":[{"name":"_parent_id"},{"name":"_component_type"},{"name":"_part_number"}]},{"name":"OtModuleExtInfo","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"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},{"name":"sub_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"subType","proto3Optional":true}],"oneofDecl":[{"name":"_fing_type"},{"name":"_sub_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":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":12,"jsonName":"spec","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":"_spec"}]},{"name":"SpecHardwareInfo","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.WindowsOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"},{"name":"ot","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtFirmwareInfo","oneofIndex":0,"jsonName":"ot"}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_name"},{"name":"_version"},{"name":"_build"},{"name":"_fw_version"},{"name":"_cpe"},{"name":"_fw_cpe"},{"name":"_rank"}]},{"name":"OperatingSystemPatch","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"type","proto3Optional":true},{"name":"install_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"installDate","proto3Optional":true},{"name":"install_by","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"installBy","proto3Optional":true},{"name":"comments","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"comments","proto3Optional":true},{"name":"windows_service_pack","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"windowsServicePack","proto3Optional":true}],"oneofDecl":[{"name":"_type"},{"name":"_install_date"},{"name":"_install_by"},{"name":"_comments"},{"name":"_windows_service_pack"}]},{"name":"OtFirmwareInfo","field":[{"name":"firmware","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"firmware"}]},{"name":"WindowsOperatingSystemInfo","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":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"osCode","proto3Optional":true},{"name":"boot_device","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"bootDevice","proto3Optional":true},{"name":"build_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"buildNumber","proto3Optional":true},{"name":"build_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"buildType","proto3Optional":true},{"name":"caption","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"caption","proto3Optional":true},{"name":"code_set","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"codeSet","proto3Optional":true},{"name":"country_code","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"countryCode","proto3Optional":true},{"name":"csd_version","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"csdVersion","proto3Optional":true},{"name":"current_timezone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"currentTimezone","proto3Optional":true},{"name":"debug","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"debug","proto3Optional":true},{"name":"description","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"description","proto3Optional":true},{"name":"foreground_application_boost","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":18,"jsonName":"foregroundApplicationBoost","proto3Optional":true},{"name":"install_date","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":19,"jsonName":"installDate","proto3Optional":true},{"name":"max_process_memory_size","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":20,"jsonName":"maxProcessMemorySize","proto3Optional":true},{"name":"number_of_licensed_users","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":21,"jsonName":"numberOfLicensedUsers","proto3Optional":true},{"name":"organization","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"organization","proto3Optional":true},{"name":"os_language","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":23,"jsonName":"osLanguage","proto3Optional":true},{"name":"os_product_suite","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":24,"jsonName":"osProductSuite","proto3Optional":true},{"name":"os_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"osType","proto3Optional":true},{"name":"plus_product_id","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"plusProductId","proto3Optional":true},{"name":"plus_version_number","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"plusVersionNumber","proto3Optional":true},{"name":"registered_user","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":28,"jsonName":"registeredUser","proto3Optional":true},{"name":"serial_number","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"serialNumber","proto3Optional":true},{"name":"service_pack_major_version","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":30,"jsonName":"servicePackMajorVersion","proto3Optional":true},{"name":"service_pack_minor_version","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":31,"jsonName":"servicePackMinorVersion","proto3Optional":true},{"name":"size_stored_in_paging_files","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":32,"jsonName":"sizeStoredInPagingFiles","proto3Optional":true},{"name":"status","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"status","proto3Optional":true},{"name":"system_device","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"systemDevice","proto3Optional":true},{"name":"system_directory","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":35,"jsonName":"systemDirectory","proto3Optional":true},{"name":"total_virtual_memory_size","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":36,"jsonName":"totalVirtualMemorySize","proto3Optional":true},{"name":"total_visible_memory_size","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":37,"jsonName":"totalVisibleMemorySize","proto3Optional":true},{"name":"windows_directory","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":38,"jsonName":"windowsDirectory","proto3Optional":true},{"name":"total_swap_space_size","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":39,"jsonName":"totalSwapSpaceSize","proto3Optional":true},{"name":"large_system_cache","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":40,"jsonName":"largeSystemCache","proto3Optional":true},{"name":"other_type_description","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":41,"jsonName":"otherTypeDescription","proto3Optional":true},{"name":"product_type","number":47,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":42,"jsonName":"productType","proto3Optional":true},{"name":"suite_mask","number":48,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":43,"jsonName":"suiteMask","proto3Optional":true},{"name":"system_drive","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":44,"jsonName":"systemDrive","proto3Optional":true},{"name":"encryption_level","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":45,"jsonName":"encryptionLevel","proto3Optional":true},{"name":"data_execution_prevention32_bit_applications","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":46,"jsonName":"dataExecutionPrevention32BitApplications","proto3Optional":true},{"name":"is_data_execution_prevention_available","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":47,"jsonName":"isDataExecutionPreventionAvailable","proto3Optional":true},{"name":"data_execution_prevention_drivers","number":53,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":48,"jsonName":"dataExecutionPreventionDrivers","proto3Optional":true},{"name":"data_execution_prevention_support_policy","number":54,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":49,"jsonName":"dataExecutionPreventionSupportPolicy","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"},{"name":"_boot_device"},{"name":"_build_number"},{"name":"_build_type"},{"name":"_caption"},{"name":"_code_set"},{"name":"_country_code"},{"name":"_csd_version"},{"name":"_current_timezone"},{"name":"_debug"},{"name":"_description"},{"name":"_foreground_application_boost"},{"name":"_install_date"},{"name":"_max_process_memory_size"},{"name":"_number_of_licensed_users"},{"name":"_organization"},{"name":"_os_language"},{"name":"_os_product_suite"},{"name":"_os_type"},{"name":"_plus_product_id"},{"name":"_plus_version_number"},{"name":"_registered_user"},{"name":"_serial_number"},{"name":"_service_pack_major_version"},{"name":"_service_pack_minor_version"},{"name":"_size_stored_in_paging_files"},{"name":"_status"},{"name":"_system_device"},{"name":"_system_directory"},{"name":"_total_virtual_memory_size"},{"name":"_total_visible_memory_size"},{"name":"_windows_directory"},{"name":"_total_swap_space_size"},{"name":"_large_system_cache"},{"name":"_other_type_description"},{"name":"_product_type"},{"name":"_suite_mask"},{"name":"_system_drive"},{"name":"_encryption_level"},{"name":"_data_execution_prevention32_bit_applications"},{"name":"_is_data_execution_prevention_available"},{"name":"_data_execution_prevention_drivers"},{"name":"_data_execution_prevention_support_policy"}]},{"name":"NetworkInterfaces","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"interface","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterface","jsonName":"interface"}]},{"name":"NetworkInterface","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type"},{"name":"sub_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subType"},{"name":"id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"id","proto3Optional":true},{"name":"mac","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"mac","proto3Optional":true},{"name":"dhcp_enabled","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"dhcpEnabled","proto3Optional":true},{"name":"dhcp_server_ip","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"dhcpServerIp","proto3Optional":true},{"name":"ip","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetIpAddress","jsonName":"ip"},{"name":"gateway_ip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"gatewayIp","proto3Optional":true},{"name":"gateway_mac","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"gatewayMac","proto3Optional":true},{"name":"dns_server","number":11,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"dnsServer"},{"name":"dns_host_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dnsHostName","proto3Optional":true},{"name":"dns_domain_suffix_search_order","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"dnsDomainSuffixSearchOrder","proto3Optional":true},{"name":"service_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"serviceName","proto3Optional":true},{"name":"database_path","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"databasePath","proto3Optional":true}],"oneofDecl":[{"name":"_id"},{"name":"_mac"},{"name":"_dhcp_enabled"},{"name":"_dhcp_server_ip"},{"name":"_gateway_ip"},{"name":"_gateway_mac"},{"name":"_dns_host_name"},{"name":"_dns_domain_suffix_search_order"},{"name":"_service_name"},{"name":"_database_path"}]},{"name":"NetIpAddress","field":[{"name":"ip","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ip"},{"name":"subnet","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subnet"}]},{"name":"Processor","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"address_sizes","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"addressSizes","proto3Optional":true},{"name":"address_width","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"addressWidth","proto3Optional":true},{"name":"architecture","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"architecture","proto3Optional":true},{"name":"availability","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"availability","proto3Optional":true},{"name":"bogo_mips","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":4,"jsonName":"bogoMips","proto3Optional":true},{"name":"byte_order","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"byteOrder","proto3Optional":true},{"name":"caption","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"caption","proto3Optional":true},{"name":"current_clock_speed","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentClockSpeed","proto3Optional":true},{"name":"data_width","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"deviceId","proto3Optional":true},{"name":"external_clock_mhz","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"externalClockMhz","proto3Optional":true},{"name":"family","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":11,"jsonName":"family","proto3Optional":true},{"name":"hypervisor_vendor","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"hypervisorVendor","proto3Optional":true},{"name":"l1d_cache_size_kb","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"l1dCacheSizeKb","proto3Optional":true},{"name":"l1i_cache_size_kb","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"l1iCacheSizeKb","proto3Optional":true},{"name":"l2_cache_size_kb","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"l2CacheSizeKb","proto3Optional":true},{"name":"l2_cache_speed_mhz","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"l2CacheSpeedMhz","proto3Optional":true},{"name":"l3_cache_size_kb","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"l3CacheSizeKb","proto3Optional":true},{"name":"level","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"level","proto3Optional":true},{"name":"logical_cores_count","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"logicalCoresCount","proto3Optional":true},{"name":"manufacturer","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_clock_speed_mhz","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"maxClockSpeedMhz","proto3Optional":true},{"name":"min_clock_speed_mhz","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"minClockSpeedMhz","proto3Optional":true},{"name":"model_number","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":23,"jsonName":"modelNumber","proto3Optional":true},{"name":"op_modes","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"opModes","proto3Optional":true},{"name":"physical_cores_count","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"physicalCoresCount","proto3Optional":true},{"name":"processor_id","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"processorId","proto3Optional":true},{"name":"processor_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":27,"jsonName":"processorType","proto3Optional":true},{"name":"revision","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":28,"jsonName":"revision","proto3Optional":true},{"name":"socket_designation","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"socketDesignation","proto3Optional":true},{"name":"sockets","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":30,"jsonName":"sockets","proto3Optional":true},{"name":"status","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":31,"jsonName":"status","proto3Optional":true},{"name":"stepping","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":32,"jsonName":"stepping","proto3Optional":true},{"name":"threads_per_physical_core_count","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":33,"jsonName":"threadsPerPhysicalCoreCount","proto3Optional":true},{"name":"unique_id","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"uniqueId","proto3Optional":true},{"name":"upgrade_method","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":35,"jsonName":"upgradeMethod","proto3Optional":true},{"name":"version","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":36,"jsonName":"version","proto3Optional":true},{"name":"virtualization","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":37,"jsonName":"virtualization","proto3Optional":true},{"name":"voltage_capabilities","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":38,"jsonName":"voltageCapabilities","proto3Optional":true}],"oneofDecl":[{"name":"_address_sizes"},{"name":"_address_width"},{"name":"_architecture"},{"name":"_availability"},{"name":"_bogo_mips"},{"name":"_byte_order"},{"name":"_caption"},{"name":"_current_clock_speed"},{"name":"_data_width"},{"name":"_device_id"},{"name":"_external_clock_mhz"},{"name":"_family"},{"name":"_hypervisor_vendor"},{"name":"_l1d_cache_size_kb"},{"name":"_l1i_cache_size_kb"},{"name":"_l2_cache_size_kb"},{"name":"_l2_cache_speed_mhz"},{"name":"_l3_cache_size_kb"},{"name":"_level"},{"name":"_logical_cores_count"},{"name":"_manufacturer"},{"name":"_max_clock_speed_mhz"},{"name":"_min_clock_speed_mhz"},{"name":"_model_number"},{"name":"_op_modes"},{"name":"_physical_cores_count"},{"name":"_processor_id"},{"name":"_processor_type"},{"name":"_revision"},{"name":"_socket_designation"},{"name":"_sockets"},{"name":"_status"},{"name":"_stepping"},{"name":"_threads_per_physical_core_count"},{"name":"_unique_id"},{"name":"_upgrade_method"},{"name":"_version"},{"name":"_virtualization"},{"name":"_voltage_capabilities"}]},{"name":"MappedValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"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.WindowsMonitorInfo","oneofIndex":0,"jsonName":"windows"}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_serial_number"}]},{"name":"WindowsMonitorInfo","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_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","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":"tiktok_account","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"tiktokAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":25,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":26,"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":"_tiktok_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_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":10,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":11,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":12,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","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_MESSAGE","typeName":".google.protobuf.Timestamp","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,751,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":[3,1],"span":[14,0,35]},{"path":[6,0],"span":[23,0,33,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[23,8,31]},{"path":[6,0,2,0],"span":[26,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[26,6,15]},{"path":[6,0,2,0,2],"span":[26,17,33]},{"path":[6,0,2,0,3],"span":[26,44,61]},{"path":[6,0,2,1],"span":[29,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[29,6,18]},{"path":[6,0,2,1,2],"span":[29,19,36]},{"path":[6,0,2,1,6],"span":[29,47,53]},{"path":[6,0,2,1,3],"span":[29,54,72]},{"path":[6,0,2,2],"span":[32,2,77],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,2,1],"span":[32,6,19]},{"path":[6,0,2,2,2],"span":[32,21,41]},{"path":[6,0,2,2,3],"span":[32,52,73]},{"path":[4,0],"span":[38,0,41,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[38,8,24]},{"path":[4,0,2,0],"span":[39,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[39,2,12]},{"path":[4,0,2,0,1],"span":[39,13,24]},{"path":[4,0,2,0,3],"span":[39,27,28]},{"path":[4,1],"span":[43,0,49,1]},{"path":[4,1,1],"span":[43,8,25]},{"path":[4,1,2,0],"span":[44,2,19]},{"path":[4,1,2,0,5],"span":[44,2,6]},{"path":[4,1,2,0,1],"span":[44,7,14]},{"path":[4,1,2,0,3],"span":[44,17,18]},{"path":[4,1,2,1],"span":[45,2,40]},{"path":[4,1,2,1,4],"span":[45,2,10]},{"path":[4,1,2,1,5],"span":[45,11,17]},{"path":[4,1,2,1,1],"span":[45,18,35]},{"path":[4,1,2,1,3],"span":[45,38,39]},{"path":[4,1,2,2],"span":[47,2,29]},{"path":[4,1,2,2,4],"span":[47,2,10]},{"path":[4,1,2,2,6],"span":[47,11,17]},{"path":[4,1,2,2,1],"span":[47,18,24]},{"path":[4,1,2,2,3],"span":[47,27,28]},{"path":[4,1,2,3],"span":[48,2,30]},{"path":[4,1,2,3,4],"span":[48,2,10]},{"path":[4,1,2,3,6],"span":[48,11,17]},{"path":[4,1,2,3,1],"span":[48,18,25]},{"path":[4,1,2,3,3],"span":[48,28,29]},{"path":[4,2],"span":[51,0,53,1]},{"path":[4,2,1],"span":[51,8,25]},{"path":[4,2,2,0],"span":[52,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[52,2,12]},{"path":[4,2,2,0,1],"span":[52,13,19]},{"path":[4,2,2,0,3],"span":[52,22,23]},{"path":[4,3],"span":[55,0,58,1]},{"path":[4,3,1],"span":[55,8,26]},{"path":[4,3,2,0],"span":[56,2,20]},{"path":[4,3,2,0,6],"span":[56,2,8]},{"path":[4,3,2,0,1],"span":[56,9,15]},{"path":[4,3,2,0,3],"span":[56,18,19]},{"path":[4,3,2,1],"span":[57,2,30]},{"path":[4,3,2,1,4],"span":[57,2,10]},{"path":[4,3,2,1,6],"span":[57,11,17]},{"path":[4,3,2,1,1],"span":[57,18,25]},{"path":[4,3,2,1,3],"span":[57,28,29]},{"path":[4,4],"span":[60,0,68,1]},{"path":[4,4,1],"span":[60,8,28]},{"path":[4,4,2,0],"span":[61,2,30]},{"path":[4,4,2,0,4],"span":[61,2,10]},{"path":[4,4,2,0,5],"span":[61,11,16]},{"path":[4,4,2,0,1],"span":[61,17,25]},{"path":[4,4,2,0,3],"span":[61,28,29]},{"path":[4,4,2,1],"span":[62,2,30]},{"path":[4,4,2,1,4],"span":[62,2,10]},{"path":[4,4,2,1,5],"span":[62,11,16]},{"path":[4,4,2,1,1],"span":[62,17,25]},{"path":[4,4,2,1,3],"span":[62,28,29]},{"path":[4,4,2,2],"span":[63,2,27]},{"path":[4,4,2,2,4],"span":[63,2,10]},{"path":[4,4,2,2,5],"span":[63,11,16]},{"path":[4,4,2,2,1],"span":[63,17,22]},{"path":[4,4,2,2,3],"span":[63,25,26]},{"path":[4,4,2,3],"span":[64,2,27]},{"path":[4,4,2,3,4],"span":[64,2,10]},{"path":[4,4,2,3,5],"span":[64,11,16]},{"path":[4,4,2,3,1],"span":[64,17,22]},{"path":[4,4,2,3,3],"span":[64,25,26]},{"path":[4,4,2,4],"span":[65,2,32]},{"path":[4,4,2,4,4],"span":[65,2,10]},{"path":[4,4,2,4,5],"span":[65,11,16]},{"path":[4,4,2,4,1],"span":[65,17,27]},{"path":[4,4,2,4,3],"span":[65,30,31]},{"path":[4,4,2,5],"span":[67,2,36],"trailingComments":" false by default: to avoid to get full path\n"},{"path":[4,4,2,5,4],"span":[67,2,10]},{"path":[4,4,2,5,5],"span":[67,11,15]},{"path":[4,4,2,5,1],"span":[67,16,30]},{"path":[4,4,2,5,3],"span":[67,33,35]},{"path":[4,5],"span":[70,0,76,1]},{"path":[4,5,1],"span":[70,8,29]},{"path":[4,5,2,0],"span":[71,2,34]},{"path":[4,5,2,0,4],"span":[71,2,10]},{"path":[4,5,2,0,6],"span":[71,11,23]},{"path":[4,5,2,0,1],"span":[71,24,29]},{"path":[4,5,2,0,3],"span":[71,32,33]},{"path":[4,5,2,1],"span":[72,2,34]},{"path":[4,5,2,1,4],"span":[72,2,10]},{"path":[4,5,2,1,6],"span":[72,11,23]},{"path":[4,5,2,1,1],"span":[72,24,29]},{"path":[4,5,2,1,3],"span":[72,32,33]},{"path":[4,5,2,2],"span":[73,2,28]},{"path":[4,5,2,2,4],"span":[73,2,10]},{"path":[4,5,2,2,6],"span":[73,11,20]},{"path":[4,5,2,2,1],"span":[73,21,23]},{"path":[4,5,2,2,3],"span":[73,26,27]},{"path":[4,5,2,3],"span":[74,2,34]},{"path":[4,5,2,3,4],"span":[74,2,10]},{"path":[4,5,2,3,6],"span":[74,11,26]},{"path":[4,5,2,3,1],"span":[74,27,29]},{"path":[4,5,2,3,3],"span":[74,32,33]},{"path":[4,5,2,4],"span":[75,2,38]},{"path":[4,5,2,4,4],"span":[75,2,10]},{"path":[4,5,2,4,6],"span":[75,11,25]},{"path":[4,5,2,4,1],"span":[75,26,33]},{"path":[4,5,2,4,3],"span":[75,36,37]},{"path":[4,6],"span":[80,0,86,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[80,8,18]},{"path":[4,6,2,0],"span":[81,2,21]},{"path":[4,6,2,0,5],"span":[81,2,8]},{"path":[4,6,2,0,1],"span":[81,9,16]},{"path":[4,6,2,0,3],"span":[81,19,20]},{"path":[4,6,2,1],"span":[82,2,32]},{"path":[4,6,2,1,4],"span":[82,2,10]},{"path":[4,6,2,1,5],"span":[82,11,17]},{"path":[4,6,2,1,1],"span":[82,18,27]},{"path":[4,6,2,1,3],"span":[82,30,31]},{"path":[4,6,2,2],"span":[83,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[83,2,10]},{"path":[4,6,2,2,5],"span":[83,11,17]},{"path":[4,6,2,2,1],"span":[83,18,29]},{"path":[4,6,2,2,3],"span":[83,32,33]},{"path":[4,6,2,3],"span":[84,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[84,2,10]},{"path":[4,6,2,3,5],"span":[84,11,17]},{"path":[4,6,2,3,1],"span":[84,18,29]},{"path":[4,6,2,3,3],"span":[84,32,33]},{"path":[4,6,2,4],"span":[85,2,32]},{"path":[4,6,2,4,4],"span":[85,2,10]},{"path":[4,6,2,4,5],"span":[85,11,17]},{"path":[4,6,2,4,1],"span":[85,18,27]},{"path":[4,6,2,4,3],"span":[85,30,31]},{"path":[4,7],"span":[89,0,95,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[89,8,14]},{"path":[4,7,8,0],"span":[90,2,94,3]},{"path":[4,7,8,0,1],"span":[90,8,14]},{"path":[4,7,2,0],"span":[91,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[91,4,9]},{"path":[4,7,2,0,1],"span":[91,10,15]},{"path":[4,7,2,0,3],"span":[91,18,19]},{"path":[4,8],"span":[98,0,146,1],"leadingComments":" Asset object: IT/OT/CDR... CDK? "},{"path":[4,8,1],"span":[98,8,13]},{"path":[4,8,2,0],"span":[100,2,20]},{"path":[4,8,2,0,6],"span":[100,2,12]},{"path":[4,8,2,0,1],"span":[100,13,15]},{"path":[4,8,2,0,3],"span":[100,18,19]},{"path":[4,8,2,1],"span":[102,2,44]},{"path":[4,8,2,1,6],"span":[102,2,27]},{"path":[4,8,2,1,1],"span":[102,28,39]},{"path":[4,8,2,1,3],"span":[102,42,43]},{"path":[4,8,2,2],"span":[103,2,43]},{"path":[4,8,2,2,6],"span":[103,2,27]},{"path":[4,8,2,2,1],"span":[103,28,38]},{"path":[4,8,2,2,3],"span":[103,41,42]},{"path":[4,8,2,3],"span":[104,2,45]},{"path":[4,8,2,3,6],"span":[104,2,27]},{"path":[4,8,2,3,1],"span":[104,28,40]},{"path":[4,8,2,3,3],"span":[104,43,44]},{"path":[4,8,2,4],"span":[105,2,46]},{"path":[4,8,2,4,6],"span":[105,2,27]},{"path":[4,8,2,4,1],"span":[105,28,41]},{"path":[4,8,2,4,3],"span":[105,44,45]},{"path":[4,8,2,5],"span":[117,2,34],"leadingComments":"\n Source tags in the format: brand/type/sub-type\n E.g.: LS/IT/CDR\n E.g.: LS/IT/Scan-WMI\n E.g.: LS/IT/Scan-MAC\n E.g.: LS/IT/Scan-Linux\n E.g.: LS/IT/OT (OT like this?)\n E.g.: LS/CDK (cloud discovery?)\n E.g.: LS/DataCore (reconciliation)\n"},{"path":[4,8,2,5,4],"span":[117,2,10]},{"path":[4,8,2,5,5],"span":[117,11,17]},{"path":[4,8,2,5,1],"span":[117,18,28]},{"path":[4,8,2,5,3],"span":[117,31,33]},{"path":[4,8,2,6],"span":[119,2,27]},{"path":[4,8,2,6,4],"span":[119,2,10]},{"path":[4,8,2,6,5],"span":[119,11,17]},{"path":[4,8,2,6,1],"span":[119,18,21]},{"path":[4,8,2,6,3],"span":[119,24,26]},{"path":[4,8,2,7],"span":[121,2,22]},{"path":[4,8,2,7,6],"span":[121,2,12]},{"path":[4,8,2,7,1],"span":[121,13,17]},{"path":[4,8,2,7,3],"span":[121,20,21]},{"path":[4,8,2,8],"span":[123,2,31]},{"path":[4,8,2,8,4],"span":[123,2,10]},{"path":[4,8,2,8,6],"span":[123,11,23]},{"path":[4,8,2,8,1],"span":[123,24,26]},{"path":[4,8,2,8,3],"span":[123,29,30]},{"path":[4,8,2,9],"span":[124,2,38]},{"path":[4,8,2,9,4],"span":[124,2,10]},{"path":[4,8,2,9,6],"span":[124,11,30]},{"path":[4,8,2,9,1],"span":[124,31,33]},{"path":[4,8,2,9,3],"span":[124,36,37]},{"path":[4,8,2,10],"span":[125,2,52]},{"path":[4,8,2,10,4],"span":[125,2,10]},{"path":[4,8,2,10,6],"span":[125,11,28]},{"path":[4,8,2,10,1],"span":[125,29,47]},{"path":[4,8,2,10,3],"span":[125,50,51]},{"path":[4,8,2,11],"span":[127,2,51]},{"path":[4,8,2,11,4],"span":[127,2,10]},{"path":[4,8,2,11,6],"span":[127,11,27]},{"path":[4,8,2,11,1],"span":[127,28,45]},{"path":[4,8,2,11,3],"span":[127,48,50]},{"path":[4,8,2,12],"span":[129,2,53]},{"path":[4,8,2,12,4],"span":[129,2,10]},{"path":[4,8,2,12,6],"span":[129,11,28]},{"path":[4,8,2,12,1],"span":[129,29,47]},{"path":[4,8,2,12,3],"span":[129,50,52]},{"path":[4,8,2,13],"span":[131,2,46]},{"path":[4,8,2,13,4],"span":[131,2,10]},{"path":[4,8,2,13,6],"span":[131,11,31]},{"path":[4,8,2,13,1],"span":[131,32,40]},{"path":[4,8,2,13,3],"span":[131,43,45]},{"path":[4,8,2,14],"span":[133,2,36]},{"path":[4,8,2,14,4],"span":[133,2,10]},{"path":[4,8,2,14,6],"span":[133,11,20]},{"path":[4,8,2,14,1],"span":[133,21,30]},{"path":[4,8,2,14,3],"span":[133,33,35]},{"path":[4,8,2,15],"span":[135,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,15,4],"span":[135,2,10]},{"path":[4,8,2,15,6],"span":[135,11,19]},{"path":[4,8,2,15,1],"span":[135,20,29]},{"path":[4,8,2,15,3],"span":[135,32,34]},{"path":[4,8,2,16],"span":[137,2,34]},{"path":[4,8,2,16,4],"span":[137,2,10]},{"path":[4,8,2,16,6],"span":[137,11,22]},{"path":[4,8,2,16,1],"span":[137,23,28]},{"path":[4,8,2,16,3],"span":[137,31,33]},{"path":[4,9],"span":[156,0,158,1],"leadingComments":"\n Cloud entity coming from CDK scanner.\n This could be extended later on to become more than a carrier of opaque info.\n I.e. the any object contains objects as defined in discovery_cloud.proto\n Only objects needing to be mapped into common/core asset fields are handled\n the rest is fast-forwarded ahead to the chain to allow us to avoid useless\n early heavy mapping and post-pone it only where/when it's needed.\n"},{"path":[4,9,1],"span":[156,8,19]},{"path":[4,9,2,0],"span":[157,2,31]},{"path":[4,9,2,0,6],"span":[157,2,21]},{"path":[4,9,2,0,1],"span":[157,22,26]},{"path":[4,9,2,0,3],"span":[157,29,30]},{"path":[4,10],"span":[168,0,185,1],"leadingComments":"\n OT module/card specific info.\n Information about belonging rack and:\n - if it's main module, reference to all sub-modules\n - if it's sub-module, reference to parent main\n HW info: in HW standard section.\n OS info: in OS standard section.\n"},{"path":[4,10,1],"span":[168,8,16]},{"path":[4,10,2,0],"span":[169,2,36],"trailingComments":" parent module\n"},{"path":[4,10,2,0,4],"span":[169,2,10]},{"path":[4,10,2,0,6],"span":[169,11,21]},{"path":[4,10,2,0,1],"span":[169,22,31]},{"path":[4,10,2,0,3],"span":[169,34,35]},{"path":[4,10,2,1],"span":[170,2,40]},{"path":[4,10,2,1,4],"span":[170,2,10]},{"path":[4,10,2,1,6],"span":[170,11,21]},{"path":[4,10,2,1,1],"span":[170,22,35]},{"path":[4,10,2,1,3],"span":[170,38,39]},{"path":[4,10,2,2],"span":[172,2,24]},{"path":[4,10,2,2,5],"span":[172,2,7]},{"path":[4,10,2,2,1],"span":[172,8,19]},{"path":[4,10,2,2,3],"span":[172,22,23]},{"path":[4,10,2,3],"span":[173,2,23]},{"path":[4,10,2,3,5],"span":[173,2,8]},{"path":[4,10,2,3,1],"span":[173,9,18]},{"path":[4,10,2,3,3],"span":[173,21,22]},{"path":[4,10,2,4],"span":[174,2,22]},{"path":[4,10,2,4,5],"span":[174,2,7]},{"path":[4,10,2,4,1],"span":[174,8,17]},{"path":[4,10,2,4,3],"span":[174,20,21]},{"path":[4,10,2,5],"span":[175,2,17]},{"path":[4,10,2,5,5],"span":[175,2,7]},{"path":[4,10,2,5,1],"span":[175,8,12]},{"path":[4,10,2,5,3],"span":[175,15,16]},{"path":[4,10,2,6],"span":[176,2,23]},{"path":[4,10,2,6,5],"span":[176,2,7]},{"path":[4,10,2,6,1],"span":[176,8,18]},{"path":[4,10,2,6,3],"span":[176,21,22]},{"path":[4,10,2,7],"span":[178,2,26]},{"path":[4,10,2,7,5],"span":[178,2,6]},{"path":[4,10,2,7,1],"span":[178,7,21]},{"path":[4,10,2,7,3],"span":[178,24,25]},{"path":[4,10,2,8],"span":[180,2,37]},{"path":[4,10,2,8,4],"span":[180,2,10]},{"path":[4,10,2,8,5],"span":[180,11,17]},{"path":[4,10,2,8,1],"span":[180,18,32]},{"path":[4,10,2,8,3],"span":[180,35,36]},{"path":[4,10,2,9],"span":[182,2,35]},{"path":[4,10,2,9,4],"span":[182,2,10]},{"path":[4,10,2,9,5],"span":[182,11,17]},{"path":[4,10,2,9,1],"span":[182,18,29]},{"path":[4,10,2,9,3],"span":[182,32,34]},{"path":[4,10,2,10],"span":[184,2,41]},{"path":[4,10,2,10,4],"span":[184,2,10]},{"path":[4,10,2,10,6],"span":[184,11,26]},{"path":[4,10,2,10,1],"span":[184,27,35]},{"path":[4,10,2,10,3],"span":[184,38,40]},{"path":[4,11],"span":[187,0,190,1]},{"path":[4,11,1],"span":[187,8,23]},{"path":[4,11,2,0],"span":[188,2,17]},{"path":[4,11,2,0,5],"span":[188,2,8]},{"path":[4,11,2,0,1],"span":[188,9,12]},{"path":[4,11,2,0,3],"span":[188,15,16]},{"path":[4,11,2,1],"span":[189,2,19]},{"path":[4,11,2,1,5],"span":[189,2,8]},{"path":[4,11,2,1,1],"span":[189,9,14]},{"path":[4,11,2,1,3],"span":[189,17,18]},{"path":[4,12],"span":[196,0,205,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,12,1],"span":[196,8,17]},{"path":[4,12,2,0],"span":[198,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,12,2,0,5],"span":[198,2,8]},{"path":[4,12,2,0,1],"span":[198,9,16]},{"path":[4,12,2,0,3],"span":[198,19,20]},{"path":[4,12,2,1],"span":[200,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,12,2,1,5],"span":[200,2,7]},{"path":[4,12,2,1,1],"span":[200,8,13]},{"path":[4,12,2,1,3],"span":[200,16,17]},{"path":[4,12,2,2],"span":[202,2,32],"leadingComments":" Fing Type\n"},{"path":[4,12,2,2,4],"span":[202,2,10]},{"path":[4,12,2,2,5],"span":[202,11,17]},{"path":[4,12,2,2,1],"span":[202,18,27]},{"path":[4,12,2,2,3],"span":[202,30,31]},{"path":[4,12,2,3],"span":[204,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,12,2,3,4],"span":[204,2,10]},{"path":[4,12,2,3,5],"span":[204,11,17]},{"path":[4,12,2,3,1],"span":[204,18,26]},{"path":[4,12,2,3,3],"span":[204,29,30]},{"path":[4,13],"span":[210,0,219,1],"leadingComments":"\n\n"},{"path":[4,13,1],"span":[210,8,18]},{"path":[4,13,2,0],"span":[211,2,21]},{"path":[4,13,2,0,6],"span":[211,2,11]},{"path":[4,13,2,0,1],"span":[211,12,16]},{"path":[4,13,2,0,3],"span":[211,19,20]},{"path":[4,13,2,1],"span":[212,2,18]},{"path":[4,13,2,1,5],"span":[212,2,8]},{"path":[4,13,2,1,1],"span":[212,9,13]},{"path":[4,13,2,1,3],"span":[212,16,17]},{"path":[4,13,2,2],"span":[213,2,29]},{"path":[4,13,2,2,4],"span":[213,2,10]},{"path":[4,13,2,2,5],"span":[213,11,17]},{"path":[4,13,2,2,1],"span":[213,18,24]},{"path":[4,13,2,2,3],"span":[213,27,28]},{"path":[4,13,2,3],"span":[214,2,33]},{"path":[4,13,2,3,4],"span":[214,2,10]},{"path":[4,13,2,3,5],"span":[214,11,17]},{"path":[4,13,2,3,1],"span":[214,18,28]},{"path":[4,13,2,3,3],"span":[214,31,32]},{"path":[4,13,2,4],"span":[215,2,29]},{"path":[4,13,2,4,4],"span":[215,2,10]},{"path":[4,13,2,4,5],"span":[215,11,17]},{"path":[4,13,2,4,1],"span":[215,18,24]},{"path":[4,13,2,4,3],"span":[215,27,28]},{"path":[4,13,2,5],"span":[216,2,26]},{"path":[4,13,2,5,4],"span":[216,2,10]},{"path":[4,13,2,5,5],"span":[216,11,17]},{"path":[4,13,2,5,1],"span":[216,18,21]},{"path":[4,13,2,5,3],"span":[216,24,25]},{"path":[4,13,2,6],"span":[217,2,33]},{"path":[4,13,2,6,4],"span":[217,2,10]},{"path":[4,13,2,6,5],"span":[217,11,17]},{"path":[4,13,2,6,1],"span":[217,18,28]},{"path":[4,13,2,6,3],"span":[217,31,32]},{"path":[4,13,2,7],"span":[218,2,32]},{"path":[4,13,2,7,4],"span":[218,2,10]},{"path":[4,13,2,7,5],"span":[218,11,17]},{"path":[4,13,2,7,1],"span":[218,18,27]},{"path":[4,13,2,7,3],"span":[218,30,31]},{"path":[4,14],"span":[221,0,244,1]},{"path":[4,14,1],"span":[221,8,20]},{"path":[4,14,2,0],"span":[222,2,29]},{"path":[4,14,2,0,4],"span":[222,2,10]},{"path":[4,14,2,0,5],"span":[222,11,16]},{"path":[4,14,2,0,1],"span":[222,17,24]},{"path":[4,14,2,0,3],"span":[222,27,28]},{"path":[4,14,2,1],"span":[225,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,14,2,1,4],"span":[225,2,10]},{"path":[4,14,2,1,5],"span":[225,11,16]},{"path":[4,14,2,1,1],"span":[225,17,24]},{"path":[4,14,2,1,3],"span":[225,27,28]},{"path":[4,14,2,2],"span":[228,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,14,2,2,4],"span":[228,2,10]},{"path":[4,14,2,2,5],"span":[228,11,16]},{"path":[4,14,2,2,1],"span":[228,17,25]},{"path":[4,14,2,2,3],"span":[228,28,29]},{"path":[4,14,2,3],"span":[231,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,14,2,3,4],"span":[231,2,10]},{"path":[4,14,2,3,5],"span":[231,11,16]},{"path":[4,14,2,3,1],"span":[231,17,26]},{"path":[4,14,2,3,3],"span":[231,29,30]},{"path":[4,14,2,4],"span":[233,2,30]},{"path":[4,14,2,4,4],"span":[233,2,10]},{"path":[4,14,2,4,5],"span":[233,11,15]},{"path":[4,14,2,4,1],"span":[233,16,25]},{"path":[4,14,2,4,3],"span":[233,28,29]},{"path":[4,14,2,5],"span":[234,2,29]},{"path":[4,14,2,5,4],"span":[234,2,10]},{"path":[4,14,2,5,5],"span":[234,11,17]},{"path":[4,14,2,5,1],"span":[234,18,24]},{"path":[4,14,2,5,3],"span":[234,27,28]},{"path":[4,14,2,6],"span":[235,2,33]},{"path":[4,14,2,6,4],"span":[235,2,10]},{"path":[4,14,2,6,5],"span":[235,11,17]},{"path":[4,14,2,6,1],"span":[235,18,27]},{"path":[4,14,2,6,3],"span":[235,30,32]},{"path":[4,14,2,7],"span":[236,2,33]},{"path":[4,14,2,7,4],"span":[236,2,10]},{"path":[4,14,2,7,5],"span":[236,11,17]},{"path":[4,14,2,7,1],"span":[236,18,27]},{"path":[4,14,2,7,3],"span":[236,30,32]},{"path":[4,14,2,8],"span":[237,2,34]},{"path":[4,14,2,8,4],"span":[237,2,10]},{"path":[4,14,2,8,5],"span":[237,11,17]},{"path":[4,14,2,8,1],"span":[237,18,28]},{"path":[4,14,2,8,3],"span":[237,31,33]},{"path":[4,14,2,9],"span":[238,2,35]},{"path":[4,14,2,9,4],"span":[238,2,10]},{"path":[4,14,2,9,5],"span":[238,11,17]},{"path":[4,14,2,9,1],"span":[238,18,29]},{"path":[4,14,2,9,3],"span":[238,32,34]},{"path":[4,14,2,10],"span":[240,2,27]},{"path":[4,14,2,10,4],"span":[240,2,10]},{"path":[4,14,2,10,5],"span":[240,11,17]},{"path":[4,14,2,10,1],"span":[240,18,21]},{"path":[4,14,2,10,3],"span":[240,24,26]},{"path":[4,14,2,11],"span":[241,2,27]},{"path":[4,14,2,11,4],"span":[241,2,10]},{"path":[4,14,2,11,5],"span":[241,11,16]},{"path":[4,14,2,11,1],"span":[241,17,21]},{"path":[4,14,2,11,3],"span":[241,24,26]},{"path":[4,14,2,12],"span":[243,2,38]},{"path":[4,14,2,12,4],"span":[243,2,10]},{"path":[4,14,2,12,6],"span":[243,11,27]},{"path":[4,14,2,12,1],"span":[243,28,32]},{"path":[4,14,2,12,3],"span":[243,35,37]},{"path":[4,15],"span":[246,0,251,1]},{"path":[4,15,1],"span":[246,8,24]},{"path":[4,15,2,0],"span":[247,2,35]},{"path":[4,15,2,0,4],"span":[247,2,10]},{"path":[4,15,2,0,5],"span":[247,11,17]},{"path":[4,15,2,0,1],"span":[247,18,30]},{"path":[4,15,2,0,3],"span":[247,33,34]},{"path":[4,15,2,1],"span":[248,2,28]},{"path":[4,15,2,1,4],"span":[248,2,10]},{"path":[4,15,2,1,5],"span":[248,11,17]},{"path":[4,15,2,1,1],"span":[248,18,23]},{"path":[4,15,2,1,3],"span":[248,26,27]},{"path":[4,15,2,2],"span":[249,2,35]},{"path":[4,15,2,2,4],"span":[249,2,10]},{"path":[4,15,2,2,5],"span":[249,11,17]},{"path":[4,15,2,2,1],"span":[249,18,30]},{"path":[4,15,2,2,3],"span":[249,33,34]},{"path":[4,15,2,3],"span":[250,2,36]},{"path":[4,15,2,3,4],"span":[250,2,10]},{"path":[4,15,2,3,5],"span":[250,11,17]},{"path":[4,15,2,3,1],"span":[250,18,31]},{"path":[4,15,2,3,3],"span":[250,34,35]},{"path":[4,16],"span":[253,0,275,1]},{"path":[4,16,1],"span":[253,8,27]},{"path":[4,16,2,0],"span":[255,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,16,2,0,4],"span":[255,2,10]},{"path":[4,16,2,0,5],"span":[255,11,16]},{"path":[4,16,2,0,1],"span":[255,17,19]},{"path":[4,16,2,0,3],"span":[255,22,23]},{"path":[4,16,2,1],"span":[258,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,16,2,1,4],"span":[258,2,10]},{"path":[4,16,2,1,5],"span":[258,11,16]},{"path":[4,16,2,1,1],"span":[258,17,24]},{"path":[4,16,2,1,3],"span":[258,27,29]},{"path":[4,16,2,2],"span":[260,2,27]},{"path":[4,16,2,2,4],"span":[260,2,10]},{"path":[4,16,2,2,5],"span":[260,11,17]},{"path":[4,16,2,2,1],"span":[260,18,22]},{"path":[4,16,2,2,3],"span":[260,25,26]},{"path":[4,16,2,3],"span":[261,2,30]},{"path":[4,16,2,3,4],"span":[261,2,10]},{"path":[4,16,2,3,5],"span":[261,11,17]},{"path":[4,16,2,3,1],"span":[261,18,25]},{"path":[4,16,2,3,3],"span":[261,28,29]},{"path":[4,16,2,4],"span":[262,2,28]},{"path":[4,16,2,4,4],"span":[262,2,10]},{"path":[4,16,2,4,5],"span":[262,11,17]},{"path":[4,16,2,4,1],"span":[262,18,23]},{"path":[4,16,2,4,3],"span":[262,26,27]},{"path":[4,16,2,5],"span":[264,2,33]},{"path":[4,16,2,5,4],"span":[264,2,10]},{"path":[4,16,2,5,5],"span":[264,11,17]},{"path":[4,16,2,5,1],"span":[264,18,28]},{"path":[4,16,2,5,3],"span":[264,31,32]},{"path":[4,16,2,6],"span":[266,2,26]},{"path":[4,16,2,6,4],"span":[266,2,10]},{"path":[4,16,2,6,5],"span":[266,11,17]},{"path":[4,16,2,6,1],"span":[266,18,21]},{"path":[4,16,2,6,3],"span":[266,24,25]},{"path":[4,16,2,7],"span":[267,2,29]},{"path":[4,16,2,7,4],"span":[267,2,10]},{"path":[4,16,2,7,5],"span":[267,11,17]},{"path":[4,16,2,7,1],"span":[267,18,24]},{"path":[4,16,2,7,3],"span":[267,27,28]},{"path":[4,16,2,8],"span":[269,2,26]},{"path":[4,16,2,8,4],"span":[269,2,10]},{"path":[4,16,2,8,5],"span":[269,11,16]},{"path":[4,16,2,8,1],"span":[269,17,21]},{"path":[4,16,2,8,3],"span":[269,24,25]},{"path":[4,16,8,0],"span":[271,2,274,3]},{"path":[4,16,8,0,1],"span":[271,8,12]},{"path":[4,16,2,9],"span":[272,4,44]},{"path":[4,16,2,9,6],"span":[272,4,30]},{"path":[4,16,2,9,1],"span":[272,31,38]},{"path":[4,16,2,9,3],"span":[272,41,43]},{"path":[4,16,2,10],"span":[273,4,27]},{"path":[4,16,2,10,6],"span":[273,4,18]},{"path":[4,16,2,10,1],"span":[273,19,21]},{"path":[4,16,2,10,3],"span":[273,24,26]},{"path":[4,17],"span":[278,0,294,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,17,1],"span":[278,8,28]},{"path":[4,17,2,0],"span":[280,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,17,2,0,5],"span":[280,2,8]},{"path":[4,17,2,0,1],"span":[280,9,11]},{"path":[4,17,2,0,3],"span":[280,14,15]},{"path":[4,17,2,1],"span":[283,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,17,2,1,4],"span":[283,2,10]},{"path":[4,17,2,1,5],"span":[283,11,17]},{"path":[4,17,2,1,1],"span":[283,18,22]},{"path":[4,17,2,1,3],"span":[283,25,26]},{"path":[4,17,2,2],"span":[285,2,54]},{"path":[4,17,2,2,4],"span":[285,2,10]},{"path":[4,17,2,2,6],"span":[285,11,36]},{"path":[4,17,2,2,1],"span":[285,37,49]},{"path":[4,17,2,2,3],"span":[285,52,53]},{"path":[4,17,2,3],"span":[288,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,17,2,3,4],"span":[288,2,10]},{"path":[4,17,2,3,5],"span":[288,11,17]},{"path":[4,17,2,3,1],"span":[288,18,28]},{"path":[4,17,2,3,3],"span":[288,31,32]},{"path":[4,17,2,4],"span":[290,2,31]},{"path":[4,17,2,4,4],"span":[290,2,10]},{"path":[4,17,2,4,5],"span":[290,11,17]},{"path":[4,17,2,4,1],"span":[290,18,26]},{"path":[4,17,2,4,3],"span":[290,29,30]},{"path":[4,17,2,5],"span":[292,2,43]},{"path":[4,17,2,5,4],"span":[292,2,10]},{"path":[4,17,2,5,5],"span":[292,11,17]},{"path":[4,17,2,5,1],"span":[292,18,38]},{"path":[4,17,2,5,3],"span":[292,41,42]},{"path":[4,18],"span":[296,0,298,1]},{"path":[4,18,1],"span":[296,8,22]},{"path":[4,18,2,0],"span":[297,2,22]},{"path":[4,18,2,0,5],"span":[297,2,8]},{"path":[4,18,2,0,1],"span":[297,9,17]},{"path":[4,18,2,0,3],"span":[297,20,21]},{"path":[4,19],"span":[300,0,353,1]},{"path":[4,19,1],"span":[300,8,34]},{"path":[4,19,2,0],"span":[301,2,30]},{"path":[4,19,2,0,4],"span":[301,2,10]},{"path":[4,19,2,0,5],"span":[301,11,17]},{"path":[4,19,2,0,1],"span":[301,18,25]},{"path":[4,19,2,0,3],"span":[301,28,29]},{"path":[4,19,2,1],"span":[302,2,34]},{"path":[4,19,2,1,4],"span":[302,2,10]},{"path":[4,19,2,1,5],"span":[302,11,16]},{"path":[4,19,2,1,1],"span":[302,17,29]},{"path":[4,19,2,1,3],"span":[302,32,33]},{"path":[4,19,2,2],"span":[303,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,19,2,2,4],"span":[303,2,10]},{"path":[4,19,2,2,5],"span":[303,11,17]},{"path":[4,19,2,2,1],"span":[303,18,23]},{"path":[4,19,2,2,3],"span":[303,26,27]},{"path":[4,19,2,3],"span":[304,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,19,2,3,4],"span":[304,2,10]},{"path":[4,19,2,3,5],"span":[304,11,17]},{"path":[4,19,2,3,1],"span":[304,18,30]},{"path":[4,19,2,3,3],"span":[304,33,34]},{"path":[4,19,2,4],"span":[305,2,41]},{"path":[4,19,2,4,4],"span":[305,2,10]},{"path":[4,19,2,4,5],"span":[305,11,15]},{"path":[4,19,2,4,1],"span":[305,16,36]},{"path":[4,19,2,4,3],"span":[305,39,40]},{"path":[4,19,2,5],"span":[306,2,35]},{"path":[4,19,2,5,4],"span":[306,2,10]},{"path":[4,19,2,5,5],"span":[306,11,15]},{"path":[4,19,2,5,1],"span":[306,16,30]},{"path":[4,19,2,5,3],"span":[306,33,34]},{"path":[4,19,2,6],"span":[307,2,39]},{"path":[4,19,2,6,4],"span":[307,2,10]},{"path":[4,19,2,6,5],"span":[307,11,15]},{"path":[4,19,2,6,1],"span":[307,16,34]},{"path":[4,19,2,6,3],"span":[307,37,38]},{"path":[4,19,2,7],"span":[309,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,19,2,7,4],"span":[309,2,10]},{"path":[4,19,2,7,5],"span":[309,11,17]},{"path":[4,19,2,7,1],"span":[309,18,25]},{"path":[4,19,2,7,3],"span":[309,28,30]},{"path":[4,19,2,8],"span":[311,2,35]},{"path":[4,19,2,8,4],"span":[311,2,10]},{"path":[4,19,2,8,5],"span":[311,11,17]},{"path":[4,19,2,8,1],"span":[311,18,29]},{"path":[4,19,2,8,3],"span":[311,32,34]},{"path":[4,19,2,9],"span":[312,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,19,2,9,4],"span":[312,2,10]},{"path":[4,19,2,9,5],"span":[312,11,17]},{"path":[4,19,2,9,1],"span":[312,18,30]},{"path":[4,19,2,9,3],"span":[312,33,35]},{"path":[4,19,2,10],"span":[313,2,34]},{"path":[4,19,2,10,4],"span":[313,2,10]},{"path":[4,19,2,10,5],"span":[313,11,17]},{"path":[4,19,2,10,1],"span":[313,18,28]},{"path":[4,19,2,10,3],"span":[313,31,33]},{"path":[4,19,2,11],"span":[314,2,31]},{"path":[4,19,2,11,4],"span":[314,2,10]},{"path":[4,19,2,11,5],"span":[314,11,17]},{"path":[4,19,2,11,1],"span":[314,18,25]},{"path":[4,19,2,11,3],"span":[314,28,30]},{"path":[4,19,2,12],"span":[315,2,32]},{"path":[4,19,2,12,4],"span":[315,2,10]},{"path":[4,19,2,12,5],"span":[315,11,17]},{"path":[4,19,2,12,1],"span":[315,18,26]},{"path":[4,19,2,12,3],"span":[315,29,31]},{"path":[4,19,2,13],"span":[316,2,36]},{"path":[4,19,2,13,4],"span":[316,2,10]},{"path":[4,19,2,13,5],"span":[316,11,17]},{"path":[4,19,2,13,1],"span":[316,18,30]},{"path":[4,19,2,13,3],"span":[316,33,35]},{"path":[4,19,2,14],"span":[317,2,35]},{"path":[4,19,2,14,4],"span":[317,2,10]},{"path":[4,19,2,14,5],"span":[317,11,17]},{"path":[4,19,2,14,1],"span":[317,18,29]},{"path":[4,19,2,14,3],"span":[317,32,34]},{"path":[4,19,2,15],"span":[318,2,39]},{"path":[4,19,2,15,4],"span":[318,2,10]},{"path":[4,19,2,15,5],"span":[318,11,16]},{"path":[4,19,2,15,1],"span":[318,17,33]},{"path":[4,19,2,15,3],"span":[318,36,38]},{"path":[4,19,2,16],"span":[319,2,27]},{"path":[4,19,2,16,4],"span":[319,2,10]},{"path":[4,19,2,16,5],"span":[319,11,15]},{"path":[4,19,2,16,1],"span":[319,16,21]},{"path":[4,19,2,16,3],"span":[319,24,26]},{"path":[4,19,2,17],"span":[320,2,35]},{"path":[4,19,2,17,4],"span":[320,2,10]},{"path":[4,19,2,17,5],"span":[320,11,17]},{"path":[4,19,2,17,1],"span":[320,18,29]},{"path":[4,19,2,17,3],"span":[320,32,34]},{"path":[4,19,2,18],"span":[321,2,52]},{"path":[4,19,2,18,4],"span":[321,2,10]},{"path":[4,19,2,18,5],"span":[321,11,17]},{"path":[4,19,2,18,1],"span":[321,18,46]},{"path":[4,19,2,18,3],"span":[321,49,51]},{"path":[4,19,2,19],"span":[322,2,55]},{"path":[4,19,2,19,4],"span":[322,2,10]},{"path":[4,19,2,19,6],"span":[322,11,36]},{"path":[4,19,2,19,1],"span":[322,37,49]},{"path":[4,19,2,19,3],"span":[322,52,54]},{"path":[4,19,2,20],"span":[323,2,47]},{"path":[4,19,2,20,4],"span":[323,2,10]},{"path":[4,19,2,20,5],"span":[323,11,17]},{"path":[4,19,2,20,1],"span":[323,18,41]},{"path":[4,19,2,20,3],"span":[323,44,46]},{"path":[4,19,2,21],"span":[324,2,48]},{"path":[4,19,2,21,4],"span":[324,2,10]},{"path":[4,19,2,21,5],"span":[324,11,17]},{"path":[4,19,2,21,1],"span":[324,18,42]},{"path":[4,19,2,21,3],"span":[324,45,47]},{"path":[4,19,2,22],"span":[325,2,36]},{"path":[4,19,2,22,4],"span":[325,2,10]},{"path":[4,19,2,22,5],"span":[325,11,17]},{"path":[4,19,2,22,1],"span":[325,18,30]},{"path":[4,19,2,22,3],"span":[325,33,35]},{"path":[4,19,2,23],"span":[326,2,40]},{"path":[4,19,2,23,4],"span":[326,2,10]},{"path":[4,19,2,23,6],"span":[326,11,22]},{"path":[4,19,2,23,1],"span":[326,23,34]},{"path":[4,19,2,23,3],"span":[326,37,39]},{"path":[4,19,2,24],"span":[327,2,45]},{"path":[4,19,2,24,4],"span":[327,2,10]},{"path":[4,19,2,24,6],"span":[327,11,22]},{"path":[4,19,2,24,1],"span":[327,23,39]},{"path":[4,19,2,24,3],"span":[327,42,44]},{"path":[4,19,2,25],"span":[328,2,36]},{"path":[4,19,2,25,4],"span":[328,2,10]},{"path":[4,19,2,25,6],"span":[328,11,22]},{"path":[4,19,2,25,1],"span":[328,23,30]},{"path":[4,19,2,25,3],"span":[328,33,35]},{"path":[4,19,2,26],"span":[329,2,39]},{"path":[4,19,2,26,4],"span":[329,2,10]},{"path":[4,19,2,26,5],"span":[329,11,17]},{"path":[4,19,2,26,1],"span":[329,18,33]},{"path":[4,19,2,26,3],"span":[329,36,38]},{"path":[4,19,2,27],"span":[330,2,43]},{"path":[4,19,2,27,4],"span":[330,2,10]},{"path":[4,19,2,27,5],"span":[330,11,17]},{"path":[4,19,2,27,1],"span":[330,18,37]},{"path":[4,19,2,27,3],"span":[330,40,42]},{"path":[4,19,2,28],"span":[331,2,39]},{"path":[4,19,2,28,4],"span":[331,2,10]},{"path":[4,19,2,28,5],"span":[331,11,17]},{"path":[4,19,2,28,1],"span":[331,18,33]},{"path":[4,19,2,28,3],"span":[331,36,38]},{"path":[4,19,2,29],"span":[332,2,37]},{"path":[4,19,2,29,4],"span":[332,2,10]},{"path":[4,19,2,29,5],"span":[332,11,17]},{"path":[4,19,2,29,1],"span":[332,18,31]},{"path":[4,19,2,29,3],"span":[332,34,36]},{"path":[4,19,2,30],"span":[333,2,50]},{"path":[4,19,2,30,4],"span":[333,2,10]},{"path":[4,19,2,30,5],"span":[333,11,17]},{"path":[4,19,2,30,1],"span":[333,18,44]},{"path":[4,19,2,30,3],"span":[333,47,49]},{"path":[4,19,2,31],"span":[334,2,50]},{"path":[4,19,2,31,4],"span":[334,2,10]},{"path":[4,19,2,31,5],"span":[334,11,17]},{"path":[4,19,2,31,1],"span":[334,18,44]},{"path":[4,19,2,31,3],"span":[334,47,49]},{"path":[4,19,2,32],"span":[335,2,51]},{"path":[4,19,2,32,4],"span":[335,2,10]},{"path":[4,19,2,32,5],"span":[335,11,17]},{"path":[4,19,2,32,1],"span":[335,18,45]},{"path":[4,19,2,32,3],"span":[335,48,50]},{"path":[4,19,2,33],"span":[336,2,30]},{"path":[4,19,2,33,4],"span":[336,2,10]},{"path":[4,19,2,33,5],"span":[336,11,17]},{"path":[4,19,2,33,1],"span":[336,18,24]},{"path":[4,19,2,33,3],"span":[336,27,29]},{"path":[4,19,2,34],"span":[337,2,37]},{"path":[4,19,2,34,4],"span":[337,2,10]},{"path":[4,19,2,34,5],"span":[337,11,17]},{"path":[4,19,2,34,1],"span":[337,18,31]},{"path":[4,19,2,34,3],"span":[337,34,36]},{"path":[4,19,2,35],"span":[338,2,40]},{"path":[4,19,2,35,4],"span":[338,2,10]},{"path":[4,19,2,35,5],"span":[338,11,17]},{"path":[4,19,2,35,1],"span":[338,18,34]},{"path":[4,19,2,35,3],"span":[338,37,39]},{"path":[4,19,2,36],"span":[339,2,49]},{"path":[4,19,2,36,4],"span":[339,2,10]},{"path":[4,19,2,36,5],"span":[339,11,17]},{"path":[4,19,2,36,1],"span":[339,18,43]},{"path":[4,19,2,36,3],"span":[339,46,48]},{"path":[4,19,2,37],"span":[340,2,49]},{"path":[4,19,2,37,4],"span":[340,2,10]},{"path":[4,19,2,37,5],"span":[340,11,17]},{"path":[4,19,2,37,1],"span":[340,18,43]},{"path":[4,19,2,37,3],"span":[340,46,48]},{"path":[4,19,2,38],"span":[341,2,41]},{"path":[4,19,2,38,4],"span":[341,2,10]},{"path":[4,19,2,38,5],"span":[341,11,17]},{"path":[4,19,2,38,1],"span":[341,18,35]},{"path":[4,19,2,38,3],"span":[341,38,40]},{"path":[4,19,2,39],"span":[342,2,45]},{"path":[4,19,2,39,4],"span":[342,2,10]},{"path":[4,19,2,39,5],"span":[342,11,17]},{"path":[4,19,2,39,1],"span":[342,18,39]},{"path":[4,19,2,39,3],"span":[342,42,44]},{"path":[4,19,2,40],"span":[343,2,42]},{"path":[4,19,2,40,4],"span":[343,2,10]},{"path":[4,19,2,40,5],"span":[343,11,17]},{"path":[4,19,2,40,1],"span":[343,18,36]},{"path":[4,19,2,40,3],"span":[343,39,41]},{"path":[4,19,2,41],"span":[344,2,46]},{"path":[4,19,2,41,4],"span":[344,2,10]},{"path":[4,19,2,41,5],"span":[344,11,17]},{"path":[4,19,2,41,1],"span":[344,18,40]},{"path":[4,19,2,41,3],"span":[344,43,45]},{"path":[4,19,2,42],"span":[345,2,41]},{"path":[4,19,2,42,4],"span":[345,2,10]},{"path":[4,19,2,42,6],"span":[345,11,22]},{"path":[4,19,2,42,1],"span":[345,23,35]},{"path":[4,19,2,42,3],"span":[345,38,40]},{"path":[4,19,2,43],"span":[346,2,34]},{"path":[4,19,2,43,4],"span":[346,2,10]},{"path":[4,19,2,43,5],"span":[346,11,17]},{"path":[4,19,2,43,1],"span":[346,18,28]},{"path":[4,19,2,43,3],"span":[346,31,33]},{"path":[4,19,2,44],"span":[347,2,36]},{"path":[4,19,2,44,4],"span":[347,2,10]},{"path":[4,19,2,44,5],"span":[347,11,17]},{"path":[4,19,2,44,1],"span":[347,18,30]},{"path":[4,19,2,44,3],"span":[347,33,35]},{"path":[4,19,2,45],"span":[348,2,40]},{"path":[4,19,2,45,4],"span":[348,2,10]},{"path":[4,19,2,45,5],"span":[348,11,17]},{"path":[4,19,2,45,1],"span":[348,18,34]},{"path":[4,19,2,45,3],"span":[348,37,39]},{"path":[4,19,2,46],"span":[349,2,66]},{"path":[4,19,2,46,4],"span":[349,2,10]},{"path":[4,19,2,46,5],"span":[349,11,15]},{"path":[4,19,2,46,1],"span":[349,16,60]},{"path":[4,19,2,46,3],"span":[349,63,65]},{"path":[4,19,2,47],"span":[350,2,60]},{"path":[4,19,2,47,4],"span":[350,2,10]},{"path":[4,19,2,47,5],"span":[350,11,15]},{"path":[4,19,2,47,1],"span":[350,16,54]},{"path":[4,19,2,47,3],"span":[350,57,59]},{"path":[4,19,2,48],"span":[351,2,55]},{"path":[4,19,2,48,4],"span":[351,2,10]},{"path":[4,19,2,48,5],"span":[351,11,15]},{"path":[4,19,2,48,1],"span":[351,16,49]},{"path":[4,19,2,48,3],"span":[351,52,54]},{"path":[4,19,2,49],"span":[352,2,64]},{"path":[4,19,2,49,4],"span":[352,2,10]},{"path":[4,19,2,49,5],"span":[352,11,17]},{"path":[4,19,2,49,1],"span":[352,18,58]},{"path":[4,19,2,49,3],"span":[352,61,63]},{"path":[4,20],"span":[356,0,359,1],"leadingComments":" Network Interface cards "},{"path":[4,20,1],"span":[356,8,25]},{"path":[4,20,2,0],"span":[357,2,42]},{"path":[4,20,2,0,6],"span":[357,2,27]},{"path":[4,20,2,0,1],"span":[357,28,37]},{"path":[4,20,2,0,3],"span":[357,40,41]},{"path":[4,20,2,1],"span":[358,2,42]},{"path":[4,20,2,1,4],"span":[358,2,10]},{"path":[4,20,2,1,6],"span":[358,11,27]},{"path":[4,20,2,1,1],"span":[358,28,37]},{"path":[4,20,2,1,3],"span":[358,40,41]},{"path":[4,21],"span":[361,0,384,1]},{"path":[4,21,1],"span":[361,8,24]},{"path":[4,21,2,0],"span":[362,2,18]},{"path":[4,21,2,0,5],"span":[362,2,8]},{"path":[4,21,2,0,1],"span":[362,9,13]},{"path":[4,21,2,0,3],"span":[362,16,17]},{"path":[4,21,2,1],"span":[363,2,18]},{"path":[4,21,2,1,5],"span":[363,2,8]},{"path":[4,21,2,1,1],"span":[363,9,13]},{"path":[4,21,2,1,3],"span":[363,16,17]},{"path":[4,21,2,2],"span":[364,2,22]},{"path":[4,21,2,2,5],"span":[364,2,8]},{"path":[4,21,2,2,1],"span":[364,9,17]},{"path":[4,21,2,2,3],"span":[364,20,21]},{"path":[4,21,2,3],"span":[366,2,25]},{"path":[4,21,2,3,4],"span":[366,2,10]},{"path":[4,21,2,3,5],"span":[366,11,17]},{"path":[4,21,2,3,1],"span":[366,18,20]},{"path":[4,21,2,3,3],"span":[366,23,24]},{"path":[4,21,2,4],"span":[368,2,26]},{"path":[4,21,2,4,4],"span":[368,2,10]},{"path":[4,21,2,4,5],"span":[368,11,17]},{"path":[4,21,2,4,1],"span":[368,18,21]},{"path":[4,21,2,4,3],"span":[368,24,25]},{"path":[4,21,2,5],"span":[370,2,33]},{"path":[4,21,2,5,4],"span":[370,2,10]},{"path":[4,21,2,5,5],"span":[370,11,15]},{"path":[4,21,2,5,1],"span":[370,16,28]},{"path":[4,21,2,5,3],"span":[370,31,32]},{"path":[4,21,2,6],"span":[371,2,37]},{"path":[4,21,2,6,4],"span":[371,2,10]},{"path":[4,21,2,6,5],"span":[371,11,17]},{"path":[4,21,2,6,1],"span":[371,18,32]},{"path":[4,21,2,6,3],"span":[371,35,36]},{"path":[4,21,2,7],"span":[373,2,31]},{"path":[4,21,2,7,4],"span":[373,2,10]},{"path":[4,21,2,7,6],"span":[373,11,23]},{"path":[4,21,2,7,1],"span":[373,24,26]},{"path":[4,21,2,7,3],"span":[373,29,30]},{"path":[4,21,2,8],"span":[375,2,33]},{"path":[4,21,2,8,4],"span":[375,2,10]},{"path":[4,21,2,8,5],"span":[375,11,17]},{"path":[4,21,2,8,1],"span":[375,18,28]},{"path":[4,21,2,8,3],"span":[375,31,32]},{"path":[4,21,2,9],"span":[376,2,35]},{"path":[4,21,2,9,4],"span":[376,2,10]},{"path":[4,21,2,9,5],"span":[376,11,17]},{"path":[4,21,2,9,1],"span":[376,18,29]},{"path":[4,21,2,9,3],"span":[376,32,34]},{"path":[4,21,2,10],"span":[378,2,34]},{"path":[4,21,2,10,4],"span":[378,2,10]},{"path":[4,21,2,10,5],"span":[378,11,17]},{"path":[4,21,2,10,1],"span":[378,18,28]},{"path":[4,21,2,10,3],"span":[378,31,33]},{"path":[4,21,2,11],"span":[379,2,37]},{"path":[4,21,2,11,4],"span":[379,2,10]},{"path":[4,21,2,11,5],"span":[379,11,17]},{"path":[4,21,2,11,1],"span":[379,18,31]},{"path":[4,21,2,11,3],"span":[379,34,36]},{"path":[4,21,2,12],"span":[380,2,54]},{"path":[4,21,2,12,4],"span":[380,2,10]},{"path":[4,21,2,12,5],"span":[380,11,17]},{"path":[4,21,2,12,1],"span":[380,18,48]},{"path":[4,21,2,12,3],"span":[380,51,53]},{"path":[4,21,2,13],"span":[382,2,36]},{"path":[4,21,2,13,4],"span":[382,2,10]},{"path":[4,21,2,13,5],"span":[382,11,17]},{"path":[4,21,2,13,1],"span":[382,18,30]},{"path":[4,21,2,13,3],"span":[382,33,35]},{"path":[4,21,2,14],"span":[383,2,37]},{"path":[4,21,2,14,4],"span":[383,2,10]},{"path":[4,21,2,14,5],"span":[383,11,17]},{"path":[4,21,2,14,1],"span":[383,18,31]},{"path":[4,21,2,14,3],"span":[383,34,36]},{"path":[4,22],"span":[387,0,390,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,22,1],"span":[387,8,20]},{"path":[4,22,2,0],"span":[388,2,16]},{"path":[4,22,2,0,5],"span":[388,2,8]},{"path":[4,22,2,0,1],"span":[388,9,11]},{"path":[4,22,2,0,3],"span":[388,14,15]},{"path":[4,22,2,1],"span":[389,2,20]},{"path":[4,22,2,1,5],"span":[389,2,8]},{"path":[4,22,2,1,1],"span":[389,9,15]},{"path":[4,22,2,1,3],"span":[389,18,19]},{"path":[4,23],"span":[393,0,434,1],"leadingComments":" Processor *"},{"path":[4,23,1],"span":[393,8,17]},{"path":[4,23,2,0],"span":[394,2,21]},{"path":[4,23,2,0,5],"span":[394,2,8]},{"path":[4,23,2,0,1],"span":[394,10,14]},{"path":[4,23,2,0,3],"span":[394,17,18]},{"path":[4,23,2,1],"span":[395,2,36],"trailingComments":" Linux-only\n"},{"path":[4,23,2,1,4],"span":[395,2,10]},{"path":[4,23,2,1,5],"span":[395,11,17]},{"path":[4,23,2,1,1],"span":[395,18,31]},{"path":[4,23,2,1,3],"span":[395,34,35]},{"path":[4,23,2,2],"span":[396,2,35],"trailingComments":" Windows-only\n"},{"path":[4,23,2,2,4],"span":[396,2,10]},{"path":[4,23,2,2,5],"span":[396,11,16]},{"path":[4,23,2,2,1],"span":[396,17,30]},{"path":[4,23,2,2,3],"span":[396,33,34]},{"path":[4,23,2,3],"span":[397,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,23,2,3,4],"span":[397,2,10]},{"path":[4,23,2,3,6],"span":[397,11,22]},{"path":[4,23,2,3,1],"span":[397,23,35]},{"path":[4,23,2,3,3],"span":[397,38,39]},{"path":[4,23,2,4],"span":[398,2,34],"trailingComments":" Windows-only\n"},{"path":[4,23,2,4,4],"span":[398,2,10]},{"path":[4,23,2,4,5],"span":[398,11,16]},{"path":[4,23,2,4,1],"span":[398,17,29]},{"path":[4,23,2,4,3],"span":[398,32,33]},{"path":[4,23,2,5],"span":[399,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,23,2,5,4],"span":[399,2,10]},{"path":[4,23,2,5,5],"span":[399,11,17]},{"path":[4,23,2,5,1],"span":[399,18,27]},{"path":[4,23,2,5,3],"span":[399,30,31]},{"path":[4,23,2,6],"span":[400,2,33],"trailingComments":" Linux-only\n"},{"path":[4,23,2,6,4],"span":[400,2,10]},{"path":[4,23,2,6,5],"span":[400,11,17]},{"path":[4,23,2,6,1],"span":[400,18,28]},{"path":[4,23,2,6,3],"span":[400,31,32]},{"path":[4,23,2,7],"span":[401,2,30],"trailingComments":" Windows-only\n"},{"path":[4,23,2,7,4],"span":[401,2,10]},{"path":[4,23,2,7,5],"span":[401,11,17]},{"path":[4,23,2,7,1],"span":[401,18,25]},{"path":[4,23,2,7,3],"span":[401,28,29]},{"path":[4,23,2,8],"span":[402,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,23,2,8,4],"span":[402,2,10]},{"path":[4,23,2,8,5],"span":[402,11,16]},{"path":[4,23,2,8,1],"span":[402,17,36]},{"path":[4,23,2,8,3],"span":[402,39,40]},{"path":[4,23,2,9],"span":[403,2,33],"trailingComments":" Windows-only\n"},{"path":[4,23,2,9,4],"span":[403,2,10]},{"path":[4,23,2,9,5],"span":[403,11,16]},{"path":[4,23,2,9,1],"span":[403,17,27]},{"path":[4,23,2,9,3],"span":[403,30,32]},{"path":[4,23,2,10],"span":[404,2,33],"trailingComments":" Windows-only\n"},{"path":[4,23,2,10,4],"span":[404,2,10]},{"path":[4,23,2,10,5],"span":[404,11,17]},{"path":[4,23,2,10,1],"span":[404,18,27]},{"path":[4,23,2,10,3],"span":[404,30,32]},{"path":[4,23,2,11],"span":[405,2,41],"trailingComments":" Windows-only\n"},{"path":[4,23,2,11,4],"span":[405,2,10]},{"path":[4,23,2,11,5],"span":[405,11,16]},{"path":[4,23,2,11,1],"span":[405,17,35]},{"path":[4,23,2,11,3],"span":[405,38,40]},{"path":[4,23,2,12],"span":[406,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,23,2,12,4],"span":[406,2,10]},{"path":[4,23,2,12,6],"span":[406,11,22]},{"path":[4,23,2,12,1],"span":[406,23,29]},{"path":[4,23,2,12,3],"span":[406,32,34]},{"path":[4,23,2,13],"span":[407,2,41],"trailingComments":" Linux-only\n"},{"path":[4,23,2,13,4],"span":[407,2,10]},{"path":[4,23,2,13,5],"span":[407,11,17]},{"path":[4,23,2,13,1],"span":[407,18,35]},{"path":[4,23,2,13,3],"span":[407,38,40]},{"path":[4,23,2,14],"span":[408,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,23,2,14,4],"span":[408,2,10]},{"path":[4,23,2,14,5],"span":[408,11,16]},{"path":[4,23,2,14,1],"span":[408,17,34]},{"path":[4,23,2,14,3],"span":[408,37,39]},{"path":[4,23,2,15],"span":[409,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,23,2,15,4],"span":[409,2,10]},{"path":[4,23,2,15,5],"span":[409,11,16]},{"path":[4,23,2,15,1],"span":[409,17,34]},{"path":[4,23,2,15,3],"span":[409,37,39]},{"path":[4,23,2,16],"span":[410,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,23,2,16,4],"span":[410,2,10]},{"path":[4,23,2,16,5],"span":[410,11,16]},{"path":[4,23,2,16,1],"span":[410,17,33]},{"path":[4,23,2,16,3],"span":[410,36,38]},{"path":[4,23,2,17],"span":[411,2,41],"trailingComments":" Windows-only\n"},{"path":[4,23,2,17,4],"span":[411,2,10]},{"path":[4,23,2,17,5],"span":[411,11,16]},{"path":[4,23,2,17,1],"span":[411,17,35]},{"path":[4,23,2,17,3],"span":[411,38,40]},{"path":[4,23,2,18],"span":[412,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,23,2,18,4],"span":[412,2,10]},{"path":[4,23,2,18,5],"span":[412,11,16]},{"path":[4,23,2,18,1],"span":[412,17,33]},{"path":[4,23,2,18,3],"span":[412,36,38]},{"path":[4,23,2,19],"span":[413,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,23,2,19,4],"span":[413,2,10]},{"path":[4,23,2,19,5],"span":[413,11,16]},{"path":[4,23,2,19,1],"span":[413,17,22]},{"path":[4,23,2,19,3],"span":[413,25,27]},{"path":[4,23,2,20],"span":[414,2,44]},{"path":[4,23,2,20,4],"span":[414,2,10]},{"path":[4,23,2,20,5],"span":[414,11,16]},{"path":[4,23,2,20,1],"span":[414,17,36]},{"path":[4,23,2,20,3],"span":[414,39,41]},{"path":[4,23,2,21],"span":[415,2,38]},{"path":[4,23,2,21,4],"span":[415,2,10]},{"path":[4,23,2,21,5],"span":[415,11,17]},{"path":[4,23,2,21,1],"span":[415,18,30]},{"path":[4,23,2,21,3],"span":[415,33,35]},{"path":[4,23,2,22],"span":[416,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,23,2,22,4],"span":[416,2,10]},{"path":[4,23,2,22,5],"span":[416,11,16]},{"path":[4,23,2,22,1],"span":[416,17,36]},{"path":[4,23,2,22,3],"span":[416,39,41]},{"path":[4,23,2,23],"span":[417,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,23,2,23,4],"span":[417,2,10]},{"path":[4,23,2,23,5],"span":[417,11,16]},{"path":[4,23,2,23,1],"span":[417,17,36]},{"path":[4,23,2,23,3],"span":[417,39,41]},{"path":[4,23,2,24],"span":[418,2,35],"trailingComments":" Linux-only, standardize to numeric\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,29]},{"path":[4,23,2,24,3],"span":[418,32,34]},{"path":[4,23,2,25],"span":[419,2,32],"trailingComments":" Linux-only\n"},{"path":[4,23,2,25,4],"span":[419,2,10]},{"path":[4,23,2,25,5],"span":[419,11,17]},{"path":[4,23,2,25,1],"span":[419,18,26]},{"path":[4,23,2,25,3],"span":[419,29,31]},{"path":[4,23,2,26],"span":[420,2,45]},{"path":[4,23,2,26,4],"span":[420,2,10]},{"path":[4,23,2,26,5],"span":[420,11,16]},{"path":[4,23,2,26,1],"span":[420,17,37]},{"path":[4,23,2,26,3],"span":[420,40,42]},{"path":[4,23,2,27],"span":[421,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,23,2,27,4],"span":[421,2,10]},{"path":[4,23,2,27,5],"span":[421,11,17]},{"path":[4,23,2,27,1],"span":[421,18,30]},{"path":[4,23,2,27,3],"span":[421,33,35]},{"path":[4,23,2,28],"span":[422,2,43],"trailingComments":" Windows-only\n"},{"path":[4,23,2,28,4],"span":[422,2,10]},{"path":[4,23,2,28,6],"span":[422,11,22]},{"path":[4,23,2,28,1],"span":[422,23,37]},{"path":[4,23,2,28,3],"span":[422,40,42]},{"path":[4,23,2,29],"span":[423,2,31],"trailingComments":" Windows-only\n"},{"path":[4,23,2,29,4],"span":[423,2,10]},{"path":[4,23,2,29,5],"span":[423,11,16]},{"path":[4,23,2,29,1],"span":[423,17,25]},{"path":[4,23,2,29,3],"span":[423,28,30]},{"path":[4,23,2,30],"span":[424,2,42],"trailingComments":" Windows-only\n"},{"path":[4,23,2,30,4],"span":[424,2,10]},{"path":[4,23,2,30,5],"span":[424,11,17]},{"path":[4,23,2,30,1],"span":[424,18,36]},{"path":[4,23,2,30,3],"span":[424,39,41]},{"path":[4,23,2,31],"span":[425,2,31],"trailingComments":" Linux-only\n"},{"path":[4,23,2,31,4],"span":[425,2,10]},{"path":[4,23,2,31,5],"span":[425,11,16]},{"path":[4,23,2,31,1],"span":[425,18,25]},{"path":[4,23,2,31,3],"span":[425,28,30]},{"path":[4,23,2,32],"span":[426,2,35],"trailingComments":" Windows-only\n"},{"path":[4,23,2,32,4],"span":[426,2,10]},{"path":[4,23,2,32,6],"span":[426,11,22]},{"path":[4,23,2,32,1],"span":[426,23,29]},{"path":[4,23,2,32,3],"span":[426,32,34]},{"path":[4,23,2,33],"span":[427,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,23,2,33,4],"span":[427,2,10]},{"path":[4,23,2,33,5],"span":[427,11,16]},{"path":[4,23,2,33,1],"span":[427,17,25]},{"path":[4,23,2,33,3],"span":[427,28,30]},{"path":[4,23,2,34],"span":[428,2,54],"trailingComments":" Linux-only\n"},{"path":[4,23,2,34,4],"span":[428,2,10]},{"path":[4,23,2,34,5],"span":[428,11,16]},{"path":[4,23,2,34,1],"span":[428,17,48]},{"path":[4,23,2,34,3],"span":[428,51,53]},{"path":[4,23,2,35],"span":[429,2,33],"trailingComments":" Windows-only\n"},{"path":[4,23,2,35,4],"span":[429,2,10]},{"path":[4,23,2,35,5],"span":[429,11,17]},{"path":[4,23,2,35,1],"span":[429,18,27]},{"path":[4,23,2,35,3],"span":[429,30,32]},{"path":[4,23,2,36],"span":[430,2,43],"trailingComments":" Windows-only\n"},{"path":[4,23,2,36,4],"span":[430,2,10]},{"path":[4,23,2,36,6],"span":[430,11,22]},{"path":[4,23,2,36,1],"span":[430,23,37]},{"path":[4,23,2,36,3],"span":[430,40,42]},{"path":[4,23,2,37],"span":[431,2,31],"trailingComments":" Windows-only\n"},{"path":[4,23,2,37,4],"span":[431,2,10]},{"path":[4,23,2,37,5],"span":[431,11,17]},{"path":[4,23,2,37,1],"span":[431,18,25]},{"path":[4,23,2,37,3],"span":[431,28,30]},{"path":[4,23,2,38],"span":[432,2,38],"trailingComments":" Linux-only\n"},{"path":[4,23,2,38,4],"span":[432,2,10]},{"path":[4,23,2,38,5],"span":[432,11,17]},{"path":[4,23,2,38,1],"span":[432,18,32]},{"path":[4,23,2,38,3],"span":[432,35,37]},{"path":[4,23,2,39],"span":[433,2,49],"trailingComments":" Windows-only\n"},{"path":[4,23,2,39,4],"span":[433,2,10]},{"path":[4,23,2,39,6],"span":[433,11,22]},{"path":[4,23,2,39,1],"span":[433,23,43]},{"path":[4,23,2,39,3],"span":[433,46,48]},{"path":[4,24],"span":[440,0,443,1],"leadingComments":"\n A Mapped value is a numeric field that can optionally have a text looked up value.\n Typical in WMI fields.\n"},{"path":[4,24,1],"span":[440,8,19]},{"path":[4,24,2,0],"span":[441,2,18]},{"path":[4,24,2,0,5],"span":[441,2,7]},{"path":[4,24,2,0,1],"span":[441,8,13]},{"path":[4,24,2,0,3],"span":[441,16,17]},{"path":[4,24,2,1],"span":[442,2,27]},{"path":[4,24,2,1,4],"span":[442,2,10]},{"path":[4,24,2,1,5],"span":[442,11,17]},{"path":[4,24,2,1,1],"span":[442,18,22]},{"path":[4,24,2,1,3],"span":[442,25,26]},{"path":[4,25],"span":[446,0,449,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,25,1],"span":[446,8,24]},{"path":[4,25,2,0],"span":[447,2,42]},{"path":[4,25,2,0,6],"span":[447,2,27]},{"path":[4,25,2,0,1],"span":[447,28,37]},{"path":[4,25,2,0,3],"span":[447,40,41]},{"path":[4,25,2,1],"span":[448,2,31]},{"path":[4,25,2,1,4],"span":[448,2,10]},{"path":[4,25,2,1,6],"span":[448,11,18]},{"path":[4,25,2,1,1],"span":[448,19,26]},{"path":[4,25,2,1,3],"span":[448,29,30]},{"path":[4,26],"span":[453,0,469,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,26,1],"span":[453,8,15]},{"path":[4,26,2,0],"span":[455,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,26,2,0,4],"span":[455,2,10]},{"path":[4,26,2,0,5],"span":[455,11,16]},{"path":[4,26,2,0,1],"span":[455,17,19]},{"path":[4,26,2,0,3],"span":[455,22,23]},{"path":[4,26,2,1],"span":[458,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,26,2,1,4],"span":[458,2,10]},{"path":[4,26,2,1,5],"span":[458,11,16]},{"path":[4,26,2,1,1],"span":[458,17,24]},{"path":[4,26,2,1,3],"span":[458,27,28]},{"path":[4,26,2,2],"span":[460,2,23]},{"path":[4,26,2,2,5],"span":[460,2,8]},{"path":[4,26,2,2,1],"span":[460,9,18]},{"path":[4,26,2,2,3],"span":[460,21,22]},{"path":[4,26,2,3],"span":[461,2,24]},{"path":[4,26,2,3,5],"span":[461,2,8]},{"path":[4,26,2,3,1],"span":[461,9,19]},{"path":[4,26,2,3,3],"span":[461,22,23]},{"path":[4,26,2,4],"span":[463,2,36]},{"path":[4,26,2,4,4],"span":[463,2,10]},{"path":[4,26,2,4,5],"span":[463,11,17]},{"path":[4,26,2,4,1],"span":[463,18,31]},{"path":[4,26,2,4,3],"span":[463,34,35]},{"path":[4,26,2,5],"span":[464,2,50]},{"path":[4,26,2,5,6],"span":[464,2,27]},{"path":[4,26,2,5,1],"span":[464,28,45]},{"path":[4,26,2,5,3],"span":[464,48,49]},{"path":[4,26,8,0],"span":[466,2,468,3]},{"path":[4,26,8,0,1],"span":[466,8,12]},{"path":[4,26,2,6],"span":[467,4,36]},{"path":[4,26,2,6,6],"span":[467,4,22]},{"path":[4,26,2,6,1],"span":[467,23,30]},{"path":[4,26,2,6,3],"span":[467,33,35]},{"path":[4,27],"span":[471,0,480,1]},{"path":[4,27,1],"span":[471,8,26]},{"path":[4,27,2,0],"span":[472,2,19]},{"path":[4,27,2,0,5],"span":[472,2,8]},{"path":[4,27,2,0,1],"span":[472,9,14]},{"path":[4,27,2,0,3],"span":[472,17,18]},{"path":[4,27,2,1],"span":[473,2,36]},{"path":[4,27,2,1,4],"span":[473,2,10]},{"path":[4,27,2,1,5],"span":[473,11,17]},{"path":[4,27,2,1,1],"span":[473,18,31]},{"path":[4,27,2,1,3],"span":[473,34,35]},{"path":[4,27,2,2],"span":[474,2,36]},{"path":[4,27,2,2,4],"span":[474,2,10]},{"path":[4,27,2,2,5],"span":[474,11,17]},{"path":[4,27,2,2,1],"span":[474,18,31]},{"path":[4,27,2,2,3],"span":[474,34,35]},{"path":[4,27,2,3],"span":[475,2,33]},{"path":[4,27,2,3,4],"span":[475,2,10]},{"path":[4,27,2,3,5],"span":[475,11,17]},{"path":[4,27,2,3,1],"span":[475,18,28]},{"path":[4,27,2,3,3],"span":[475,31,32]},{"path":[4,27,2,4],"span":[476,2,40]},{"path":[4,27,2,4,4],"span":[476,2,10]},{"path":[4,27,2,4,5],"span":[476,11,17]},{"path":[4,27,2,4,1],"span":[476,18,35]},{"path":[4,27,2,4,3],"span":[476,38,39]},{"path":[4,27,2,5],"span":[477,2,39]},{"path":[4,27,2,5,4],"span":[477,2,10]},{"path":[4,27,2,5,5],"span":[477,11,17]},{"path":[4,27,2,5,1],"span":[477,18,34]},{"path":[4,27,2,5,3],"span":[477,37,38]},{"path":[4,27,2,6],"span":[478,2,59]},{"path":[4,27,2,6,4],"span":[478,2,10]},{"path":[4,27,2,6,6],"span":[478,11,36]},{"path":[4,27,2,6,1],"span":[478,37,54]},{"path":[4,27,2,6,3],"span":[478,57,58]},{"path":[4,27,2,7],"span":[479,2,32]},{"path":[4,27,2,7,4],"span":[479,2,10]},{"path":[4,27,2,7,5],"span":[479,11,17]},{"path":[4,27,2,7,1],"span":[479,18,27]},{"path":[4,27,2,7,3],"span":[479,30,31]},{"path":[4,28],"span":[489,0,492,1],"leadingComments":"\n Software Inventory with list of installed SW.\n Sources:\n - com.lansweeper.discovery.sensor.windows.v1.WindowsSoftwareInfo: section on Windows WMI/Local/SCCM\n - com.lansweeper.discovery.sensor.mac.v1.MacSoftware: section on Mac via SSH or local\n - com.lansweeper.discovery.sensor.unix.v1.Software: section Linux/Unix via SSH or local\n"},{"path":[4,28,1],"span":[489,8,25]},{"path":[4,28,2,0],"span":[490,2,42]},{"path":[4,28,2,0,6],"span":[490,2,27]},{"path":[4,28,2,0,1],"span":[490,28,37]},{"path":[4,28,2,0,3],"span":[490,40,41]},{"path":[4,28,2,1],"span":[491,2,33]},{"path":[4,28,2,1,4],"span":[491,2,10]},{"path":[4,28,2,1,6],"span":[491,11,19]},{"path":[4,28,2,1,1],"span":[491,20,28]},{"path":[4,28,2,1,3],"span":[491,31,32]},{"path":[4,29],"span":[501,0,532,1],"leadingComments":"\n Software definition: normalized and with link to raw.\n Translated and enriched from:\n - com.lansweeper.discovery.sensor.windows.v1.SoftwareInfo\n - com.lansweeper.discovery.sensor.mac.v1.Software\n - com.lansweeper.discovery.sensor.unix.v1.SoftwareEntry\n"},{"path":[4,29,1],"span":[501,8,16]},{"path":[4,29,2,0],"span":[503,2,26]},{"path":[4,29,2,0,4],"span":[503,2,10]},{"path":[4,29,2,0,5],"span":[503,11,16]},{"path":[4,29,2,0,1],"span":[503,17,21]},{"path":[4,29,2,0,3],"span":[503,24,25]},{"path":[4,29,2,1],"span":[504,2,29]},{"path":[4,29,2,1,4],"span":[504,2,10]},{"path":[4,29,2,1,5],"span":[504,11,16]},{"path":[4,29,2,1,1],"span":[504,17,24]},{"path":[4,29,2,1,3],"span":[504,27,28]},{"path":[4,29,2,2],"span":[505,2,28]},{"path":[4,29,2,2,4],"span":[505,2,10]},{"path":[4,29,2,2,5],"span":[505,11,16]},{"path":[4,29,2,2,1],"span":[505,17,23]},{"path":[4,29,2,2,3],"span":[505,26,27]},{"path":[4,29,2,3],"span":[508,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,29,2,3,4],"span":[508,2,10]},{"path":[4,29,2,3,5],"span":[508,11,16]},{"path":[4,29,2,3,1],"span":[508,17,24]},{"path":[4,29,2,3,3],"span":[508,27,28]},{"path":[4,29,2,4],"span":[511,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,29,2,4,4],"span":[511,2,10]},{"path":[4,29,2,4,5],"span":[511,11,16]},{"path":[4,29,2,4,1],"span":[511,17,22]},{"path":[4,29,2,4,3],"span":[511,25,26]},{"path":[4,29,2,5],"span":[514,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,29,2,5,4],"span":[514,2,10]},{"path":[4,29,2,5,5],"span":[514,11,16]},{"path":[4,29,2,5,1],"span":[514,17,26]},{"path":[4,29,2,5,3],"span":[514,29,30]},{"path":[4,29,2,6],"span":[516,2,32]},{"path":[4,29,2,6,4],"span":[516,2,10]},{"path":[4,29,2,6,5],"span":[516,11,17]},{"path":[4,29,2,6,1],"span":[516,18,27]},{"path":[4,29,2,6,3],"span":[516,30,31]},{"path":[4,29,2,7],"span":[517,2,31]},{"path":[4,29,2,7,4],"span":[517,2,10]},{"path":[4,29,2,7,5],"span":[517,11,17]},{"path":[4,29,2,7,1],"span":[517,18,26]},{"path":[4,29,2,7,3],"span":[517,29,30]},{"path":[4,29,2,8],"span":[518,2,32]},{"path":[4,29,2,8,4],"span":[518,2,10]},{"path":[4,29,2,8,5],"span":[518,11,17]},{"path":[4,29,2,8,1],"span":[518,18,27]},{"path":[4,29,2,8,3],"span":[518,30,31]},{"path":[4,29,2,9],"span":[519,2,28]},{"path":[4,29,2,9,4],"span":[519,2,10]},{"path":[4,29,2,9,5],"span":[519,11,17]},{"path":[4,29,2,9,1],"span":[519,18,22]},{"path":[4,29,2,9,3],"span":[519,25,27]},{"path":[4,29,2,10],"span":[520,2,31]},{"path":[4,29,2,10,4],"span":[520,2,10]},{"path":[4,29,2,10,5],"span":[520,11,17]},{"path":[4,29,2,10,1],"span":[520,18,25]},{"path":[4,29,2,10,3],"span":[520,28,30]},{"path":[4,29,2,11],"span":[521,2,34]},{"path":[4,29,2,11,4],"span":[521,2,10]},{"path":[4,29,2,11,5],"span":[521,11,17]},{"path":[4,29,2,11,1],"span":[521,18,28]},{"path":[4,29,2,11,3],"span":[521,31,33]},{"path":[4,29,2,12],"span":[522,2,31]},{"path":[4,29,2,12,4],"span":[522,2,10]},{"path":[4,29,2,12,5],"span":[522,11,17]},{"path":[4,29,2,12,1],"span":[522,18,25]},{"path":[4,29,2,12,3],"span":[522,28,30]},{"path":[4,29,2,13],"span":[523,2,29]},{"path":[4,29,2,13,4],"span":[523,2,10]},{"path":[4,29,2,13,5],"span":[523,11,17]},{"path":[4,29,2,13,1],"span":[523,18,23]},{"path":[4,29,2,13,3],"span":[523,26,28]},{"path":[4,29,2,14],"span":[524,2,28]},{"path":[4,29,2,14,4],"span":[524,2,10]},{"path":[4,29,2,14,5],"span":[524,11,17]},{"path":[4,29,2,14,1],"span":[524,18,22]},{"path":[4,29,2,14,3],"span":[524,25,27]},{"path":[4,29,2,15],"span":[525,2,28]},{"path":[4,29,2,15,4],"span":[525,2,10]},{"path":[4,29,2,15,5],"span":[525,11,17]},{"path":[4,29,2,15,1],"span":[525,18,22]},{"path":[4,29,2,15,3],"span":[525,25,27]},{"path":[4,29,2,16],"span":[527,2,27]},{"path":[4,29,2,16,4],"span":[527,2,10]},{"path":[4,29,2,16,5],"span":[527,11,17]},{"path":[4,29,2,16,1],"span":[527,18,21]},{"path":[4,29,2,16,3],"span":[527,24,26]},{"path":[4,29,2,17],"span":[529,2,23]},{"path":[4,29,2,17,6],"span":[529,2,13]},{"path":[4,29,2,17,1],"span":[529,14,17]},{"path":[4,29,2,17,3],"span":[529,20,22]},{"path":[4,29,2,18],"span":[530,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,29,2,18,4],"span":[530,2,10]},{"path":[4,29,2,18,5],"span":[530,11,17]},{"path":[4,29,2,18,1],"span":[530,18,26]},{"path":[4,29,2,18,3],"span":[530,29,31]},{"path":[4,29,2,19],"span":[531,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,29,2,19,4],"span":[531,2,10]},{"path":[4,29,2,19,5],"span":[531,11,17]},{"path":[4,29,2,19,1],"span":[531,18,26]},{"path":[4,29,2,19,3],"span":[531,29,31]},{"path":[4,30],"span":[537,0,551,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,30,1],"span":[537,8,19]},{"path":[4,30,2,0],"span":[538,2,18]},{"path":[4,30,2,0,5],"span":[538,2,8]},{"path":[4,30,2,0,1],"span":[538,9,13]},{"path":[4,30,2,0,3],"span":[538,16,17]},{"path":[4,30,2,1],"span":[540,2,29]},{"path":[4,30,2,1,4],"span":[540,2,10]},{"path":[4,30,2,1,5],"span":[540,11,17]},{"path":[4,30,2,1,1],"span":[540,18,24]},{"path":[4,30,2,1,3],"span":[540,27,28]},{"path":[4,30,2,2],"span":[541,2,30]},{"path":[4,30,2,2,4],"span":[541,2,10]},{"path":[4,30,2,2,5],"span":[541,11,17]},{"path":[4,30,2,2,1],"span":[541,18,25]},{"path":[4,30,2,2,3],"span":[541,28,29]},{"path":[4,30,2,3],"span":[542,2,27]},{"path":[4,30,2,3,4],"span":[542,2,10]},{"path":[4,30,2,3,5],"span":[542,11,17]},{"path":[4,30,2,3,1],"span":[542,18,22]},{"path":[4,30,2,3,3],"span":[542,25,26]},{"path":[4,30,2,4],"span":[543,2,31]},{"path":[4,30,2,4,4],"span":[543,2,10]},{"path":[4,30,2,4,5],"span":[543,11,17]},{"path":[4,30,2,4,1],"span":[543,18,26]},{"path":[4,30,2,4,3],"span":[543,29,30]},{"path":[4,30,2,5],"span":[544,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,30,2,5,4],"span":[544,2,10]},{"path":[4,30,2,5,5],"span":[544,11,17]},{"path":[4,30,2,5,1],"span":[544,18,22]},{"path":[4,30,2,5,3],"span":[544,25,26]},{"path":[4,30,2,6],"span":[545,2,54]},{"path":[4,30,2,6,4],"span":[545,2,10]},{"path":[4,30,2,6,6],"span":[545,11,36]},{"path":[4,30,2,6,1],"span":[545,37,49]},{"path":[4,30,2,6,3],"span":[545,52,53]},{"path":[4,30,2,7],"span":[546,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,30,2,7,4],"span":[546,2,10]},{"path":[4,30,2,7,5],"span":[546,11,17]},{"path":[4,30,2,7,1],"span":[546,18,29]},{"path":[4,30,2,7,3],"span":[546,32,33]},{"path":[4,30,2,8],"span":[548,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,30,2,8,4],"span":[548,2,10]},{"path":[4,30,2,8,5],"span":[548,11,17]},{"path":[4,30,2,8,1],"span":[548,18,23]},{"path":[4,30,2,8,3],"span":[548,26,27]},{"path":[4,30,2,9],"span":[550,2,37]},{"path":[4,30,2,9,4],"span":[550,2,10]},{"path":[4,30,2,9,5],"span":[550,11,15]},{"path":[4,30,2,9,1],"span":[550,16,31]},{"path":[4,30,2,9,3],"span":[550,34,36]},{"path":[4,31],"span":[555,0,589,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,31,1],"span":[555,8,20]},{"path":[4,31,2,0],"span":[556,2,16]},{"path":[4,31,2,0,5],"span":[556,2,7]},{"path":[4,31,2,0,1],"span":[556,9,11]},{"path":[4,31,2,0,3],"span":[556,14,15]},{"path":[4,31,2,1],"span":[557,2,23]},{"path":[4,31,2,1,5],"span":[557,2,8]},{"path":[4,31,2,1,1],"span":[557,9,18]},{"path":[4,31,2,1,3],"span":[557,21,22]},{"path":[4,31,2,2],"span":[559,2,32]},{"path":[4,31,2,2,4],"span":[559,2,10]},{"path":[4,31,2,2,5],"span":[559,11,16]},{"path":[4,31,2,2,1],"span":[559,17,26]},{"path":[4,31,2,2,3],"span":[559,29,31]},{"path":[4,31,2,3],"span":[560,2,58]},{"path":[4,31,2,3,4],"span":[560,2,10]},{"path":[4,31,2,3,6],"span":[560,11,36]},{"path":[4,31,2,3,1],"span":[560,37,53]},{"path":[4,31,2,3,3],"span":[560,56,57]},{"path":[4,31,2,4],"span":[562,2,35]},{"path":[4,31,2,4,4],"span":[562,2,10]},{"path":[4,31,2,4,5],"span":[562,11,17]},{"path":[4,31,2,4,1],"span":[562,18,30]},{"path":[4,31,2,4,3],"span":[562,33,34]},{"path":[4,31,2,5],"span":[563,2,37]},{"path":[4,31,2,5,4],"span":[563,2,10]},{"path":[4,31,2,5,5],"span":[563,11,17]},{"path":[4,31,2,5,1],"span":[563,18,32]},{"path":[4,31,2,5,3],"span":[563,35,36]},{"path":[4,31,2,6],"span":[564,2,39]},{"path":[4,31,2,6,4],"span":[564,2,10]},{"path":[4,31,2,6,5],"span":[564,11,17]},{"path":[4,31,2,6,1],"span":[564,18,34]},{"path":[4,31,2,6,3],"span":[564,37,38]},{"path":[4,31,2,7],"span":[565,2,35]},{"path":[4,31,2,7,4],"span":[565,2,10]},{"path":[4,31,2,7,5],"span":[565,11,17]},{"path":[4,31,2,7,1],"span":[565,18,30]},{"path":[4,31,2,7,3],"span":[565,33,34]},{"path":[4,31,2,8],"span":[566,2,43]},{"path":[4,31,2,8,4],"span":[566,2,10]},{"path":[4,31,2,8,5],"span":[566,11,17]},{"path":[4,31,2,8,1],"span":[566,18,37]},{"path":[4,31,2,8,3],"span":[566,40,42]},{"path":[4,31,2,9],"span":[567,2,35]},{"path":[4,31,2,9,4],"span":[567,2,10]},{"path":[4,31,2,9,5],"span":[567,11,17]},{"path":[4,31,2,9,1],"span":[567,18,29]},{"path":[4,31,2,9,3],"span":[567,32,34]},{"path":[4,31,2,10],"span":[568,2,35]},{"path":[4,31,2,10,4],"span":[568,2,10]},{"path":[4,31,2,10,5],"span":[568,11,17]},{"path":[4,31,2,10,1],"span":[568,18,29]},{"path":[4,31,2,10,3],"span":[568,32,34]},{"path":[4,31,2,11],"span":[569,2,37]},{"path":[4,31,2,11,4],"span":[569,2,10]},{"path":[4,31,2,11,5],"span":[569,11,17]},{"path":[4,31,2,11,1],"span":[569,18,31]},{"path":[4,31,2,11,3],"span":[569,34,36]},{"path":[4,31,2,12],"span":[570,2,40]},{"path":[4,31,2,12,4],"span":[570,2,10]},{"path":[4,31,2,12,5],"span":[570,11,17]},{"path":[4,31,2,12,1],"span":[570,18,34]},{"path":[4,31,2,12,3],"span":[570,37,39]},{"path":[4,31,2,13],"span":[571,2,39]},{"path":[4,31,2,13,4],"span":[571,2,10]},{"path":[4,31,2,13,5],"span":[571,11,17]},{"path":[4,31,2,13,1],"span":[571,18,33]},{"path":[4,31,2,13,3],"span":[571,36,38]},{"path":[4,31,2,14],"span":[572,2,36]},{"path":[4,31,2,14,4],"span":[572,2,10]},{"path":[4,31,2,14,5],"span":[572,11,17]},{"path":[4,31,2,14,1],"span":[572,18,30]},{"path":[4,31,2,14,3],"span":[572,33,35]},{"path":[4,31,2,15],"span":[573,2,43]},{"path":[4,31,2,15,4],"span":[573,2,10]},{"path":[4,31,2,15,5],"span":[573,11,17]},{"path":[4,31,2,15,1],"span":[573,18,37]},{"path":[4,31,2,15,3],"span":[573,40,42]},{"path":[4,31,2,16],"span":[574,2,37]},{"path":[4,31,2,16,4],"span":[574,2,10]},{"path":[4,31,2,16,5],"span":[574,11,17]},{"path":[4,31,2,16,1],"span":[574,18,31]},{"path":[4,31,2,16,3],"span":[574,34,36]},{"path":[4,31,2,17],"span":[575,2,40]},{"path":[4,31,2,17,4],"span":[575,2,10]},{"path":[4,31,2,17,5],"span":[575,11,17]},{"path":[4,31,2,17,1],"span":[575,18,34]},{"path":[4,31,2,17,3],"span":[575,37,39]},{"path":[4,31,2,18],"span":[576,2,41]},{"path":[4,31,2,18,4],"span":[576,2,10]},{"path":[4,31,2,18,5],"span":[576,11,17]},{"path":[4,31,2,18,1],"span":[576,18,35]},{"path":[4,31,2,18,3],"span":[576,38,40]},{"path":[4,31,2,19],"span":[577,2,39]},{"path":[4,31,2,19,4],"span":[577,2,10]},{"path":[4,31,2,19,5],"span":[577,11,17]},{"path":[4,31,2,19,1],"span":[577,18,33]},{"path":[4,31,2,19,3],"span":[577,36,38]},{"path":[4,31,2,20],"span":[578,2,41]},{"path":[4,31,2,20,4],"span":[578,2,10]},{"path":[4,31,2,20,5],"span":[578,11,17]},{"path":[4,31,2,20,1],"span":[578,18,35]},{"path":[4,31,2,20,3],"span":[578,38,40]},{"path":[4,31,2,21],"span":[579,2,38]},{"path":[4,31,2,21,4],"span":[579,2,10]},{"path":[4,31,2,21,5],"span":[579,11,17]},{"path":[4,31,2,21,1],"span":[579,18,32]},{"path":[4,31,2,21,3],"span":[579,35,37]},{"path":[4,31,2,22],"span":[581,2,36]},{"path":[4,31,2,22,4],"span":[581,2,10]},{"path":[4,31,2,22,5],"span":[581,11,15]},{"path":[4,31,2,22,1],"span":[581,16,30]},{"path":[4,31,2,22,3],"span":[581,33,35]},{"path":[4,31,2,23],"span":[582,2,36]},{"path":[4,31,2,23,4],"span":[582,2,10]},{"path":[4,31,2,23,5],"span":[582,11,15]},{"path":[4,31,2,23,1],"span":[582,16,30]},{"path":[4,31,2,23,3],"span":[582,33,35]},{"path":[4,31,2,24],"span":[583,2,36]},{"path":[4,31,2,24,4],"span":[583,2,10]},{"path":[4,31,2,24,5],"span":[583,11,15]},{"path":[4,31,2,24,1],"span":[583,16,30]},{"path":[4,31,2,24,3],"span":[583,33,35]},{"path":[4,31,2,25],"span":[584,2,38]},{"path":[4,31,2,25,4],"span":[584,2,10]},{"path":[4,31,2,25,5],"span":[584,11,15]},{"path":[4,31,2,25,1],"span":[584,16,32]},{"path":[4,31,2,25,3],"span":[584,35,37]},{"path":[4,31,2,26],"span":[585,2,38]},{"path":[4,31,2,26,4],"span":[585,2,10]},{"path":[4,31,2,26,5],"span":[585,11,15]},{"path":[4,31,2,26,1],"span":[585,16,32]},{"path":[4,31,2,26,3],"span":[585,35,37]},{"path":[4,31,2,27],"span":[586,2,38]},{"path":[4,31,2,27,4],"span":[586,2,10]},{"path":[4,31,2,27,5],"span":[586,11,15]},{"path":[4,31,2,27,1],"span":[586,16,32]},{"path":[4,31,2,27,3],"span":[586,35,37]},{"path":[4,31,2,28],"span":[588,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,31,2,28,4],"span":[588,2,10]},{"path":[4,31,2,28,5],"span":[588,11,16]},{"path":[4,31,2,28,1],"span":[588,17,28]},{"path":[4,31,2,28,3],"span":[588,31,33]},{"path":[4,32],"span":[591,0,626,1]},{"path":[4,32,1],"span":[591,8,20]},{"path":[4,32,2,0],"span":[592,2,15]},{"path":[4,32,2,0,5],"span":[592,2,7]},{"path":[4,32,2,0,1],"span":[592,8,10]},{"path":[4,32,2,0,3],"span":[592,13,14]},{"path":[4,32,2,1],"span":[594,2,20]},{"path":[4,32,2,1,5],"span":[594,2,7]},{"path":[4,32,2,1,1],"span":[594,8,15]},{"path":[4,32,2,1,3],"span":[594,18,19]},{"path":[4,32,2,2],"span":[595,2,26]},{"path":[4,32,2,2,5],"span":[595,2,8]},{"path":[4,32,2,2,1],"span":[595,9,21]},{"path":[4,32,2,2,3],"span":[595,24,25]},{"path":[4,32,2,3],"span":[597,2,36]},{"path":[4,32,2,3,4],"span":[597,2,10]},{"path":[4,32,2,3,5],"span":[597,11,16]},{"path":[4,32,2,3,1],"span":[597,17,31]},{"path":[4,32,2,3,3],"span":[597,34,35]},{"path":[4,32,2,4],"span":[598,2,40]},{"path":[4,32,2,4,4],"span":[598,2,10]},{"path":[4,32,2,4,5],"span":[598,11,17]},{"path":[4,32,2,4,1],"span":[598,18,35]},{"path":[4,32,2,4,3],"span":[598,38,39]},{"path":[4,32,2,5],"span":[600,2,32]},{"path":[4,32,2,5,4],"span":[600,2,10]},{"path":[4,32,2,5,5],"span":[600,11,16]},{"path":[4,32,2,5,1],"span":[600,17,26]},{"path":[4,32,2,5,3],"span":[600,29,31]},{"path":[4,32,2,6],"span":[601,2,31]},{"path":[4,32,2,6,4],"span":[601,2,10]},{"path":[4,32,2,6,5],"span":[601,11,15]},{"path":[4,32,2,6,1],"span":[601,16,25]},{"path":[4,32,2,6,3],"span":[601,28,30]},{"path":[4,32,2,7],"span":[602,2,34]},{"path":[4,32,2,7,4],"span":[602,2,10]},{"path":[4,32,2,7,5],"span":[602,11,17]},{"path":[4,32,2,7,1],"span":[602,18,28]},{"path":[4,32,2,7,3],"span":[602,31,33]},{"path":[4,32,2,8],"span":[603,2,31]},{"path":[4,32,2,8,4],"span":[603,2,10]},{"path":[4,32,2,8,5],"span":[603,11,17]},{"path":[4,32,2,8,1],"span":[603,18,25]},{"path":[4,32,2,8,3],"span":[603,28,30]},{"path":[4,32,2,9],"span":[604,2,55]},{"path":[4,32,2,9,4],"span":[604,2,10]},{"path":[4,32,2,9,6],"span":[604,11,36]},{"path":[4,32,2,9,1],"span":[604,37,49]},{"path":[4,32,2,9,3],"span":[604,52,54]},{"path":[4,32,2,10],"span":[605,2,52]},{"path":[4,32,2,10,4],"span":[605,2,10]},{"path":[4,32,2,10,6],"span":[605,11,36]},{"path":[4,32,2,10,1],"span":[605,37,46]},{"path":[4,32,2,10,3],"span":[605,49,51]},{"path":[4,32,2,11],"span":[606,2,51]},{"path":[4,32,2,11,4],"span":[606,2,10]},{"path":[4,32,2,11,6],"span":[606,11,36]},{"path":[4,32,2,11,1],"span":[606,37,45]},{"path":[4,32,2,11,3],"span":[606,48,50]},{"path":[4,32,2,12],"span":[607,2,43]},{"path":[4,32,2,12,4],"span":[607,2,10]},{"path":[4,32,2,12,5],"span":[607,11,17]},{"path":[4,32,2,12,1],"span":[607,18,37]},{"path":[4,32,2,12,3],"span":[607,40,42]},{"path":[4,32,2,13],"span":[609,2,35]},{"path":[4,32,2,13,4],"span":[609,2,10]},{"path":[4,32,2,13,5],"span":[609,11,17]},{"path":[4,32,2,13,1],"span":[609,18,29]},{"path":[4,32,2,13,3],"span":[609,32,34]},{"path":[4,32,2,14],"span":[610,2,37]},{"path":[4,32,2,14,4],"span":[610,2,10]},{"path":[4,32,2,14,5],"span":[610,11,17]},{"path":[4,32,2,14,1],"span":[610,18,31]},{"path":[4,32,2,14,3],"span":[610,34,36]},{"path":[4,32,2,15],"span":[612,2,39]},{"path":[4,32,2,15,4],"span":[612,2,10]},{"path":[4,32,2,15,5],"span":[612,11,17]},{"path":[4,32,2,15,1],"span":[612,18,33]},{"path":[4,32,2,15,3],"span":[612,36,38]},{"path":[4,32,2,16],"span":[613,2,43]},{"path":[4,32,2,16,4],"span":[613,2,10]},{"path":[4,32,2,16,5],"span":[613,11,17]},{"path":[4,32,2,16,1],"span":[613,18,37]},{"path":[4,32,2,16,3],"span":[613,40,42]},{"path":[4,32,2,17],"span":[614,2,38]},{"path":[4,32,2,17,4],"span":[614,2,10]},{"path":[4,32,2,17,5],"span":[614,11,17]},{"path":[4,32,2,17,1],"span":[614,18,32]},{"path":[4,32,2,17,3],"span":[614,35,37]},{"path":[4,32,2,18],"span":[615,2,38]},{"path":[4,32,2,18,4],"span":[615,2,10]},{"path":[4,32,2,18,5],"span":[615,11,17]},{"path":[4,32,2,18,1],"span":[615,18,32]},{"path":[4,32,2,18,3],"span":[615,35,37]},{"path":[4,32,2,19],"span":[616,2,41]},{"path":[4,32,2,19,4],"span":[616,2,10]},{"path":[4,32,2,19,5],"span":[616,11,15]},{"path":[4,32,2,19,1],"span":[616,18,35]},{"path":[4,32,2,19,3],"span":[616,38,40]},{"path":[4,32,2,20],"span":[617,2,42]},{"path":[4,32,2,20,4],"span":[617,2,10]},{"path":[4,32,2,20,5],"span":[617,11,17]},{"path":[4,32,2,20,1],"span":[617,18,36]},{"path":[4,32,2,20,3],"span":[617,39,41]},{"path":[4,32,2,21],"span":[619,2,32]},{"path":[4,32,2,21,4],"span":[619,2,10]},{"path":[4,32,2,21,5],"span":[619,11,17]},{"path":[4,32,2,21,1],"span":[619,18,26]},{"path":[4,32,2,21,3],"span":[619,29,31]},{"path":[4,32,2,22],"span":[621,2,33]},{"path":[4,32,2,22,4],"span":[621,2,10]},{"path":[4,32,2,22,5],"span":[621,11,16]},{"path":[4,32,2,22,1],"span":[621,17,27]},{"path":[4,32,2,22,3],"span":[621,30,32]},{"path":[4,32,2,23],"span":[623,2,59]},{"path":[4,32,2,23,4],"span":[623,2,10]},{"path":[4,32,2,23,6],"span":[623,11,36]},{"path":[4,32,2,23,1],"span":[623,37,53]},{"path":[4,32,2,23,3],"span":[623,56,58]},{"path":[4,32,2,24],"span":[625,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,32,2,24,4],"span":[625,2,10]},{"path":[4,32,2,24,5],"span":[625,11,16]},{"path":[4,32,2,24,1],"span":[625,17,28]},{"path":[4,32,2,24,3],"span":[625,31,33]},{"path":[4,33],"span":[628,0,661,1]},{"path":[4,33,1],"span":[628,8,17]},{"path":[4,33,2,0],"span":[629,2,15]},{"path":[4,33,2,0,5],"span":[629,2,7]},{"path":[4,33,2,0,1],"span":[629,8,10]},{"path":[4,33,2,0,3],"span":[629,13,14]},{"path":[4,33,2,1],"span":[631,2,21]},{"path":[4,33,2,1,5],"span":[631,2,8]},{"path":[4,33,2,1,1],"span":[631,9,16]},{"path":[4,33,2,1,3],"span":[631,19,20]},{"path":[4,33,2,2],"span":[633,2,33]},{"path":[4,33,2,2,4],"span":[633,2,10]},{"path":[4,33,2,2,5],"span":[633,11,17]},{"path":[4,33,2,2,1],"span":[633,18,28]},{"path":[4,33,2,2,3],"span":[633,31,32]},{"path":[4,33,2,3],"span":[634,2,32]},{"path":[4,33,2,3,4],"span":[634,2,10]},{"path":[4,33,2,3,5],"span":[634,11,17]},{"path":[4,33,2,3,1],"span":[634,18,26]},{"path":[4,33,2,3,3],"span":[634,29,31]},{"path":[4,33,2,4],"span":[635,2,38]},{"path":[4,33,2,4,4],"span":[635,2,10]},{"path":[4,33,2,4,5],"span":[635,11,17]},{"path":[4,33,2,4,1],"span":[635,18,33]},{"path":[4,33,2,4,3],"span":[635,36,37]},{"path":[4,33,2,5],"span":[637,2,33]},{"path":[4,33,2,5,4],"span":[637,2,10]},{"path":[4,33,2,5,5],"span":[637,11,16]},{"path":[4,33,2,5,1],"span":[637,17,28]},{"path":[4,33,2,5,3],"span":[637,31,32]},{"path":[4,33,2,6],"span":[638,2,29]},{"path":[4,33,2,6,4],"span":[638,2,10]},{"path":[4,33,2,6,5],"span":[638,11,16]},{"path":[4,33,2,6,1],"span":[638,17,24]},{"path":[4,33,2,6,3],"span":[638,27,28]},{"path":[4,33,2,7],"span":[639,2,31]},{"path":[4,33,2,7,4],"span":[639,2,10]},{"path":[4,33,2,7,5],"span":[639,11,16]},{"path":[4,33,2,7,1],"span":[639,17,26]},{"path":[4,33,2,7,3],"span":[639,29,30]},{"path":[4,33,2,8],"span":[641,2,54]},{"path":[4,33,2,8,4],"span":[641,2,10]},{"path":[4,33,2,8,6],"span":[641,11,36]},{"path":[4,33,2,8,1],"span":[641,37,49]},{"path":[4,33,2,8,3],"span":[641,52,53]},{"path":[4,33,2,9],"span":[642,2,51]},{"path":[4,33,2,9,4],"span":[642,2,10]},{"path":[4,33,2,9,6],"span":[642,11,36]},{"path":[4,33,2,9,1],"span":[642,37,45]},{"path":[4,33,2,9,3],"span":[642,48,50]},{"path":[4,33,2,10],"span":[643,2,51]},{"path":[4,33,2,10,4],"span":[643,2,10]},{"path":[4,33,2,10,6],"span":[643,11,36]},{"path":[4,33,2,10,1],"span":[643,37,45]},{"path":[4,33,2,10,3],"span":[643,48,50]},{"path":[4,33,2,11],"span":[644,2,52]},{"path":[4,33,2,11,4],"span":[644,2,10]},{"path":[4,33,2,11,6],"span":[644,11,36]},{"path":[4,33,2,11,1],"span":[644,37,46]},{"path":[4,33,2,11,3],"span":[644,49,51]},{"path":[4,33,2,12],"span":[645,2,43]},{"path":[4,33,2,12,4],"span":[645,2,10]},{"path":[4,33,2,12,5],"span":[645,11,17]},{"path":[4,33,2,12,1],"span":[645,18,37]},{"path":[4,33,2,12,3],"span":[645,40,42]},{"path":[4,33,2,13],"span":[646,2,38]},{"path":[4,33,2,13,4],"span":[646,2,10]},{"path":[4,33,2,13,5],"span":[646,11,17]},{"path":[4,33,2,13,1],"span":[646,18,32]},{"path":[4,33,2,13,3],"span":[646,35,37]},{"path":[4,33,2,14],"span":[647,2,40]},{"path":[4,33,2,14,4],"span":[647,2,10]},{"path":[4,33,2,14,5],"span":[647,11,17]},{"path":[4,33,2,14,1],"span":[647,18,34]},{"path":[4,33,2,14,3],"span":[647,37,39]},{"path":[4,33,2,15],"span":[648,2,36]},{"path":[4,33,2,15,4],"span":[648,2,10]},{"path":[4,33,2,15,5],"span":[648,11,17]},{"path":[4,33,2,15,1],"span":[648,18,30]},{"path":[4,33,2,15,3],"span":[648,33,35]},{"path":[4,33,2,16],"span":[649,2,43]},{"path":[4,33,2,16,4],"span":[649,2,10]},{"path":[4,33,2,16,5],"span":[649,11,17]},{"path":[4,33,2,16,1],"span":[649,18,37]},{"path":[4,33,2,16,3],"span":[649,40,42]},{"path":[4,33,2,17],"span":[650,2,35]},{"path":[4,33,2,17,4],"span":[650,2,10]},{"path":[4,33,2,17,5],"span":[650,11,17]},{"path":[4,33,2,17,1],"span":[650,18,29]},{"path":[4,33,2,17,3],"span":[650,32,34]},{"path":[4,33,2,18],"span":[651,2,35]},{"path":[4,33,2,18,4],"span":[651,2,10]},{"path":[4,33,2,18,5],"span":[651,11,17]},{"path":[4,33,2,18,1],"span":[651,18,29]},{"path":[4,33,2,18,3],"span":[651,32,34]},{"path":[4,33,2,19],"span":[652,2,37]},{"path":[4,33,2,19,4],"span":[652,2,10]},{"path":[4,33,2,19,5],"span":[652,11,17]},{"path":[4,33,2,19,1],"span":[652,18,31]},{"path":[4,33,2,19,3],"span":[652,34,36]},{"path":[4,33,2,20],"span":[653,2,40]},{"path":[4,33,2,20,4],"span":[653,2,10]},{"path":[4,33,2,20,5],"span":[653,11,17]},{"path":[4,33,2,20,1],"span":[653,18,34]},{"path":[4,33,2,20,3],"span":[653,37,39]},{"path":[4,33,2,21],"span":[654,2,39]},{"path":[4,33,2,21,4],"span":[654,2,10]},{"path":[4,33,2,21,5],"span":[654,11,17]},{"path":[4,33,2,21,1],"span":[654,18,33]},{"path":[4,33,2,21,3],"span":[654,36,38]},{"path":[4,33,2,22],"span":[656,2,32]},{"path":[4,33,2,22,4],"span":[656,2,10]},{"path":[4,33,2,22,5],"span":[656,11,17]},{"path":[4,33,2,22,1],"span":[656,18,26]},{"path":[4,33,2,22,3],"span":[656,29,31]},{"path":[4,33,2,23],"span":[658,2,59]},{"path":[4,33,2,23,4],"span":[658,2,10]},{"path":[4,33,2,23,6],"span":[658,11,36]},{"path":[4,33,2,23,1],"span":[658,37,53]},{"path":[4,33,2,23,3],"span":[658,56,58]},{"path":[4,33,2,24],"span":[660,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,33,2,24,4],"span":[660,2,10]},{"path":[4,33,2,24,5],"span":[660,11,16]},{"path":[4,33,2,24,1],"span":[660,17,28]},{"path":[4,33,2,24,3],"span":[660,31,33]},{"path":[4,34],"span":[663,0,693,1]},{"path":[4,34,1],"span":[663,8,23]},{"path":[4,34,2,0],"span":[664,2,15]},{"path":[4,34,2,0,5],"span":[664,2,7]},{"path":[4,34,2,0,1],"span":[664,8,10]},{"path":[4,34,2,0,3],"span":[664,13,14]},{"path":[4,34,2,1],"span":[665,2,21]},{"path":[4,34,2,1,5],"span":[665,2,8]},{"path":[4,34,2,1,1],"span":[665,9,16]},{"path":[4,34,2,1,3],"span":[665,19,20]},{"path":[4,34,2,2],"span":[667,2,33]},{"path":[4,34,2,2,4],"span":[667,2,10]},{"path":[4,34,2,2,5],"span":[667,11,17]},{"path":[4,34,2,2,1],"span":[667,18,28]},{"path":[4,34,2,2,3],"span":[667,31,32]},{"path":[4,34,2,3],"span":[668,2,36]},{"path":[4,34,2,3,4],"span":[668,2,10]},{"path":[4,34,2,3,5],"span":[668,11,17]},{"path":[4,34,2,3,1],"span":[668,18,31]},{"path":[4,34,2,3,3],"span":[668,34,35]},{"path":[4,34,2,4],"span":[669,2,33]},{"path":[4,34,2,4,4],"span":[669,2,10]},{"path":[4,34,2,4,5],"span":[669,11,17]},{"path":[4,34,2,4,1],"span":[669,18,28]},{"path":[4,34,2,4,3],"span":[669,31,32]},{"path":[4,34,2,5],"span":[670,2,30]},{"path":[4,34,2,5,4],"span":[670,2,10]},{"path":[4,34,2,5,5],"span":[670,11,17]},{"path":[4,34,2,5,1],"span":[670,18,25]},{"path":[4,34,2,5,3],"span":[670,28,29]},{"path":[4,34,2,6],"span":[671,2,31]},{"path":[4,34,2,6,4],"span":[671,2,10]},{"path":[4,34,2,6,5],"span":[671,11,17]},{"path":[4,34,2,6,1],"span":[671,18,26]},{"path":[4,34,2,6,3],"span":[671,29,30]},{"path":[4,34,2,7],"span":[673,2,29]},{"path":[4,34,2,7,4],"span":[673,2,10]},{"path":[4,34,2,7,5],"span":[673,11,16]},{"path":[4,34,2,7,1],"span":[673,17,24]},{"path":[4,34,2,7,3],"span":[673,27,28]},{"path":[4,34,2,8],"span":[674,2,31]},{"path":[4,34,2,8,4],"span":[674,2,10]},{"path":[4,34,2,8,5],"span":[674,11,16]},{"path":[4,34,2,8,1],"span":[674,17,26]},{"path":[4,34,2,8,3],"span":[674,29,30]},{"path":[4,34,2,9],"span":[675,2,32]},{"path":[4,34,2,9,4],"span":[675,2,10]},{"path":[4,34,2,9,5],"span":[675,11,16]},{"path":[4,34,2,9,1],"span":[675,17,26]},{"path":[4,34,2,9,3],"span":[675,29,31]},{"path":[4,34,2,10],"span":[677,2,31]},{"path":[4,34,2,10,4],"span":[677,2,10]},{"path":[4,34,2,10,5],"span":[677,11,17]},{"path":[4,34,2,10,1],"span":[677,18,25]},{"path":[4,34,2,10,3],"span":[677,28,30]},{"path":[4,34,2,11],"span":[678,2,35]},{"path":[4,34,2,11,4],"span":[678,2,10]},{"path":[4,34,2,11,5],"span":[678,11,17]},{"path":[4,34,2,11,1],"span":[678,18,29]},{"path":[4,34,2,11,3],"span":[678,32,34]},{"path":[4,34,2,12],"span":[680,2,55]},{"path":[4,34,2,12,4],"span":[680,2,10]},{"path":[4,34,2,12,6],"span":[680,11,36]},{"path":[4,34,2,12,1],"span":[680,37,49]},{"path":[4,34,2,12,3],"span":[680,52,54]},{"path":[4,34,2,13],"span":[681,2,51]},{"path":[4,34,2,13,4],"span":[681,2,10]},{"path":[4,34,2,13,6],"span":[681,11,36]},{"path":[4,34,2,13,1],"span":[681,37,45]},{"path":[4,34,2,13,3],"span":[681,48,50]},{"path":[4,34,2,14],"span":[682,2,51]},{"path":[4,34,2,14,4],"span":[682,2,10]},{"path":[4,34,2,14,6],"span":[682,11,36]},{"path":[4,34,2,14,1],"span":[682,37,45]},{"path":[4,34,2,14,3],"span":[682,48,50]},{"path":[4,34,2,15],"span":[683,2,52]},{"path":[4,34,2,15,4],"span":[683,2,10]},{"path":[4,34,2,15,6],"span":[683,11,36]},{"path":[4,34,2,15,1],"span":[683,37,46]},{"path":[4,34,2,15,3],"span":[683,49,51]},{"path":[4,34,2,16],"span":[684,2,43]},{"path":[4,34,2,16,4],"span":[684,2,10]},{"path":[4,34,2,16,5],"span":[684,11,17]},{"path":[4,34,2,16,1],"span":[684,18,37]},{"path":[4,34,2,16,3],"span":[684,40,42]},{"path":[4,34,2,17],"span":[686,2,33]},{"path":[4,34,2,17,4],"span":[686,2,10]},{"path":[4,34,2,17,5],"span":[686,11,15]},{"path":[4,34,2,17,1],"span":[686,16,27]},{"path":[4,34,2,17,3],"span":[686,30,32]},{"path":[4,34,2,18],"span":[687,2,37]},{"path":[4,34,2,18,4],"span":[687,2,10]},{"path":[4,34,2,18,5],"span":[687,11,15]},{"path":[4,34,2,18,1],"span":[687,16,31]},{"path":[4,34,2,18,3],"span":[687,34,36]},{"path":[4,34,2,19],"span":[688,2,37]},{"path":[4,34,2,19,4],"span":[688,2,10]},{"path":[4,34,2,19,5],"span":[688,11,15]},{"path":[4,34,2,19,1],"span":[688,16,31]},{"path":[4,34,2,19,3],"span":[688,34,36]},{"path":[4,34,2,20],"span":[690,2,59]},{"path":[4,34,2,20,4],"span":[690,2,10]},{"path":[4,34,2,20,6],"span":[690,11,36]},{"path":[4,34,2,20,1],"span":[690,37,53]},{"path":[4,34,2,20,3],"span":[690,56,58]},{"path":[4,34,2,21],"span":[692,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,34,2,21,4],"span":[692,2,10]},{"path":[4,34,2,21,5],"span":[692,11,16]},{"path":[4,34,2,21,1],"span":[692,17,28]},{"path":[4,34,2,21,3],"span":[692,31,34]},{"path":[4,35],"span":[695,0,751,1]},{"path":[4,35,1],"span":[695,8,22]},{"path":[4,35,2,0],"span":[696,2,16]},{"path":[4,35,2,0,5],"span":[696,2,7]},{"path":[4,35,2,0,1],"span":[696,9,11]},{"path":[4,35,2,0,3],"span":[696,14,15]},{"path":[4,35,2,1],"span":[698,2,19]},{"path":[4,35,2,1,5],"span":[698,2,8]},{"path":[4,35,2,1,1],"span":[698,9,14]},{"path":[4,35,2,1,3],"span":[698,17,18]},{"path":[4,35,2,2],"span":[699,2,32]},{"path":[4,35,2,2,4],"span":[699,2,10]},{"path":[4,35,2,2,5],"span":[699,11,17]},{"path":[4,35,2,2,1],"span":[699,18,27]},{"path":[4,35,2,2,3],"span":[699,30,31]},{"path":[4,35,2,3],"span":[700,2,29]},{"path":[4,35,2,3,4],"span":[700,2,10]},{"path":[4,35,2,3,5],"span":[700,11,16]},{"path":[4,35,2,3,1],"span":[700,17,24]},{"path":[4,35,2,3,3],"span":[700,27,28]},{"path":[4,35,2,4],"span":[702,2,31]},{"path":[4,35,2,4,4],"span":[702,2,10]},{"path":[4,35,2,4,5],"span":[702,11,16]},{"path":[4,35,2,4,1],"span":[702,17,26]},{"path":[4,35,2,4,3],"span":[702,29,30]},{"path":[4,35,2,5],"span":[703,2,30]},{"path":[4,35,2,5,4],"span":[703,2,10]},{"path":[4,35,2,5,5],"span":[703,11,15]},{"path":[4,35,2,5,1],"span":[703,16,25]},{"path":[4,35,2,5,3],"span":[703,28,29]},{"path":[4,35,2,6],"span":[704,2,36]},{"path":[4,35,2,6,4],"span":[704,2,10]},{"path":[4,35,2,6,5],"span":[704,11,17]},{"path":[4,35,2,6,1],"span":[704,18,31]},{"path":[4,35,2,6,3],"span":[704,34,35]},{"path":[4,35,2,7],"span":[705,2,35]},{"path":[4,35,2,7,4],"span":[705,2,10]},{"path":[4,35,2,7,5],"span":[705,11,17]},{"path":[4,35,2,7,1],"span":[705,18,30]},{"path":[4,35,2,7,3],"span":[705,33,34]},{"path":[4,35,2,8],"span":[707,2,33]},{"path":[4,35,2,8,4],"span":[707,2,10]},{"path":[4,35,2,8,5],"span":[707,11,17]},{"path":[4,35,2,8,1],"span":[707,18,27]},{"path":[4,35,2,8,3],"span":[707,30,32]},{"path":[4,35,2,9],"span":[708,2,38]},{"path":[4,35,2,9,4],"span":[708,2,10]},{"path":[4,35,2,9,5],"span":[708,11,17]},{"path":[4,35,2,9,1],"span":[708,18,32]},{"path":[4,35,2,9,3],"span":[708,35,37]},{"path":[4,35,2,10],"span":[709,2,36]},{"path":[4,35,2,10,4],"span":[709,2,10]},{"path":[4,35,2,10,5],"span":[709,11,17]},{"path":[4,35,2,10,1],"span":[709,18,30]},{"path":[4,35,2,10,3],"span":[709,33,35]},{"path":[4,35,2,11],"span":[710,2,40]},{"path":[4,35,2,11,4],"span":[710,2,10]},{"path":[4,35,2,11,5],"span":[710,11,17]},{"path":[4,35,2,11,1],"span":[710,18,34]},{"path":[4,35,2,11,3],"span":[710,37,39]},{"path":[4,35,2,12],"span":[711,2,31]},{"path":[4,35,2,12,4],"span":[711,2,10]},{"path":[4,35,2,12,5],"span":[711,11,17]},{"path":[4,35,2,12,1],"span":[711,18,25]},{"path":[4,35,2,12,3],"span":[711,28,30]},{"path":[4,35,2,13],"span":[712,2,36]},{"path":[4,35,2,13,4],"span":[712,2,10]},{"path":[4,35,2,13,5],"span":[712,11,17]},{"path":[4,35,2,13,1],"span":[712,18,30]},{"path":[4,35,2,13,3],"span":[712,33,35]},{"path":[4,35,2,14],"span":[713,2,35]},{"path":[4,35,2,14,4],"span":[713,2,10]},{"path":[4,35,2,14,5],"span":[713,11,16]},{"path":[4,35,2,14,1],"span":[713,17,29]},{"path":[4,35,2,14,3],"span":[713,32,34]},{"path":[4,35,2,15],"span":[714,2,29]},{"path":[4,35,2,15,4],"span":[714,2,10]},{"path":[4,35,2,15,5],"span":[714,11,17]},{"path":[4,35,2,15,1],"span":[714,18,23]},{"path":[4,35,2,15,3],"span":[714,26,28]},{"path":[4,35,2,16],"span":[715,2,33]},{"path":[4,35,2,16,4],"span":[715,2,10]},{"path":[4,35,2,16,5],"span":[715,11,17]},{"path":[4,35,2,16,1],"span":[715,18,27]},{"path":[4,35,2,16,3],"span":[715,30,32]},{"path":[4,35,2,17],"span":[716,2,32]},{"path":[4,35,2,17,4],"span":[716,2,10]},{"path":[4,35,2,17,5],"span":[716,11,17]},{"path":[4,35,2,17,1],"span":[716,18,26]},{"path":[4,35,2,17,3],"span":[716,29,31]},{"path":[4,35,2,18],"span":[717,2,35]},{"path":[4,35,2,18,4],"span":[717,2,10]},{"path":[4,35,2,18,5],"span":[717,11,17]},{"path":[4,35,2,18,1],"span":[717,18,29]},{"path":[4,35,2,18,3],"span":[717,32,34]},{"path":[4,35,2,19],"span":[719,2,36]},{"path":[4,35,2,19,4],"span":[719,2,10]},{"path":[4,35,2,19,5],"span":[719,11,17]},{"path":[4,35,2,19,1],"span":[719,18,30]},{"path":[4,35,2,19,3],"span":[719,33,35]},{"path":[4,35,2,20],"span":[720,2,38]},{"path":[4,35,2,20,4],"span":[720,2,10]},{"path":[4,35,2,20,5],"span":[720,11,16]},{"path":[4,35,2,20,1],"span":[720,17,32]},{"path":[4,35,2,20,3],"span":[720,35,37]},{"path":[4,35,2,21],"span":[721,2,47]},{"path":[4,35,2,21,4],"span":[721,2,10]},{"path":[4,35,2,21,5],"span":[721,11,16]},{"path":[4,35,2,21,1],"span":[721,17,41]},{"path":[4,35,2,21,3],"span":[721,44,46]},{"path":[4,35,2,22],"span":[722,2,30]},{"path":[4,35,2,22,4],"span":[722,2,10]},{"path":[4,35,2,22,5],"span":[722,11,16]},{"path":[4,35,2,22,1],"span":[722,17,24]},{"path":[4,35,2,22,3],"span":[722,27,29]},{"path":[4,35,2,23],"span":[723,2,29]},{"path":[4,35,2,23,4],"span":[723,2,10]},{"path":[4,35,2,23,5],"span":[723,11,16]},{"path":[4,35,2,23,1],"span":[723,17,23]},{"path":[4,35,2,23,3],"span":[723,26,28]},{"path":[4,35,2,24],"span":[724,2,29]},{"path":[4,35,2,24,4],"span":[724,2,10]},{"path":[4,35,2,24,5],"span":[724,11,16]},{"path":[4,35,2,24,1],"span":[724,17,23]},{"path":[4,35,2,24,3],"span":[724,26,28]},{"path":[4,35,2,25],"span":[725,2,36]},{"path":[4,35,2,25,4],"span":[725,2,10]},{"path":[4,35,2,25,5],"span":[725,11,17]},{"path":[4,35,2,25,1],"span":[725,18,30]},{"path":[4,35,2,25,3],"span":[725,33,35]},{"path":[4,35,2,26],"span":[726,2,39]},{"path":[4,35,2,26,4],"span":[726,2,10]},{"path":[4,35,2,26,5],"span":[726,11,16]},{"path":[4,35,2,26,1],"span":[726,17,33]},{"path":[4,35,2,26,3],"span":[726,36,38]},{"path":[4,35,2,27],"span":[727,2,44]},{"path":[4,35,2,27,4],"span":[727,2,10]},{"path":[4,35,2,27,5],"span":[727,11,17]},{"path":[4,35,2,27,1],"span":[727,18,38]},{"path":[4,35,2,27,3],"span":[727,41,43]},{"path":[4,35,2,28],"span":[729,2,36]},{"path":[4,35,2,28,4],"span":[729,2,10]},{"path":[4,35,2,28,5],"span":[729,11,17]},{"path":[4,35,2,28,1],"span":[729,18,30]},{"path":[4,35,2,28,3],"span":[729,33,35]},{"path":[4,35,2,29],"span":[730,2,37]},{"path":[4,35,2,29,4],"span":[730,2,10]},{"path":[4,35,2,29,5],"span":[730,11,16]},{"path":[4,35,2,29,1],"span":[730,17,31]},{"path":[4,35,2,29,3],"span":[730,34,36]},{"path":[4,35,2,30],"span":[731,2,42]},{"path":[4,35,2,30,4],"span":[731,2,10]},{"path":[4,35,2,30,5],"span":[731,11,17]},{"path":[4,35,2,30,1],"span":[731,18,36]},{"path":[4,35,2,30,3],"span":[731,39,41]},{"path":[4,35,2,31],"span":[732,2,38]},{"path":[4,35,2,31,4],"span":[732,2,10]},{"path":[4,35,2,31,5],"span":[732,11,17]},{"path":[4,35,2,31,1],"span":[732,18,32]},{"path":[4,35,2,31,3],"span":[732,35,37]},{"path":[4,35,2,32],"span":[733,2,42]},{"path":[4,35,2,32,4],"span":[733,2,10]},{"path":[4,35,2,32,5],"span":[733,11,17]},{"path":[4,35,2,32,1],"span":[733,18,36]},{"path":[4,35,2,32,3],"span":[733,39,41]},{"path":[4,35,2,33],"span":[734,2,39]},{"path":[4,35,2,33,4],"span":[734,2,10]},{"path":[4,35,2,33,5],"span":[734,11,17]},{"path":[4,35,2,33,1],"span":[734,18,33]},{"path":[4,35,2,33,3],"span":[734,36,38]},{"path":[4,35,2,34],"span":[735,2,34]},{"path":[4,35,2,34,4],"span":[735,2,10]},{"path":[4,35,2,34,5],"span":[735,11,17]},{"path":[4,35,2,34,1],"span":[735,18,28]},{"path":[4,35,2,34,3],"span":[735,31,33]},{"path":[4,35,2,35],"span":[736,2,34]},{"path":[4,35,2,35,4],"span":[736,2,10]},{"path":[4,35,2,35,5],"span":[736,11,17]},{"path":[4,35,2,35,1],"span":[736,18,28]},{"path":[4,35,2,35,3],"span":[736,31,33]},{"path":[4,35,2,36],"span":[737,2,33]},{"path":[4,35,2,36,4],"span":[737,2,10]},{"path":[4,35,2,36,5],"span":[737,11,17]},{"path":[4,35,2,36,1],"span":[737,18,27]},{"path":[4,35,2,36,3],"span":[737,30,32]},{"path":[4,35,2,37],"span":[739,2,33]},{"path":[4,35,2,37,4],"span":[739,2,10]},{"path":[4,35,2,37,5],"span":[739,11,15]},{"path":[4,35,2,37,1],"span":[739,16,27]},{"path":[4,35,2,37,3],"span":[739,30,32]},{"path":[4,35,2,38],"span":[740,2,36]},{"path":[4,35,2,38,4],"span":[740,2,10]},{"path":[4,35,2,38,5],"span":[740,11,15]},{"path":[4,35,2,38,1],"span":[740,16,30]},{"path":[4,35,2,38,3],"span":[740,33,35]},{"path":[4,35,2,39],"span":[741,2,38]},{"path":[4,35,2,39,4],"span":[741,2,10]},{"path":[4,35,2,39,5],"span":[741,11,15]},{"path":[4,35,2,39,1],"span":[741,16,32]},{"path":[4,35,2,39,3],"span":[741,35,37]},{"path":[4,35,2,40],"span":[742,2,34]},{"path":[4,35,2,40,4],"span":[742,2,10]},{"path":[4,35,2,40,5],"span":[742,11,15]},{"path":[4,35,2,40,1],"span":[742,16,28]},{"path":[4,35,2,40,3],"span":[742,31,33]},{"path":[4,35,2,41],"span":[743,2,33]},{"path":[4,35,2,41,4],"span":[743,2,10]},{"path":[4,35,2,41,5],"span":[743,11,15]},{"path":[4,35,2,41,1],"span":[743,16,27]},{"path":[4,35,2,41,3],"span":[743,30,32]},{"path":[4,35,2,42],"span":[744,2,38]},{"path":[4,35,2,42,4],"span":[744,2,10]},{"path":[4,35,2,42,5],"span":[744,11,15]},{"path":[4,35,2,42,1],"span":[744,16,32]},{"path":[4,35,2,42,3],"span":[744,35,37]},{"path":[4,35,2,43],"span":[745,2,36]},{"path":[4,35,2,43,4],"span":[745,2,10]},{"path":[4,35,2,43,5],"span":[745,11,15]},{"path":[4,35,2,43,1],"span":[745,16,30]},{"path":[4,35,2,43,3],"span":[745,33,35]},{"path":[4,35,2,44],"span":[747,2,59]},{"path":[4,35,2,44,4],"span":[747,2,10]},{"path":[4,35,2,44,6],"span":[747,11,36]},{"path":[4,35,2,44,1],"span":[747,37,53]},{"path":[4,35,2,44,3],"span":[747,56,58]},{"path":[4,35,2,45],"span":[749,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,35,2,45,4],"span":[749,2,10]},{"path":[4,35,2,45,5],"span":[749,11,16]},{"path":[4,35,2,45,1],"span":[749,17,28]},{"path":[4,35,2,45,3],"span":[749,31,34]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}