@lansweeper/data-platform-outbound-grpc 0.1.7 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"GetEntityRequest","field":[{"name":"entity_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"entityPath"}]},{"name":"GetEntityResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"entity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","oneofIndex":1,"jsonName":"entity","proto3Optional":true},{"name":"related","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}],"oneofDecl":[{"name":"_error_description"},{"name":"_entity"}]},{"name":"ListEntityRequest","field":[{"name":"filter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"filter"}]},{"name":"ListEntityResponse","field":[{"name":"entity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"entity"},{"name":"related","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}]},{"name":"EntityPath","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"source_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceId","proto3Optional":true},{"name":"source_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceType","proto3Optional":true},{"name":"entity_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"entityType","proto3Optional":true},{"name":"entity_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"entityId","proto3Optional":true}],"oneofDecl":[{"name":"_source_id"},{"name":"_source_type"},{"name":"_entity_type"},{"name":"_entity_id"}]},{"name":"Entity","field":[{"name":"asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Asset","oneofIndex":0,"jsonName":"asset"}],"oneofDecl":[{"name":"entity"}]},{"name":"Asset","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"id"},{"name":"last_synced","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"first_seen","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"firstSeen"},{"name":"last_updated","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastUpdated"},{"name":"last_enriched","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastEnriched"},{"name":"core","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CoreFields","jsonName":"core"},{"name":"hw","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardwareInfo","oneofIndex":0,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemInfo","oneofIndex":1,"jsonName":"os","proto3Optional":true},{"name":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":2,"jsonName":"softwareInventory","proto3Optional":true}],"oneofDecl":[{"name":"_hw"},{"name":"_os"},{"name":"_software_inventory"}]},{"name":"AssetType","field":[{"name":"ls_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsName"},{"name":"fing_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fingType","proto3Optional":true}],"oneofDecl":[{"name":"_fing_type"}]},{"name":"CoreFields","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetType","jsonName":"type"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"domain","proto3Optional":true},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"ipAddress","proto3Optional":true},{"name":"serial","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serial","proto3Optional":true},{"name":"mac","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"mac","proto3Optional":true},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"macVendor","proto3Optional":true},{"name":"sensor_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"sensorId","proto3Optional":true}],"oneofDecl":[{"name":"_domain"},{"name":"_ip_address"},{"name":"_serial"},{"name":"_mac"},{"name":"_mac_vendor"},{"name":"_sensor_id"}]},{"name":"HardwareInfo","field":[{"name":"type_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"typeId","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"model_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"modelId","proto3Optional":true},{"name":"family_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isFamily","proto3Optional":true},{"name":"serial","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"serial","proto3Optional":true},{"name":"type_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":11,"jsonName":"rank","proto3Optional":true},{"name":"catalog_brand","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":12,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":13,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":14,"jsonName":"catalogFamily","proto3Optional":true},{"name":"raw","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawHardwareInfo","oneofIndex":15,"jsonName":"raw","proto3Optional":true}],"oneofDecl":[{"name":"_type_id"},{"name":"_make_id"},{"name":"_model_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_serial"},{"name":"_type_name"},{"name":"_make_name"},{"name":"_model_name"},{"name":"_family_name"},{"name":"_cpe"},{"name":"_rank"},{"name":"_catalog_brand"},{"name":"_catalog_model"},{"name":"_catalog_family"},{"name":"_raw"}]},{"name":"RawHardwareInfo","field":[{"name":"architecture","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"architecture","proto3Optional":true},{"name":"model","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"model","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"}]},{"name":"OperatingSystemInfo","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true},{"name":"build","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"rank","proto3Optional":true},{"name":"catalog_brand","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":10,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_os","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","oneofIndex":11,"jsonName":"catalogOs","proto3Optional":true},{"name":"windows","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"}],"oneofDecl":[{"name":"raw"},{"name":"_id"},{"name":"_make_id"},{"name":"_name"},{"name":"_version"},{"name":"_build"},{"name":"_fw_version"},{"name":"_cpe"},{"name":"_fw_cpe"},{"name":"_rank"},{"name":"_catalog_brand"},{"name":"_catalog_os"}]},{"name":"WindowsRawOperatingSystemInfo","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"service_pack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"servicePack","proto3Optional":true},{"name":"build","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"build","proto3Optional":true},{"name":"version_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"versionName","proto3Optional":true},{"name":"build_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"buildNumber","proto3Optional":true},{"name":"product_type","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"productType","proto3Optional":true},{"name":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"osCode","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_build_number"},{"name":"_product_type"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"}]},{"name":"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":"cpe","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"cpe","proto3Optional":true},{"name":"catalog_software","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":15,"jsonName":"catalogSoftware","proto3Optional":true},{"name":"raw","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawSoftware","jsonName":"raw"}],"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":"_cpe"},{"name":"_catalog_software"}]},{"name":"RawSoftware","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"vendor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"version","proto3Optional":true},{"name":"info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"exe_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"exePath","proto3Optional":true},{"name":"arch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"arch","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"installDate","proto3Optional":true},{"name":"source_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sourceType","proto3Optional":true},{"name":"sw_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"swId","proto3Optional":true},{"name":"is_current_user","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isCurrentUser","proto3Optional":true}],"oneofDecl":[{"name":"_vendor"},{"name":"_version"},{"name":"_info"},{"name":"_exe_path"},{"name":"_arch"},{"name":"_install_date"},{"name":"_source_type"},{"name":"_sw_id"},{"name":"_is_current_user"}]},{"name":"CatalogBrand","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"parent_id","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"parentId","proto3Optional":true},{"name":"last_update_time","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"country_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryCode","proto3Optional":true},{"name":"logo_image_url","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"twitterAccount","proto3Optional":true},{"name":"warranty_url","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"warrantyUrl","proto3Optional":true},{"name":"warranty_direct_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"warrantyDirectUrl","proto3Optional":true},{"name":"community_url","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"communityUrl","proto3Optional":true},{"name":"linkedin_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"linkedinAccount","proto3Optional":true},{"name":"instagram_account","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"instagramAccount","proto3Optional":true},{"name":"youtube_account","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"youtubeAccount","proto3Optional":true},{"name":"pinterest_account","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pinterestAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_parent_id"},{"name":"_last_update_time"},{"name":"_country_code"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_warranty_url"},{"name":"_warranty_direct_url"},{"name":"_community_url"},{"name":"_linkedin_account"},{"name":"_instagram_account"},{"name":"_youtube_account"},{"name":"_pinterest_account"},{"name":"_class_hardware"},{"name":"_class_software"},{"name":"_class_consumer"},{"name":"_class_enterprise"},{"name":"_class_industrial"},{"name":"_class_individual"},{"name":"_match_score"}]},{"name":"CatalogModel","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"makeId"},{"name":"device_model","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceModel"},{"name":"device_type_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"deviceTypeId","proto3Optional":true},{"name":"device_model_code","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"deviceModelCode"},{"name":"family_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isFamily","proto3Optional":true},{"name":"manual_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manualUrl","proto3Optional":true},{"name":"faq_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"faqUrl","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"eosDate","proto3Optional":true},{"name":"lifecyle_confidence","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"price_class","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"priceClass","proto3Optional":true},{"name":"product_class","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"productClass","proto3Optional":true},{"name":"sh_ifttt_handle","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"shIftttHandle","proto3Optional":true},{"name":"sh_google_ass_langs","number":18,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shGoogleAssLangs"},{"name":"sh_alexa_langs","number":19,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shAlexaLangs"},{"name":"sh_hass_handle","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"shHassHandle","proto3Optional":true},{"name":"sh_apple_home_kit","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"shAppleHomeKit","proto3Optional":true},{"name":"sh_open_hab_handle","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"shOpenHabHandle","proto3Optional":true},{"name":"nist_cpe","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"nistCpe","proto3Optional":true},{"name":"popularity","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"popularity","proto3Optional":true},{"name":"last_update_time","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":17,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_device_type_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_manual_url"},{"name":"_faq_url"},{"name":"_release_date"},{"name":"_disc_date"},{"name":"_eos_date"},{"name":"_lifecyle_confidence"},{"name":"_price_class"},{"name":"_product_class"},{"name":"_sh_ifttt_handle"},{"name":"_sh_hass_handle"},{"name":"_sh_apple_home_kit"},{"name":"_sh_open_hab_handle"},{"name":"_nist_cpe"},{"name":"_popularity"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogOs","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"os_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"osName"},{"name":"os_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"osVersion","proto3Optional":true},{"name":"os_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"osBuild","proto3Optional":true},{"name":"os_version_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"osVersionName","proto3Optional":true},{"name":"override_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"logo_image_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"twitterAccount","proto3Optional":true},{"name":"nist_cpe","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"nistCpe","proto3Optional":true},{"name":"last_update_time","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":21,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_os_version"},{"name":"_os_build"},{"name":"_os_version_name"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_nist_cpe"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogSoftware","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"sw_key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swKey"},{"name":"sw_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swName"},{"name":"sw_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"swVersion","proto3Optional":true},{"name":"sw_market_ver","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"swMarketVer","proto3Optional":true},{"name":"sw_edition","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"swEdition","proto3Optional":true},{"name":"sw_lang","number":23,"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":"override_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"parentId","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":"nist_cpe_template","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"nistCpeTemplate","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":11,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":12,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":13,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":14,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"last_update_time","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":16,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"flag_latest","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"flagLatest","proto3Optional":true},{"name":"flag_widespread","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":18,"jsonName":"flagWidespread","proto3Optional":true},{"name":"flag_deprecated","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"flagDeprecated","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_sw_version"},{"name":"_sw_market_ver"},{"name":"_sw_edition"},{"name":"_sw_lang"},{"name":"_sw_build"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_sw_type"},{"name":"_sw_category"},{"name":"_nist_cpe_template"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_last_update_time"},{"name":"_flag_latest"},{"name":"_flag_widespread"},{"name":"_flag_deprecated"},{"name":"_match_score"}]},{"name":"CatalogMonitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"}]}],"service":[{"name":"DataCoreOutboundService","method":[{"name":"GetEntity","inputType":".com.lansweeper.dp.outbound.v1.GetEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.GetEntityResponse","options":{}},{"name":"ListEntities","inputType":".com.lansweeper.dp.outbound.v1.ListEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.ListEntityResponse","options":{},"serverStreaming":true}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,380,1]},{"path":[12],"span":[7,0,18],"leadingComments":"\n Copyright Lansweeper (c)\n\n This files contains the Data Access API and the definition of outbound model\n\n N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc\n"},{"path":[2],"span":[8,0,38]},{"path":[8],"span":[10,0,37]},{"path":[8,11],"span":[10,0,37]},{"path":[8],"span":[11,0,34]},{"path":[8,10],"span":[11,0,34]},{"path":[3,0],"span":[13,0,41]},{"path":[6,0],"span":[22,0,30,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[22,8,31]},{"path":[6,0,2,0],"span":[25,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[25,6,15]},{"path":[6,0,2,0,2],"span":[25,17,33]},{"path":[6,0,2,0,3],"span":[25,44,61]},{"path":[6,0,2,1],"span":[28,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[28,6,18]},{"path":[6,0,2,1,2],"span":[28,19,36]},{"path":[6,0,2,1,6],"span":[28,47,53]},{"path":[6,0,2,1,3],"span":[28,54,72]},{"path":[4,0],"span":[32,0,35,1]},{"path":[4,0,1],"span":[32,8,24]},{"path":[4,0,2,0],"span":[33,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[33,2,12]},{"path":[4,0,2,0,1],"span":[33,13,24]},{"path":[4,0,2,0,3],"span":[33,27,28]},{"path":[4,1],"span":[37,0,43,1]},{"path":[4,1,1],"span":[37,8,25]},{"path":[4,1,2,0],"span":[38,2,19]},{"path":[4,1,2,0,5],"span":[38,2,6]},{"path":[4,1,2,0,1],"span":[38,7,14]},{"path":[4,1,2,0,3],"span":[38,17,18]},{"path":[4,1,2,1],"span":[39,2,40]},{"path":[4,1,2,1,4],"span":[39,2,10]},{"path":[4,1,2,1,5],"span":[39,11,17]},{"path":[4,1,2,1,1],"span":[39,18,35]},{"path":[4,1,2,1,3],"span":[39,38,39]},{"path":[4,1,2,2],"span":[41,2,29]},{"path":[4,1,2,2,4],"span":[41,2,10]},{"path":[4,1,2,2,6],"span":[41,11,17]},{"path":[4,1,2,2,1],"span":[41,18,24]},{"path":[4,1,2,2,3],"span":[41,27,28]},{"path":[4,1,2,3],"span":[42,2,30]},{"path":[4,1,2,3,4],"span":[42,2,10]},{"path":[4,1,2,3,6],"span":[42,11,17]},{"path":[4,1,2,3,1],"span":[42,18,25]},{"path":[4,1,2,3,3],"span":[42,28,29]},{"path":[4,2],"span":[45,0,47,1]},{"path":[4,2,1],"span":[45,8,25]},{"path":[4,2,2,0],"span":[46,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[46,2,12]},{"path":[4,2,2,0,1],"span":[46,13,19]},{"path":[4,2,2,0,3],"span":[46,22,23]},{"path":[4,3],"span":[49,0,52,1]},{"path":[4,3,1],"span":[49,8,26]},{"path":[4,3,2,0],"span":[50,2,20]},{"path":[4,3,2,0,6],"span":[50,2,8]},{"path":[4,3,2,0,1],"span":[50,9,15]},{"path":[4,3,2,0,3],"span":[50,18,19]},{"path":[4,3,2,1],"span":[51,2,30]},{"path":[4,3,2,1,4],"span":[51,2,10]},{"path":[4,3,2,1,6],"span":[51,11,17]},{"path":[4,3,2,1,1],"span":[51,18,25]},{"path":[4,3,2,1,3],"span":[51,28,29]},{"path":[4,4],"span":[56,0,62,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,4,1],"span":[56,8,18]},{"path":[4,4,2,0],"span":[57,2,21]},{"path":[4,4,2,0,5],"span":[57,2,8]},{"path":[4,4,2,0,1],"span":[57,9,16]},{"path":[4,4,2,0,3],"span":[57,19,20]},{"path":[4,4,2,1],"span":[58,2,32]},{"path":[4,4,2,1,4],"span":[58,2,10]},{"path":[4,4,2,1,5],"span":[58,11,17]},{"path":[4,4,2,1,1],"span":[58,18,27]},{"path":[4,4,2,1,3],"span":[58,30,31]},{"path":[4,4,2,2],"span":[59,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,4,2,2,4],"span":[59,2,10]},{"path":[4,4,2,2,5],"span":[59,11,17]},{"path":[4,4,2,2,1],"span":[59,18,29]},{"path":[4,4,2,2,3],"span":[59,32,33]},{"path":[4,4,2,3],"span":[60,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,4,2,3,4],"span":[60,2,10]},{"path":[4,4,2,3,5],"span":[60,11,17]},{"path":[4,4,2,3,1],"span":[60,18,29]},{"path":[4,4,2,3,3],"span":[60,32,33]},{"path":[4,4,2,4],"span":[61,2,32]},{"path":[4,4,2,4,4],"span":[61,2,10]},{"path":[4,4,2,4,5],"span":[61,11,17]},{"path":[4,4,2,4,1],"span":[61,18,27]},{"path":[4,4,2,4,3],"span":[61,30,31]},{"path":[4,5],"span":[64,0,70,1]},{"path":[4,5,1],"span":[64,8,14]},{"path":[4,5,8,0],"span":[65,2,69,3]},{"path":[4,5,8,0,1],"span":[65,8,14]},{"path":[4,5,2,0],"span":[66,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,5,2,0,6],"span":[66,4,9]},{"path":[4,5,2,0,1],"span":[66,10,15]},{"path":[4,5,2,0,3],"span":[66,18,19]},{"path":[4,6],"span":[72,0,94,1]},{"path":[4,6,1],"span":[72,8,13]},{"path":[4,6,2,0],"span":[74,2,20]},{"path":[4,6,2,0,6],"span":[74,2,12]},{"path":[4,6,2,0,1],"span":[74,13,15]},{"path":[4,6,2,0,3],"span":[74,18,19]},{"path":[4,6,2,1],"span":[76,2,44]},{"path":[4,6,2,1,6],"span":[76,2,27]},{"path":[4,6,2,1,1],"span":[76,28,39]},{"path":[4,6,2,1,3],"span":[76,42,43]},{"path":[4,6,2,2],"span":[77,2,43]},{"path":[4,6,2,2,6],"span":[77,2,27]},{"path":[4,6,2,2,1],"span":[77,28,38]},{"path":[4,6,2,2,3],"span":[77,41,42]},{"path":[4,6,2,3],"span":[78,2,45]},{"path":[4,6,2,3,6],"span":[78,2,27]},{"path":[4,6,2,3,1],"span":[78,28,40]},{"path":[4,6,2,3,3],"span":[78,43,44]},{"path":[4,6,2,4],"span":[79,2,46]},{"path":[4,6,2,4,6],"span":[79,2,27]},{"path":[4,6,2,4,1],"span":[79,28,41]},{"path":[4,6,2,4,3],"span":[79,44,45]},{"path":[4,6,2,5],"span":[81,2,22]},{"path":[4,6,2,5,6],"span":[81,2,12]},{"path":[4,6,2,5,1],"span":[81,13,17]},{"path":[4,6,2,5,3],"span":[81,20,21]},{"path":[4,6,2,6],"span":[83,2,31]},{"path":[4,6,2,6,4],"span":[83,2,10]},{"path":[4,6,2,6,6],"span":[83,11,23]},{"path":[4,6,2,6,1],"span":[83,24,26]},{"path":[4,6,2,6,3],"span":[83,29,30]},{"path":[4,6,2,7],"span":[84,2,38]},{"path":[4,6,2,7,4],"span":[84,2,10]},{"path":[4,6,2,7,6],"span":[84,11,30]},{"path":[4,6,2,7,1],"span":[84,31,33]},{"path":[4,6,2,7,3],"span":[84,36,37]},{"path":[4,6,2,8],"span":[85,2,52]},{"path":[4,6,2,8,4],"span":[85,2,10]},{"path":[4,6,2,8,6],"span":[85,11,28]},{"path":[4,6,2,8,1],"span":[85,29,47]},{"path":[4,6,2,8,3],"span":[85,50,51]},{"path":[4,7],"span":[100,0,105,1],"leadingComments":"\n Asset Type enables customers to manage the settings for a\n category of information in a centralized, reusable way.\n"},{"path":[4,7,1],"span":[100,8,17]},{"path":[4,7,2,0],"span":[102,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,7,2,0,5],"span":[102,2,8]},{"path":[4,7,2,0,1],"span":[102,9,16]},{"path":[4,7,2,0,3],"span":[102,19,20]},{"path":[4,7,2,1],"span":[104,2,32],"leadingComments":" Fing Type\n"},{"path":[4,7,2,1,4],"span":[104,2,10]},{"path":[4,7,2,1,5],"span":[104,11,17]},{"path":[4,7,2,1,1],"span":[104,18,27]},{"path":[4,7,2,1,3],"span":[104,30,31]},{"path":[4,8],"span":[110,0,119,1],"leadingComments":"\n\n"},{"path":[4,8,1],"span":[110,8,18]},{"path":[4,8,2,0],"span":[111,2,21]},{"path":[4,8,2,0,6],"span":[111,2,11]},{"path":[4,8,2,0,1],"span":[111,12,16]},{"path":[4,8,2,0,3],"span":[111,19,20]},{"path":[4,8,2,1],"span":[112,2,18]},{"path":[4,8,2,1,5],"span":[112,2,8]},{"path":[4,8,2,1,1],"span":[112,9,13]},{"path":[4,8,2,1,3],"span":[112,16,17]},{"path":[4,8,2,2],"span":[113,2,29]},{"path":[4,8,2,2,4],"span":[113,2,10]},{"path":[4,8,2,2,5],"span":[113,11,17]},{"path":[4,8,2,2,1],"span":[113,18,24]},{"path":[4,8,2,2,3],"span":[113,27,28]},{"path":[4,8,2,3],"span":[114,2,33]},{"path":[4,8,2,3,4],"span":[114,2,10]},{"path":[4,8,2,3,5],"span":[114,11,17]},{"path":[4,8,2,3,1],"span":[114,18,28]},{"path":[4,8,2,3,3],"span":[114,31,32]},{"path":[4,8,2,4],"span":[115,2,29]},{"path":[4,8,2,4,4],"span":[115,2,10]},{"path":[4,8,2,4,5],"span":[115,11,17]},{"path":[4,8,2,4,1],"span":[115,18,24]},{"path":[4,8,2,4,3],"span":[115,27,28]},{"path":[4,8,2,5],"span":[116,2,26]},{"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,21]},{"path":[4,8,2,5,3],"span":[116,24,25]},{"path":[4,8,2,6],"span":[117,2,33]},{"path":[4,8,2,6,4],"span":[117,2,10]},{"path":[4,8,2,6,5],"span":[117,11,17]},{"path":[4,8,2,6,1],"span":[117,18,28]},{"path":[4,8,2,6,3],"span":[117,31,32]},{"path":[4,8,2,7],"span":[118,2,32]},{"path":[4,8,2,7,4],"span":[118,2,10]},{"path":[4,8,2,7,5],"span":[118,11,17]},{"path":[4,8,2,7,1],"span":[118,18,27]},{"path":[4,8,2,7,3],"span":[118,30,31]},{"path":[4,9],"span":[121,0,141,1]},{"path":[4,9,1],"span":[121,8,20]},{"path":[4,9,2,0],"span":[122,2,29]},{"path":[4,9,2,0,4],"span":[122,2,10]},{"path":[4,9,2,0,5],"span":[122,11,16]},{"path":[4,9,2,0,1],"span":[122,17,24]},{"path":[4,9,2,0,3],"span":[122,27,28]},{"path":[4,9,2,1],"span":[123,2,29]},{"path":[4,9,2,1,4],"span":[123,2,10]},{"path":[4,9,2,1,5],"span":[123,11,16]},{"path":[4,9,2,1,1],"span":[123,17,24]},{"path":[4,9,2,1,3],"span":[123,27,28]},{"path":[4,9,2,2],"span":[124,2,30]},{"path":[4,9,2,2,4],"span":[124,2,10]},{"path":[4,9,2,2,5],"span":[124,11,16]},{"path":[4,9,2,2,1],"span":[124,17,25]},{"path":[4,9,2,2,3],"span":[124,28,29]},{"path":[4,9,2,3],"span":[125,2,31]},{"path":[4,9,2,3,4],"span":[125,2,10]},{"path":[4,9,2,3,5],"span":[125,11,16]},{"path":[4,9,2,3,1],"span":[125,17,26]},{"path":[4,9,2,3,3],"span":[125,29,30]},{"path":[4,9,2,4],"span":[126,2,30]},{"path":[4,9,2,4,4],"span":[126,2,10]},{"path":[4,9,2,4,5],"span":[126,11,15]},{"path":[4,9,2,4,1],"span":[126,16,25]},{"path":[4,9,2,4,3],"span":[126,28,29]},{"path":[4,9,2,5],"span":[127,2,29]},{"path":[4,9,2,5,4],"span":[127,2,10]},{"path":[4,9,2,5,5],"span":[127,11,17]},{"path":[4,9,2,5,1],"span":[127,18,24]},{"path":[4,9,2,5,3],"span":[127,27,28]},{"path":[4,9,2,6],"span":[128,2,33]},{"path":[4,9,2,6,4],"span":[128,2,10]},{"path":[4,9,2,6,5],"span":[128,11,17]},{"path":[4,9,2,6,1],"span":[128,18,27]},{"path":[4,9,2,6,3],"span":[128,30,32]},{"path":[4,9,2,7],"span":[129,2,33]},{"path":[4,9,2,7,4],"span":[129,2,10]},{"path":[4,9,2,7,5],"span":[129,11,17]},{"path":[4,9,2,7,1],"span":[129,18,27]},{"path":[4,9,2,7,3],"span":[129,30,32]},{"path":[4,9,2,8],"span":[130,2,34]},{"path":[4,9,2,8,4],"span":[130,2,10]},{"path":[4,9,2,8,5],"span":[130,11,17]},{"path":[4,9,2,8,1],"span":[130,18,28]},{"path":[4,9,2,8,3],"span":[130,31,33]},{"path":[4,9,2,9],"span":[131,2,35]},{"path":[4,9,2,9,4],"span":[131,2,10]},{"path":[4,9,2,9,5],"span":[131,11,17]},{"path":[4,9,2,9,1],"span":[131,18,29]},{"path":[4,9,2,9,3],"span":[131,32,34]},{"path":[4,9,2,10],"span":[133,2,27]},{"path":[4,9,2,10,4],"span":[133,2,10]},{"path":[4,9,2,10,5],"span":[133,11,17]},{"path":[4,9,2,10,1],"span":[133,18,21]},{"path":[4,9,2,10,3],"span":[133,24,26]},{"path":[4,9,2,11],"span":[134,2,27]},{"path":[4,9,2,11,4],"span":[134,2,10]},{"path":[4,9,2,11,5],"span":[134,11,16]},{"path":[4,9,2,11,1],"span":[134,17,21]},{"path":[4,9,2,11,3],"span":[134,24,26]},{"path":[4,9,2,12],"span":[136,2,43]},{"path":[4,9,2,12,4],"span":[136,2,10]},{"path":[4,9,2,12,6],"span":[136,11,23]},{"path":[4,9,2,12,1],"span":[136,24,37]},{"path":[4,9,2,12,3],"span":[136,40,42]},{"path":[4,9,2,13],"span":[137,2,43]},{"path":[4,9,2,13,4],"span":[137,2,10]},{"path":[4,9,2,13,6],"span":[137,11,23]},{"path":[4,9,2,13,1],"span":[137,24,37]},{"path":[4,9,2,13,3],"span":[137,40,42]},{"path":[4,9,2,14],"span":[138,2,44]},{"path":[4,9,2,14,4],"span":[138,2,10]},{"path":[4,9,2,14,6],"span":[138,11,23]},{"path":[4,9,2,14,1],"span":[138,24,38]},{"path":[4,9,2,14,3],"span":[138,41,43]},{"path":[4,9,2,15],"span":[140,2,36]},{"path":[4,9,2,15,4],"span":[140,2,10]},{"path":[4,9,2,15,6],"span":[140,11,26]},{"path":[4,9,2,15,1],"span":[140,27,30]},{"path":[4,9,2,15,3],"span":[140,33,35]},{"path":[4,10],"span":[143,0,148,1]},{"path":[4,10,1],"span":[143,8,23]},{"path":[4,10,2,0],"span":[144,2,35]},{"path":[4,10,2,0,4],"span":[144,2,10]},{"path":[4,10,2,0,5],"span":[144,11,17]},{"path":[4,10,2,0,1],"span":[144,18,30]},{"path":[4,10,2,0,3],"span":[144,33,34]},{"path":[4,10,2,1],"span":[145,2,28]},{"path":[4,10,2,1,4],"span":[145,2,10]},{"path":[4,10,2,1,5],"span":[145,11,17]},{"path":[4,10,2,1,1],"span":[145,18,23]},{"path":[4,10,2,1,3],"span":[145,26,27]},{"path":[4,10,2,2],"span":[146,2,35]},{"path":[4,10,2,2,4],"span":[146,2,10]},{"path":[4,10,2,2,5],"span":[146,11,17]},{"path":[4,10,2,2,1],"span":[146,18,30]},{"path":[4,10,2,2,3],"span":[146,33,34]},{"path":[4,10,2,3],"span":[147,2,36]},{"path":[4,10,2,3,4],"span":[147,2,10]},{"path":[4,10,2,3,5],"span":[147,11,17]},{"path":[4,10,2,3,1],"span":[147,18,31]},{"path":[4,10,2,3,3],"span":[147,34,35]},{"path":[4,11],"span":[150,0,170,1]},{"path":[4,11,1],"span":[150,8,27]},{"path":[4,11,2,0],"span":[151,2,24]},{"path":[4,11,2,0,4],"span":[151,2,10]},{"path":[4,11,2,0,5],"span":[151,11,16]},{"path":[4,11,2,0,1],"span":[151,17,19]},{"path":[4,11,2,0,3],"span":[151,22,23]},{"path":[4,11,2,1],"span":[152,2,30]},{"path":[4,11,2,1,4],"span":[152,2,10]},{"path":[4,11,2,1,5],"span":[152,11,16]},{"path":[4,11,2,1,1],"span":[152,17,24]},{"path":[4,11,2,1,3],"span":[152,27,29]},{"path":[4,11,2,2],"span":[153,2,27]},{"path":[4,11,2,2,4],"span":[153,2,10]},{"path":[4,11,2,2,5],"span":[153,11,17]},{"path":[4,11,2,2,1],"span":[153,18,22]},{"path":[4,11,2,2,3],"span":[153,25,26]},{"path":[4,11,2,3],"span":[154,2,30]},{"path":[4,11,2,3,4],"span":[154,2,10]},{"path":[4,11,2,3,5],"span":[154,11,17]},{"path":[4,11,2,3,1],"span":[154,18,25]},{"path":[4,11,2,3,3],"span":[154,28,29]},{"path":[4,11,2,4],"span":[155,2,28]},{"path":[4,11,2,4,4],"span":[155,2,10]},{"path":[4,11,2,4,5],"span":[155,11,17]},{"path":[4,11,2,4,1],"span":[155,18,23]},{"path":[4,11,2,4,3],"span":[155,26,27]},{"path":[4,11,2,5],"span":[157,2,33]},{"path":[4,11,2,5,4],"span":[157,2,10]},{"path":[4,11,2,5,5],"span":[157,11,17]},{"path":[4,11,2,5,1],"span":[157,18,28]},{"path":[4,11,2,5,3],"span":[157,31,32]},{"path":[4,11,2,6],"span":[159,2,26]},{"path":[4,11,2,6,4],"span":[159,2,10]},{"path":[4,11,2,6,5],"span":[159,11,17]},{"path":[4,11,2,6,1],"span":[159,18,21]},{"path":[4,11,2,6,3],"span":[159,24,25]},{"path":[4,11,2,7],"span":[160,2,29]},{"path":[4,11,2,7,4],"span":[160,2,10]},{"path":[4,11,2,7,5],"span":[160,11,17]},{"path":[4,11,2,7,1],"span":[160,18,24]},{"path":[4,11,2,7,3],"span":[160,27,28]},{"path":[4,11,2,8],"span":[162,2,26]},{"path":[4,11,2,8,4],"span":[162,2,10]},{"path":[4,11,2,8,5],"span":[162,11,16]},{"path":[4,11,2,8,1],"span":[162,17,21]},{"path":[4,11,2,8,3],"span":[162,24,25]},{"path":[4,11,2,9],"span":[164,2,42]},{"path":[4,11,2,9,4],"span":[164,2,10]},{"path":[4,11,2,9,6],"span":[164,11,23]},{"path":[4,11,2,9,1],"span":[164,24,37]},{"path":[4,11,2,9,3],"span":[164,40,41]},{"path":[4,11,2,10],"span":[165,2,37]},{"path":[4,11,2,10,4],"span":[165,2,10]},{"path":[4,11,2,10,6],"span":[165,11,20]},{"path":[4,11,2,10,1],"span":[165,21,31]},{"path":[4,11,2,10,3],"span":[165,34,36]},{"path":[4,11,8,0],"span":[167,2,169,3]},{"path":[4,11,8,0,1],"span":[167,8,11]},{"path":[4,11,2,11],"span":[168,4,47]},{"path":[4,11,2,11,6],"span":[168,4,33]},{"path":[4,11,2,11,1],"span":[168,34,41]},{"path":[4,11,2,11,3],"span":[168,44,46]},{"path":[4,12],"span":[172,0,185,1]},{"path":[4,12,1],"span":[172,8,37]},{"path":[4,12,2,0],"span":[173,2,30]},{"path":[4,12,2,0,4],"span":[173,2,10]},{"path":[4,12,2,0,5],"span":[173,11,17]},{"path":[4,12,2,0,1],"span":[173,18,25]},{"path":[4,12,2,0,3],"span":[173,28,29]},{"path":[4,12,2,1],"span":[174,2,34]},{"path":[4,12,2,1,4],"span":[174,2,10]},{"path":[4,12,2,1,5],"span":[174,11,16]},{"path":[4,12,2,1,1],"span":[174,17,29]},{"path":[4,12,2,1,3],"span":[174,32,33]},{"path":[4,12,2,2],"span":[175,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,12,2,2,4],"span":[175,2,10]},{"path":[4,12,2,2,5],"span":[175,11,17]},{"path":[4,12,2,2,1],"span":[175,18,23]},{"path":[4,12,2,2,3],"span":[175,26,27]},{"path":[4,12,2,3],"span":[176,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,12,2,3,4],"span":[176,2,10]},{"path":[4,12,2,3,5],"span":[176,11,17]},{"path":[4,12,2,3,1],"span":[176,18,30]},{"path":[4,12,2,3,3],"span":[176,33,34]},{"path":[4,12,2,4],"span":[177,2,35],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,12,2,4,4],"span":[177,2,10]},{"path":[4,12,2,4,5],"span":[177,11,17]},{"path":[4,12,2,4,1],"span":[177,18,30]},{"path":[4,12,2,4,3],"span":[177,33,34]},{"path":[4,12,2,5],"span":[178,2,34],"trailingComments":" WindowsProductType: 1\n"},{"path":[4,12,2,5,4],"span":[178,2,10]},{"path":[4,12,2,5,5],"span":[178,11,16]},{"path":[4,12,2,5,1],"span":[178,17,29]},{"path":[4,12,2,5,3],"span":[178,32,33]},{"path":[4,12,2,6],"span":[180,2,41]},{"path":[4,12,2,6,4],"span":[180,2,10]},{"path":[4,12,2,6,5],"span":[180,11,15]},{"path":[4,12,2,6,1],"span":[180,16,36]},{"path":[4,12,2,6,3],"span":[180,39,40]},{"path":[4,12,2,7],"span":[181,2,35]},{"path":[4,12,2,7,4],"span":[181,2,10]},{"path":[4,12,2,7,5],"span":[181,11,15]},{"path":[4,12,2,7,1],"span":[181,16,30]},{"path":[4,12,2,7,3],"span":[181,33,34]},{"path":[4,12,2,8],"span":[182,2,39]},{"path":[4,12,2,8,4],"span":[182,2,10]},{"path":[4,12,2,8,5],"span":[182,11,15]},{"path":[4,12,2,8,1],"span":[182,16,34]},{"path":[4,12,2,8,3],"span":[182,37,38]},{"path":[4,12,2,9],"span":[184,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,12,2,9,4],"span":[184,2,10]},{"path":[4,12,2,9,5],"span":[184,11,17]},{"path":[4,12,2,9,1],"span":[184,18,25]},{"path":[4,12,2,9,3],"span":[184,28,30]},{"path":[4,13],"span":[187,0,190,1]},{"path":[4,13,1],"span":[187,8,25]},{"path":[4,13,2,0],"span":[188,2,42]},{"path":[4,13,2,0,6],"span":[188,2,27]},{"path":[4,13,2,0,1],"span":[188,28,37]},{"path":[4,13,2,0,3],"span":[188,40,41]},{"path":[4,13,2,1],"span":[189,2,33]},{"path":[4,13,2,1,4],"span":[189,2,10]},{"path":[4,13,2,1,6],"span":[189,11,19]},{"path":[4,13,2,1,1],"span":[189,20,28]},{"path":[4,13,2,1,3],"span":[189,31,32]},{"path":[4,14],"span":[192,0,215,1]},{"path":[4,14,1],"span":[192,8,16]},{"path":[4,14,2,0],"span":[194,2,26]},{"path":[4,14,2,0,4],"span":[194,2,10]},{"path":[4,14,2,0,5],"span":[194,11,16]},{"path":[4,14,2,0,1],"span":[194,17,21]},{"path":[4,14,2,0,3],"span":[194,24,25]},{"path":[4,14,2,1],"span":[195,2,29]},{"path":[4,14,2,1,4],"span":[195,2,10]},{"path":[4,14,2,1,5],"span":[195,11,16]},{"path":[4,14,2,1,1],"span":[195,17,24]},{"path":[4,14,2,1,3],"span":[195,27,28]},{"path":[4,14,2,2],"span":[196,2,28]},{"path":[4,14,2,2,4],"span":[196,2,10]},{"path":[4,14,2,2,5],"span":[196,11,16]},{"path":[4,14,2,2,1],"span":[196,17,23]},{"path":[4,14,2,2,3],"span":[196,26,27]},{"path":[4,14,2,3],"span":[197,2,29]},{"path":[4,14,2,3,4],"span":[197,2,10]},{"path":[4,14,2,3,5],"span":[197,11,16]},{"path":[4,14,2,3,1],"span":[197,17,24]},{"path":[4,14,2,3,3],"span":[197,27,28]},{"path":[4,14,2,4],"span":[198,2,27]},{"path":[4,14,2,4,4],"span":[198,2,10]},{"path":[4,14,2,4,5],"span":[198,11,16]},{"path":[4,14,2,4,1],"span":[198,17,22]},{"path":[4,14,2,4,3],"span":[198,25,26]},{"path":[4,14,2,5],"span":[199,2,31]},{"path":[4,14,2,5,4],"span":[199,2,10]},{"path":[4,14,2,5,5],"span":[199,11,16]},{"path":[4,14,2,5,1],"span":[199,17,26]},{"path":[4,14,2,5,3],"span":[199,29,30]},{"path":[4,14,2,6],"span":[201,2,32]},{"path":[4,14,2,6,4],"span":[201,2,10]},{"path":[4,14,2,6,5],"span":[201,11,17]},{"path":[4,14,2,6,1],"span":[201,18,27]},{"path":[4,14,2,6,3],"span":[201,30,31]},{"path":[4,14,2,7],"span":[202,2,31]},{"path":[4,14,2,7,4],"span":[202,2,10]},{"path":[4,14,2,7,5],"span":[202,11,17]},{"path":[4,14,2,7,1],"span":[202,18,26]},{"path":[4,14,2,7,3],"span":[202,29,30]},{"path":[4,14,2,8],"span":[203,2,32]},{"path":[4,14,2,8,4],"span":[203,2,10]},{"path":[4,14,2,8,5],"span":[203,11,17]},{"path":[4,14,2,8,1],"span":[203,18,27]},{"path":[4,14,2,8,3],"span":[203,30,31]},{"path":[4,14,2,9],"span":[204,2,28]},{"path":[4,14,2,9,4],"span":[204,2,10]},{"path":[4,14,2,9,5],"span":[204,11,17]},{"path":[4,14,2,9,1],"span":[204,18,22]},{"path":[4,14,2,9,3],"span":[204,25,27]},{"path":[4,14,2,10],"span":[205,2,31]},{"path":[4,14,2,10,4],"span":[205,2,10]},{"path":[4,14,2,10,5],"span":[205,11,17]},{"path":[4,14,2,10,1],"span":[205,18,25]},{"path":[4,14,2,10,3],"span":[205,28,30]},{"path":[4,14,2,11],"span":[206,2,34]},{"path":[4,14,2,11,4],"span":[206,2,10]},{"path":[4,14,2,11,5],"span":[206,11,17]},{"path":[4,14,2,11,1],"span":[206,18,28]},{"path":[4,14,2,11,3],"span":[206,31,33]},{"path":[4,14,2,12],"span":[207,2,31]},{"path":[4,14,2,12,4],"span":[207,2,10]},{"path":[4,14,2,12,5],"span":[207,11,17]},{"path":[4,14,2,12,1],"span":[207,18,25]},{"path":[4,14,2,12,3],"span":[207,28,30]},{"path":[4,14,2,13],"span":[208,2,29]},{"path":[4,14,2,13,4],"span":[208,2,10]},{"path":[4,14,2,13,5],"span":[208,11,17]},{"path":[4,14,2,13,1],"span":[208,18,23]},{"path":[4,14,2,13,3],"span":[208,26,28]},{"path":[4,14,2,14],"span":[210,2,27]},{"path":[4,14,2,14,4],"span":[210,2,10]},{"path":[4,14,2,14,5],"span":[210,11,17]},{"path":[4,14,2,14,1],"span":[210,18,21]},{"path":[4,14,2,14,3],"span":[210,24,26]},{"path":[4,14,2,15],"span":[212,2,49]},{"path":[4,14,2,15,4],"span":[212,2,10]},{"path":[4,14,2,15,6],"span":[212,11,26]},{"path":[4,14,2,15,1],"span":[212,27,43]},{"path":[4,14,2,15,3],"span":[212,46,48]},{"path":[4,14,2,16],"span":[214,2,23]},{"path":[4,14,2,16,6],"span":[214,2,13]},{"path":[4,14,2,16,1],"span":[214,14,17]},{"path":[4,14,2,16,3],"span":[214,20,22]},{"path":[4,15],"span":[217,0,231,1]},{"path":[4,15,1],"span":[217,8,19]},{"path":[4,15,2,0],"span":[218,2,18]},{"path":[4,15,2,0,5],"span":[218,2,8]},{"path":[4,15,2,0,1],"span":[218,9,13]},{"path":[4,15,2,0,3],"span":[218,16,17]},{"path":[4,15,2,1],"span":[220,2,29]},{"path":[4,15,2,1,4],"span":[220,2,10]},{"path":[4,15,2,1,5],"span":[220,11,17]},{"path":[4,15,2,1,1],"span":[220,18,24]},{"path":[4,15,2,1,3],"span":[220,27,28]},{"path":[4,15,2,2],"span":[221,2,30]},{"path":[4,15,2,2,4],"span":[221,2,10]},{"path":[4,15,2,2,5],"span":[221,11,17]},{"path":[4,15,2,2,1],"span":[221,18,25]},{"path":[4,15,2,2,3],"span":[221,28,29]},{"path":[4,15,2,3],"span":[222,2,27]},{"path":[4,15,2,3,4],"span":[222,2,10]},{"path":[4,15,2,3,5],"span":[222,11,17]},{"path":[4,15,2,3,1],"span":[222,18,22]},{"path":[4,15,2,3,3],"span":[222,25,26]},{"path":[4,15,2,4],"span":[223,2,31]},{"path":[4,15,2,4,4],"span":[223,2,10]},{"path":[4,15,2,4,5],"span":[223,11,17]},{"path":[4,15,2,4,1],"span":[223,18,26]},{"path":[4,15,2,4,3],"span":[223,29,30]},{"path":[4,15,2,5],"span":[224,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,15,2,5,4],"span":[224,2,10]},{"path":[4,15,2,5,5],"span":[224,11,17]},{"path":[4,15,2,5,1],"span":[224,18,22]},{"path":[4,15,2,5,3],"span":[224,25,26]},{"path":[4,15,2,6],"span":[225,2,34]},{"path":[4,15,2,6,4],"span":[225,2,10]},{"path":[4,15,2,6,5],"span":[225,11,16]},{"path":[4,15,2,6,1],"span":[225,17,29]},{"path":[4,15,2,6,3],"span":[225,32,33]},{"path":[4,15,2,7],"span":[226,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,15,2,7,4],"span":[226,2,10]},{"path":[4,15,2,7,5],"span":[226,11,17]},{"path":[4,15,2,7,1],"span":[226,18,29]},{"path":[4,15,2,7,3],"span":[226,32,33]},{"path":[4,15,2,8],"span":[228,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,15,2,8,4],"span":[228,2,10]},{"path":[4,15,2,8,5],"span":[228,11,17]},{"path":[4,15,2,8,1],"span":[228,18,23]},{"path":[4,15,2,8,3],"span":[228,26,27]},{"path":[4,15,2,9],"span":[230,2,37]},{"path":[4,15,2,9,4],"span":[230,2,10]},{"path":[4,15,2,9,5],"span":[230,11,15]},{"path":[4,15,2,9,1],"span":[230,16,31]},{"path":[4,15,2,9,3],"span":[230,34,36]},{"path":[4,16],"span":[235,0,268,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,16,1],"span":[235,8,20]},{"path":[4,16,2,0],"span":[236,2,16]},{"path":[4,16,2,0,5],"span":[236,2,7]},{"path":[4,16,2,0,1],"span":[236,9,11]},{"path":[4,16,2,0,3],"span":[236,14,15]},{"path":[4,16,2,1],"span":[237,2,23]},{"path":[4,16,2,1,5],"span":[237,2,8]},{"path":[4,16,2,1,1],"span":[237,9,18]},{"path":[4,16,2,1,3],"span":[237,21,22]},{"path":[4,16,2,2],"span":[239,2,32]},{"path":[4,16,2,2,4],"span":[239,2,10]},{"path":[4,16,2,2,5],"span":[239,11,16]},{"path":[4,16,2,2,1],"span":[239,17,26]},{"path":[4,16,2,2,3],"span":[239,29,31]},{"path":[4,16,2,3],"span":[240,2,38]},{"path":[4,16,2,3,4],"span":[240,2,10]},{"path":[4,16,2,3,5],"span":[240,11,16]},{"path":[4,16,2,3,1],"span":[240,17,33]},{"path":[4,16,2,3,3],"span":[240,36,37]},{"path":[4,16,2,4],"span":[242,2,35]},{"path":[4,16,2,4,4],"span":[242,2,10]},{"path":[4,16,2,4,5],"span":[242,11,17]},{"path":[4,16,2,4,1],"span":[242,18,30]},{"path":[4,16,2,4,3],"span":[242,33,34]},{"path":[4,16,2,5],"span":[243,2,37]},{"path":[4,16,2,5,4],"span":[243,2,10]},{"path":[4,16,2,5,5],"span":[243,11,17]},{"path":[4,16,2,5,1],"span":[243,18,32]},{"path":[4,16,2,5,3],"span":[243,35,36]},{"path":[4,16,2,6],"span":[244,2,39]},{"path":[4,16,2,6,4],"span":[244,2,10]},{"path":[4,16,2,6,5],"span":[244,11,17]},{"path":[4,16,2,6,1],"span":[244,18,34]},{"path":[4,16,2,6,3],"span":[244,37,38]},{"path":[4,16,2,7],"span":[245,2,35]},{"path":[4,16,2,7,4],"span":[245,2,10]},{"path":[4,16,2,7,5],"span":[245,11,17]},{"path":[4,16,2,7,1],"span":[245,18,30]},{"path":[4,16,2,7,3],"span":[245,33,34]},{"path":[4,16,2,8],"span":[246,2,43]},{"path":[4,16,2,8,4],"span":[246,2,10]},{"path":[4,16,2,8,5],"span":[246,11,17]},{"path":[4,16,2,8,1],"span":[246,18,37]},{"path":[4,16,2,8,3],"span":[246,40,42]},{"path":[4,16,2,9],"span":[247,2,35]},{"path":[4,16,2,9,4],"span":[247,2,10]},{"path":[4,16,2,9,5],"span":[247,11,17]},{"path":[4,16,2,9,1],"span":[247,18,29]},{"path":[4,16,2,9,3],"span":[247,32,34]},{"path":[4,16,2,10],"span":[248,2,35]},{"path":[4,16,2,10,4],"span":[248,2,10]},{"path":[4,16,2,10,5],"span":[248,11,17]},{"path":[4,16,2,10,1],"span":[248,18,29]},{"path":[4,16,2,10,3],"span":[248,32,34]},{"path":[4,16,2,11],"span":[249,2,37]},{"path":[4,16,2,11,4],"span":[249,2,10]},{"path":[4,16,2,11,5],"span":[249,11,17]},{"path":[4,16,2,11,1],"span":[249,18,31]},{"path":[4,16,2,11,3],"span":[249,34,36]},{"path":[4,16,2,12],"span":[250,2,40]},{"path":[4,16,2,12,4],"span":[250,2,10]},{"path":[4,16,2,12,5],"span":[250,11,17]},{"path":[4,16,2,12,1],"span":[250,18,34]},{"path":[4,16,2,12,3],"span":[250,37,39]},{"path":[4,16,2,13],"span":[251,2,39]},{"path":[4,16,2,13,4],"span":[251,2,10]},{"path":[4,16,2,13,5],"span":[251,11,17]},{"path":[4,16,2,13,1],"span":[251,18,33]},{"path":[4,16,2,13,3],"span":[251,36,38]},{"path":[4,16,2,14],"span":[252,2,36]},{"path":[4,16,2,14,4],"span":[252,2,10]},{"path":[4,16,2,14,5],"span":[252,11,17]},{"path":[4,16,2,14,1],"span":[252,18,30]},{"path":[4,16,2,14,3],"span":[252,33,35]},{"path":[4,16,2,15],"span":[253,2,43]},{"path":[4,16,2,15,4],"span":[253,2,10]},{"path":[4,16,2,15,5],"span":[253,11,17]},{"path":[4,16,2,15,1],"span":[253,18,37]},{"path":[4,16,2,15,3],"span":[253,40,42]},{"path":[4,16,2,16],"span":[254,2,37]},{"path":[4,16,2,16,4],"span":[254,2,10]},{"path":[4,16,2,16,5],"span":[254,11,17]},{"path":[4,16,2,16,1],"span":[254,18,31]},{"path":[4,16,2,16,3],"span":[254,34,36]},{"path":[4,16,2,17],"span":[255,2,40]},{"path":[4,16,2,17,4],"span":[255,2,10]},{"path":[4,16,2,17,5],"span":[255,11,17]},{"path":[4,16,2,17,1],"span":[255,18,34]},{"path":[4,16,2,17,3],"span":[255,37,39]},{"path":[4,16,2,18],"span":[256,2,41]},{"path":[4,16,2,18,4],"span":[256,2,10]},{"path":[4,16,2,18,5],"span":[256,11,17]},{"path":[4,16,2,18,1],"span":[256,18,35]},{"path":[4,16,2,18,3],"span":[256,38,40]},{"path":[4,16,2,19],"span":[257,2,39]},{"path":[4,16,2,19,4],"span":[257,2,10]},{"path":[4,16,2,19,5],"span":[257,11,17]},{"path":[4,16,2,19,1],"span":[257,18,33]},{"path":[4,16,2,19,3],"span":[257,36,38]},{"path":[4,16,2,20],"span":[258,2,41]},{"path":[4,16,2,20,4],"span":[258,2,10]},{"path":[4,16,2,20,5],"span":[258,11,17]},{"path":[4,16,2,20,1],"span":[258,18,35]},{"path":[4,16,2,20,3],"span":[258,38,40]},{"path":[4,16,2,21],"span":[260,2,36]},{"path":[4,16,2,21,4],"span":[260,2,10]},{"path":[4,16,2,21,5],"span":[260,11,15]},{"path":[4,16,2,21,1],"span":[260,16,30]},{"path":[4,16,2,21,3],"span":[260,33,35]},{"path":[4,16,2,22],"span":[261,2,36]},{"path":[4,16,2,22,4],"span":[261,2,10]},{"path":[4,16,2,22,5],"span":[261,11,15]},{"path":[4,16,2,22,1],"span":[261,16,30]},{"path":[4,16,2,22,3],"span":[261,33,35]},{"path":[4,16,2,23],"span":[262,2,36]},{"path":[4,16,2,23,4],"span":[262,2,10]},{"path":[4,16,2,23,5],"span":[262,11,15]},{"path":[4,16,2,23,1],"span":[262,16,30]},{"path":[4,16,2,23,3],"span":[262,33,35]},{"path":[4,16,2,24],"span":[263,2,38]},{"path":[4,16,2,24,4],"span":[263,2,10]},{"path":[4,16,2,24,5],"span":[263,11,15]},{"path":[4,16,2,24,1],"span":[263,16,32]},{"path":[4,16,2,24,3],"span":[263,35,37]},{"path":[4,16,2,25],"span":[264,2,38]},{"path":[4,16,2,25,4],"span":[264,2,10]},{"path":[4,16,2,25,5],"span":[264,11,15]},{"path":[4,16,2,25,1],"span":[264,16,32]},{"path":[4,16,2,25,3],"span":[264,35,37]},{"path":[4,16,2,26],"span":[265,2,38]},{"path":[4,16,2,26,4],"span":[265,2,10]},{"path":[4,16,2,26,5],"span":[265,11,15]},{"path":[4,16,2,26,1],"span":[265,16,32]},{"path":[4,16,2,26,3],"span":[265,35,37]},{"path":[4,16,2,27],"span":[267,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,16,2,27,4],"span":[267,2,10]},{"path":[4,16,2,27,5],"span":[267,11,16]},{"path":[4,16,2,27,1],"span":[267,17,28]},{"path":[4,16,2,27,3],"span":[267,31,33]},{"path":[4,17],"span":[270,0,305,1]},{"path":[4,17,1],"span":[270,8,20]},{"path":[4,17,2,0],"span":[271,2,15]},{"path":[4,17,2,0,5],"span":[271,2,7]},{"path":[4,17,2,0,1],"span":[271,8,10]},{"path":[4,17,2,0,3],"span":[271,13,14]},{"path":[4,17,2,1],"span":[273,2,20]},{"path":[4,17,2,1,5],"span":[273,2,7]},{"path":[4,17,2,1,1],"span":[273,8,15]},{"path":[4,17,2,1,3],"span":[273,18,19]},{"path":[4,17,2,2],"span":[274,2,26]},{"path":[4,17,2,2,5],"span":[274,2,8]},{"path":[4,17,2,2,1],"span":[274,9,21]},{"path":[4,17,2,2,3],"span":[274,24,25]},{"path":[4,17,2,3],"span":[276,2,36]},{"path":[4,17,2,3,4],"span":[276,2,10]},{"path":[4,17,2,3,5],"span":[276,11,16]},{"path":[4,17,2,3,1],"span":[276,17,31]},{"path":[4,17,2,3,3],"span":[276,34,35]},{"path":[4,17,2,4],"span":[277,2,40]},{"path":[4,17,2,4,4],"span":[277,2,10]},{"path":[4,17,2,4,5],"span":[277,11,17]},{"path":[4,17,2,4,1],"span":[277,18,35]},{"path":[4,17,2,4,3],"span":[277,38,39]},{"path":[4,17,2,5],"span":[279,2,32]},{"path":[4,17,2,5,4],"span":[279,2,10]},{"path":[4,17,2,5,5],"span":[279,11,16]},{"path":[4,17,2,5,1],"span":[279,17,26]},{"path":[4,17,2,5,3],"span":[279,29,31]},{"path":[4,17,2,6],"span":[280,2,31]},{"path":[4,17,2,6,4],"span":[280,2,10]},{"path":[4,17,2,6,5],"span":[280,11,15]},{"path":[4,17,2,6,1],"span":[280,16,25]},{"path":[4,17,2,6,3],"span":[280,28,30]},{"path":[4,17,2,7],"span":[281,2,34]},{"path":[4,17,2,7,4],"span":[281,2,10]},{"path":[4,17,2,7,5],"span":[281,11,17]},{"path":[4,17,2,7,1],"span":[281,18,28]},{"path":[4,17,2,7,3],"span":[281,31,33]},{"path":[4,17,2,8],"span":[282,2,31]},{"path":[4,17,2,8,4],"span":[282,2,10]},{"path":[4,17,2,8,5],"span":[282,11,17]},{"path":[4,17,2,8,1],"span":[282,18,25]},{"path":[4,17,2,8,3],"span":[282,28,30]},{"path":[4,17,2,9],"span":[283,2,35]},{"path":[4,17,2,9,4],"span":[283,2,10]},{"path":[4,17,2,9,5],"span":[283,11,16]},{"path":[4,17,2,9,1],"span":[283,17,29]},{"path":[4,17,2,9,3],"span":[283,32,34]},{"path":[4,17,2,10],"span":[284,2,32]},{"path":[4,17,2,10,4],"span":[284,2,10]},{"path":[4,17,2,10,5],"span":[284,11,16]},{"path":[4,17,2,10,1],"span":[284,17,26]},{"path":[4,17,2,10,3],"span":[284,29,31]},{"path":[4,17,2,11],"span":[285,2,31]},{"path":[4,17,2,11,4],"span":[285,2,10]},{"path":[4,17,2,11,5],"span":[285,11,16]},{"path":[4,17,2,11,1],"span":[285,17,25]},{"path":[4,17,2,11,3],"span":[285,28,30]},{"path":[4,17,2,12],"span":[286,2,43]},{"path":[4,17,2,12,4],"span":[286,2,10]},{"path":[4,17,2,12,5],"span":[286,11,17]},{"path":[4,17,2,12,1],"span":[286,18,37]},{"path":[4,17,2,12,3],"span":[286,40,42]},{"path":[4,17,2,13],"span":[288,2,35]},{"path":[4,17,2,13,4],"span":[288,2,10]},{"path":[4,17,2,13,5],"span":[288,11,17]},{"path":[4,17,2,13,1],"span":[288,18,29]},{"path":[4,17,2,13,3],"span":[288,32,34]},{"path":[4,17,2,14],"span":[289,2,37]},{"path":[4,17,2,14,4],"span":[289,2,10]},{"path":[4,17,2,14,5],"span":[289,11,17]},{"path":[4,17,2,14,1],"span":[289,18,31]},{"path":[4,17,2,14,3],"span":[289,34,36]},{"path":[4,17,2,15],"span":[291,2,39]},{"path":[4,17,2,15,4],"span":[291,2,10]},{"path":[4,17,2,15,5],"span":[291,11,17]},{"path":[4,17,2,15,1],"span":[291,18,33]},{"path":[4,17,2,15,3],"span":[291,36,38]},{"path":[4,17,2,16],"span":[292,2,43]},{"path":[4,17,2,16,4],"span":[292,2,10]},{"path":[4,17,2,16,5],"span":[292,11,17]},{"path":[4,17,2,16,1],"span":[292,18,37]},{"path":[4,17,2,16,3],"span":[292,40,42]},{"path":[4,17,2,17],"span":[293,2,38]},{"path":[4,17,2,17,4],"span":[293,2,10]},{"path":[4,17,2,17,5],"span":[293,11,17]},{"path":[4,17,2,17,1],"span":[293,18,32]},{"path":[4,17,2,17,3],"span":[293,35,37]},{"path":[4,17,2,18],"span":[294,2,38]},{"path":[4,17,2,18,4],"span":[294,2,10]},{"path":[4,17,2,18,5],"span":[294,11,17]},{"path":[4,17,2,18,1],"span":[294,18,32]},{"path":[4,17,2,18,3],"span":[294,35,37]},{"path":[4,17,2,19],"span":[295,2,41]},{"path":[4,17,2,19,4],"span":[295,2,10]},{"path":[4,17,2,19,5],"span":[295,11,15]},{"path":[4,17,2,19,1],"span":[295,18,35]},{"path":[4,17,2,19,3],"span":[295,38,40]},{"path":[4,17,2,20],"span":[296,2,42]},{"path":[4,17,2,20,4],"span":[296,2,10]},{"path":[4,17,2,20,5],"span":[296,11,17]},{"path":[4,17,2,20,1],"span":[296,18,36]},{"path":[4,17,2,20,3],"span":[296,39,41]},{"path":[4,17,2,21],"span":[298,2,32]},{"path":[4,17,2,21,4],"span":[298,2,10]},{"path":[4,17,2,21,5],"span":[298,11,17]},{"path":[4,17,2,21,1],"span":[298,18,26]},{"path":[4,17,2,21,3],"span":[298,29,31]},{"path":[4,17,2,22],"span":[300,2,33]},{"path":[4,17,2,22,4],"span":[300,2,10]},{"path":[4,17,2,22,5],"span":[300,11,16]},{"path":[4,17,2,22,1],"span":[300,17,27]},{"path":[4,17,2,22,3],"span":[300,30,32]},{"path":[4,17,2,23],"span":[302,2,39]},{"path":[4,17,2,23,4],"span":[302,2,10]},{"path":[4,17,2,23,5],"span":[302,11,16]},{"path":[4,17,2,23,1],"span":[302,17,33]},{"path":[4,17,2,23,3],"span":[302,36,38]},{"path":[4,17,2,24],"span":[304,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,17,2,24,4],"span":[304,2,10]},{"path":[4,17,2,24,5],"span":[304,11,16]},{"path":[4,17,2,24,1],"span":[304,17,28]},{"path":[4,17,2,24,3],"span":[304,31,33]},{"path":[4,18],"span":[307,0,340,1]},{"path":[4,18,1],"span":[307,8,17]},{"path":[4,18,2,0],"span":[308,2,15]},{"path":[4,18,2,0,5],"span":[308,2,7]},{"path":[4,18,2,0,1],"span":[308,8,10]},{"path":[4,18,2,0,3],"span":[308,13,14]},{"path":[4,18,2,1],"span":[310,2,21]},{"path":[4,18,2,1,5],"span":[310,2,8]},{"path":[4,18,2,1,1],"span":[310,9,16]},{"path":[4,18,2,1,3],"span":[310,19,20]},{"path":[4,18,2,2],"span":[312,2,33]},{"path":[4,18,2,2,4],"span":[312,2,10]},{"path":[4,18,2,2,5],"span":[312,11,17]},{"path":[4,18,2,2,1],"span":[312,18,28]},{"path":[4,18,2,2,3],"span":[312,31,32]},{"path":[4,18,2,3],"span":[313,2,32]},{"path":[4,18,2,3,4],"span":[313,2,10]},{"path":[4,18,2,3,5],"span":[313,11,17]},{"path":[4,18,2,3,1],"span":[313,18,26]},{"path":[4,18,2,3,3],"span":[313,29,31]},{"path":[4,18,2,4],"span":[314,2,38]},{"path":[4,18,2,4,4],"span":[314,2,10]},{"path":[4,18,2,4,5],"span":[314,11,17]},{"path":[4,18,2,4,1],"span":[314,18,33]},{"path":[4,18,2,4,3],"span":[314,36,37]},{"path":[4,18,2,5],"span":[316,2,33]},{"path":[4,18,2,5,4],"span":[316,2,10]},{"path":[4,18,2,5,5],"span":[316,11,16]},{"path":[4,18,2,5,1],"span":[316,17,28]},{"path":[4,18,2,5,3],"span":[316,31,32]},{"path":[4,18,2,6],"span":[317,2,29]},{"path":[4,18,2,6,4],"span":[317,2,10]},{"path":[4,18,2,6,5],"span":[317,11,16]},{"path":[4,18,2,6,1],"span":[317,17,24]},{"path":[4,18,2,6,3],"span":[317,27,28]},{"path":[4,18,2,7],"span":[318,2,31]},{"path":[4,18,2,7,4],"span":[318,2,10]},{"path":[4,18,2,7,5],"span":[318,11,16]},{"path":[4,18,2,7,1],"span":[318,17,26]},{"path":[4,18,2,7,3],"span":[318,29,30]},{"path":[4,18,2,8],"span":[320,2,34]},{"path":[4,18,2,8,4],"span":[320,2,10]},{"path":[4,18,2,8,5],"span":[320,11,16]},{"path":[4,18,2,8,1],"span":[320,17,29]},{"path":[4,18,2,8,3],"span":[320,32,33]},{"path":[4,18,2,9],"span":[321,2,31]},{"path":[4,18,2,9,4],"span":[321,2,10]},{"path":[4,18,2,9,5],"span":[321,11,16]},{"path":[4,18,2,9,1],"span":[321,17,25]},{"path":[4,18,2,9,3],"span":[321,28,30]},{"path":[4,18,2,10],"span":[322,2,31]},{"path":[4,18,2,10,4],"span":[322,2,10]},{"path":[4,18,2,10,5],"span":[322,11,16]},{"path":[4,18,2,10,1],"span":[322,17,25]},{"path":[4,18,2,10,3],"span":[322,28,30]},{"path":[4,18,2,11],"span":[323,2,32]},{"path":[4,18,2,11,4],"span":[323,2,10]},{"path":[4,18,2,11,5],"span":[323,11,16]},{"path":[4,18,2,11,1],"span":[323,17,26]},{"path":[4,18,2,11,3],"span":[323,29,31]},{"path":[4,18,2,12],"span":[324,2,43]},{"path":[4,18,2,12,4],"span":[324,2,10]},{"path":[4,18,2,12,5],"span":[324,11,17]},{"path":[4,18,2,12,1],"span":[324,18,37]},{"path":[4,18,2,12,3],"span":[324,40,42]},{"path":[4,18,2,13],"span":[325,2,38]},{"path":[4,18,2,13,4],"span":[325,2,10]},{"path":[4,18,2,13,5],"span":[325,11,17]},{"path":[4,18,2,13,1],"span":[325,18,32]},{"path":[4,18,2,13,3],"span":[325,35,37]},{"path":[4,18,2,14],"span":[326,2,40]},{"path":[4,18,2,14,4],"span":[326,2,10]},{"path":[4,18,2,14,5],"span":[326,11,17]},{"path":[4,18,2,14,1],"span":[326,18,34]},{"path":[4,18,2,14,3],"span":[326,37,39]},{"path":[4,18,2,15],"span":[327,2,36]},{"path":[4,18,2,15,4],"span":[327,2,10]},{"path":[4,18,2,15,5],"span":[327,11,17]},{"path":[4,18,2,15,1],"span":[327,18,30]},{"path":[4,18,2,15,3],"span":[327,33,35]},{"path":[4,18,2,16],"span":[328,2,43]},{"path":[4,18,2,16,4],"span":[328,2,10]},{"path":[4,18,2,16,5],"span":[328,11,17]},{"path":[4,18,2,16,1],"span":[328,18,37]},{"path":[4,18,2,16,3],"span":[328,40,42]},{"path":[4,18,2,17],"span":[329,2,35]},{"path":[4,18,2,17,4],"span":[329,2,10]},{"path":[4,18,2,17,5],"span":[329,11,17]},{"path":[4,18,2,17,1],"span":[329,18,29]},{"path":[4,18,2,17,3],"span":[329,32,34]},{"path":[4,18,2,18],"span":[330,2,35]},{"path":[4,18,2,18,4],"span":[330,2,10]},{"path":[4,18,2,18,5],"span":[330,11,17]},{"path":[4,18,2,18,1],"span":[330,18,29]},{"path":[4,18,2,18,3],"span":[330,32,34]},{"path":[4,18,2,19],"span":[331,2,37]},{"path":[4,18,2,19,4],"span":[331,2,10]},{"path":[4,18,2,19,5],"span":[331,11,17]},{"path":[4,18,2,19,1],"span":[331,18,31]},{"path":[4,18,2,19,3],"span":[331,34,36]},{"path":[4,18,2,20],"span":[332,2,40]},{"path":[4,18,2,20,4],"span":[332,2,10]},{"path":[4,18,2,20,5],"span":[332,11,17]},{"path":[4,18,2,20,1],"span":[332,18,34]},{"path":[4,18,2,20,3],"span":[332,37,39]},{"path":[4,18,2,21],"span":[333,2,39]},{"path":[4,18,2,21,4],"span":[333,2,10]},{"path":[4,18,2,21,5],"span":[333,11,17]},{"path":[4,18,2,21,1],"span":[333,18,33]},{"path":[4,18,2,21,3],"span":[333,36,38]},{"path":[4,18,2,22],"span":[335,2,32]},{"path":[4,18,2,22,4],"span":[335,2,10]},{"path":[4,18,2,22,5],"span":[335,11,17]},{"path":[4,18,2,22,1],"span":[335,18,26]},{"path":[4,18,2,22,3],"span":[335,29,31]},{"path":[4,18,2,23],"span":[337,2,39]},{"path":[4,18,2,23,4],"span":[337,2,10]},{"path":[4,18,2,23,5],"span":[337,11,16]},{"path":[4,18,2,23,1],"span":[337,17,33]},{"path":[4,18,2,23,3],"span":[337,36,38]},{"path":[4,18,2,24],"span":[339,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,18,2,24,4],"span":[339,2,10]},{"path":[4,18,2,24,5],"span":[339,11,16]},{"path":[4,18,2,24,1],"span":[339,17,28]},{"path":[4,18,2,24,3],"span":[339,31,33]},{"path":[4,19],"span":[342,0,375,1]},{"path":[4,19,1],"span":[342,8,23]},{"path":[4,19,2,0],"span":[343,2,15]},{"path":[4,19,2,0,5],"span":[343,2,7]},{"path":[4,19,2,0,1],"span":[343,8,10]},{"path":[4,19,2,0,3],"span":[343,13,14]},{"path":[4,19,2,1],"span":[344,2,20]},{"path":[4,19,2,1,5],"span":[344,2,8]},{"path":[4,19,2,1,1],"span":[344,9,15]},{"path":[4,19,2,1,3],"span":[344,18,19]},{"path":[4,19,2,2],"span":[345,2,21]},{"path":[4,19,2,2,5],"span":[345,2,8]},{"path":[4,19,2,2,1],"span":[345,9,16]},{"path":[4,19,2,2,3],"span":[345,19,20]},{"path":[4,19,2,3],"span":[347,2,33]},{"path":[4,19,2,3,4],"span":[347,2,10]},{"path":[4,19,2,3,5],"span":[347,11,17]},{"path":[4,19,2,3,1],"span":[347,18,28]},{"path":[4,19,2,3,3],"span":[347,31,32]},{"path":[4,19,2,4],"span":[348,2,36]},{"path":[4,19,2,4,4],"span":[348,2,10]},{"path":[4,19,2,4,5],"span":[348,11,17]},{"path":[4,19,2,4,1],"span":[348,18,31]},{"path":[4,19,2,4,3],"span":[348,34,35]},{"path":[4,19,2,5],"span":[349,2,33]},{"path":[4,19,2,5,4],"span":[349,2,10]},{"path":[4,19,2,5,5],"span":[349,11,17]},{"path":[4,19,2,5,1],"span":[349,18,28]},{"path":[4,19,2,5,3],"span":[349,31,32]},{"path":[4,19,2,6],"span":[350,2,31]},{"path":[4,19,2,6,4],"span":[350,2,10]},{"path":[4,19,2,6,5],"span":[350,11,17]},{"path":[4,19,2,6,1],"span":[350,18,25]},{"path":[4,19,2,6,3],"span":[350,28,30]},{"path":[4,19,2,7],"span":[351,2,31]},{"path":[4,19,2,7,4],"span":[351,2,10]},{"path":[4,19,2,7,5],"span":[351,11,17]},{"path":[4,19,2,7,1],"span":[351,18,26]},{"path":[4,19,2,7,3],"span":[351,29,30]},{"path":[4,19,2,8],"span":[353,2,33]},{"path":[4,19,2,8,4],"span":[353,2,10]},{"path":[4,19,2,8,5],"span":[353,11,16]},{"path":[4,19,2,8,1],"span":[353,17,28]},{"path":[4,19,2,8,3],"span":[353,31,32]},{"path":[4,19,2,9],"span":[354,2,29]},{"path":[4,19,2,9,4],"span":[354,2,10]},{"path":[4,19,2,9,5],"span":[354,11,16]},{"path":[4,19,2,9,1],"span":[354,17,24]},{"path":[4,19,2,9,3],"span":[354,27,28]},{"path":[4,19,2,10],"span":[355,2,32]},{"path":[4,19,2,10,4],"span":[355,2,10]},{"path":[4,19,2,10,5],"span":[355,11,16]},{"path":[4,19,2,10,1],"span":[355,17,26]},{"path":[4,19,2,10,3],"span":[355,29,31]},{"path":[4,19,2,11],"span":[357,2,31]},{"path":[4,19,2,11,4],"span":[357,2,10]},{"path":[4,19,2,11,5],"span":[357,11,17]},{"path":[4,19,2,11,1],"span":[357,18,25]},{"path":[4,19,2,11,3],"span":[357,28,30]},{"path":[4,19,2,12],"span":[358,2,35]},{"path":[4,19,2,12,4],"span":[358,2,10]},{"path":[4,19,2,12,5],"span":[358,11,17]},{"path":[4,19,2,12,1],"span":[358,18,29]},{"path":[4,19,2,12,3],"span":[358,32,34]},{"path":[4,19,2,13],"span":[360,2,41]},{"path":[4,19,2,13,4],"span":[360,2,10]},{"path":[4,19,2,13,5],"span":[360,11,17]},{"path":[4,19,2,13,1],"span":[360,18,35]},{"path":[4,19,2,13,3],"span":[360,38,40]},{"path":[4,19,2,14],"span":[362,2,35]},{"path":[4,19,2,14,4],"span":[362,2,10]},{"path":[4,19,2,14,5],"span":[362,11,16]},{"path":[4,19,2,14,1],"span":[362,17,29]},{"path":[4,19,2,14,3],"span":[362,32,34]},{"path":[4,19,2,15],"span":[363,2,31]},{"path":[4,19,2,15,4],"span":[363,2,10]},{"path":[4,19,2,15,5],"span":[363,11,16]},{"path":[4,19,2,15,1],"span":[363,17,25]},{"path":[4,19,2,15,3],"span":[363,28,30]},{"path":[4,19,2,16],"span":[364,2,31]},{"path":[4,19,2,16,4],"span":[364,2,10]},{"path":[4,19,2,16,5],"span":[364,11,16]},{"path":[4,19,2,16,1],"span":[364,17,25]},{"path":[4,19,2,16,3],"span":[364,28,30]},{"path":[4,19,2,17],"span":[365,2,32]},{"path":[4,19,2,17,4],"span":[365,2,10]},{"path":[4,19,2,17,5],"span":[365,11,16]},{"path":[4,19,2,17,1],"span":[365,17,26]},{"path":[4,19,2,17,3],"span":[365,29,31]},{"path":[4,19,2,18],"span":[366,2,43]},{"path":[4,19,2,18,4],"span":[366,2,10]},{"path":[4,19,2,18,5],"span":[366,11,17]},{"path":[4,19,2,18,1],"span":[366,18,37]},{"path":[4,19,2,18,3],"span":[366,40,42]},{"path":[4,19,2,19],"span":[368,2,39]},{"path":[4,19,2,19,4],"span":[368,2,10]},{"path":[4,19,2,19,5],"span":[368,11,16]},{"path":[4,19,2,19,1],"span":[368,17,33]},{"path":[4,19,2,19,3],"span":[368,36,38]},{"path":[4,19,2,20],"span":[370,2,33]},{"path":[4,19,2,20,4],"span":[370,2,10]},{"path":[4,19,2,20,5],"span":[370,11,15]},{"path":[4,19,2,20,1],"span":[370,16,27]},{"path":[4,19,2,20,3],"span":[370,30,32]},{"path":[4,19,2,21],"span":[371,2,37]},{"path":[4,19,2,21,4],"span":[371,2,10]},{"path":[4,19,2,21,5],"span":[371,11,15]},{"path":[4,19,2,21,1],"span":[371,16,31]},{"path":[4,19,2,21,3],"span":[371,34,36]},{"path":[4,19,2,22],"span":[372,2,37]},{"path":[4,19,2,22,4],"span":[372,2,10]},{"path":[4,19,2,22,5],"span":[372,11,15]},{"path":[4,19,2,22,1],"span":[372,16,31]},{"path":[4,19,2,22,3],"span":[372,34,36]},{"path":[4,19,2,23],"span":[374,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,19,2,23,4],"span":[374,2,10]},{"path":[4,19,2,23,5],"span":[374,11,16]},{"path":[4,19,2,23,1],"span":[374,17,28]},{"path":[4,19,2,23,3],"span":[374,31,34]},{"path":[4,20],"span":[377,0,380,1]},{"path":[4,20,1],"span":[377,8,22]},{"path":[4,20,2,0],"span":[378,2,16]},{"path":[4,20,2,0,5],"span":[378,2,7]},{"path":[4,20,2,0,1],"span":[378,9,11]},{"path":[4,20,2,0,3],"span":[378,14,15]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
1
+ {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"GetEntityRequest","field":[{"name":"entity_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"entityPath"}]},{"name":"GetEntityResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"entity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","oneofIndex":1,"jsonName":"entity","proto3Optional":true},{"name":"related","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}],"oneofDecl":[{"name":"_error_description"},{"name":"_entity"}]},{"name":"ListEntityRequest","field":[{"name":"filter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"filter"}]},{"name":"ListEntityResponse","field":[{"name":"entity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"entity"},{"name":"related","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}]},{"name":"EntityPath","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"source_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceId","proto3Optional":true},{"name":"source_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceType","proto3Optional":true},{"name":"entity_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"entityType","proto3Optional":true},{"name":"entity_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"entityId","proto3Optional":true}],"oneofDecl":[{"name":"_source_id"},{"name":"_source_type"},{"name":"_entity_type"},{"name":"_entity_id"}]},{"name":"Entity","field":[{"name":"asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Asset","oneofIndex":0,"jsonName":"asset"}],"oneofDecl":[{"name":"entity"}]},{"name":"Asset","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"id"},{"name":"last_synced","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"first_seen","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"firstSeen"},{"name":"last_updated","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastUpdated"},{"name":"last_enriched","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastEnriched"},{"name":"core","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CoreFields","jsonName":"core"},{"name":"hw","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardwareInfo","oneofIndex":0,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemInfo","oneofIndex":1,"jsonName":"os","proto3Optional":true},{"name":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":2,"jsonName":"softwareInventory","proto3Optional":true}],"oneofDecl":[{"name":"_hw"},{"name":"_os"},{"name":"_software_inventory"}]},{"name":"AssetType","field":[{"name":"ls_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsName"},{"name":"fing_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fingType","proto3Optional":true}],"oneofDecl":[{"name":"_fing_type"}]},{"name":"CoreFields","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetType","jsonName":"type"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"domain","proto3Optional":true},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"ipAddress","proto3Optional":true},{"name":"serial","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serial","proto3Optional":true},{"name":"mac","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"mac","proto3Optional":true},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"macVendor","proto3Optional":true},{"name":"sensor_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"sensorId","proto3Optional":true}],"oneofDecl":[{"name":"_domain"},{"name":"_ip_address"},{"name":"_serial"},{"name":"_mac"},{"name":"_mac_vendor"},{"name":"_sensor_id"}]},{"name":"HardwareInfo","field":[{"name":"type_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"typeId","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"model_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"modelId","proto3Optional":true},{"name":"family_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isFamily","proto3Optional":true},{"name":"serial","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"serial","proto3Optional":true},{"name":"type_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":11,"jsonName":"rank","proto3Optional":true},{"name":"catalog_brand","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":12,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":13,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":14,"jsonName":"catalogFamily","proto3Optional":true},{"name":"raw","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawHardwareInfo","oneofIndex":15,"jsonName":"raw","proto3Optional":true}],"oneofDecl":[{"name":"_type_id"},{"name":"_make_id"},{"name":"_model_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_serial"},{"name":"_type_name"},{"name":"_make_name"},{"name":"_model_name"},{"name":"_family_name"},{"name":"_cpe"},{"name":"_rank"},{"name":"_catalog_brand"},{"name":"_catalog_model"},{"name":"_catalog_family"},{"name":"_raw"}]},{"name":"RawHardwareInfo","field":[{"name":"architecture","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"architecture","proto3Optional":true},{"name":"model","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"model","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"}]},{"name":"OperatingSystemInfo","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true},{"name":"build","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"rank","proto3Optional":true},{"name":"catalog_brand","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":10,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_os","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","oneofIndex":11,"jsonName":"catalogOs","proto3Optional":true},{"name":"windows","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"}],"oneofDecl":[{"name":"raw"},{"name":"_id"},{"name":"_make_id"},{"name":"_name"},{"name":"_version"},{"name":"_build"},{"name":"_fw_version"},{"name":"_cpe"},{"name":"_fw_cpe"},{"name":"_rank"},{"name":"_catalog_brand"},{"name":"_catalog_os"}]},{"name":"WindowsRawOperatingSystemInfo","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"service_pack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"servicePack","proto3Optional":true},{"name":"build","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"build","proto3Optional":true},{"name":"version_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"versionName","proto3Optional":true},{"name":"build_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"buildNumber","proto3Optional":true},{"name":"product_type","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"productType","proto3Optional":true},{"name":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"osCode","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_build_number"},{"name":"_product_type"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"}]},{"name":"SoftwareInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"software","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","jsonName":"software"}]},{"name":"Software","field":[{"name":"rank","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"rank","proto3Optional":true},{"name":"type_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"typeId","proto3Optional":true},{"name":"cat_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"catId","proto3Optional":true},{"name":"make_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"makeId","proto3Optional":true},{"name":"sw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"swId","proto3Optional":true},{"name":"parent_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"type_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"cat_name","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"catName","proto3Optional":true},{"name":"make_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"makeName","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"version","proto3Optional":true},{"name":"market_ver","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"marketVer","proto3Optional":true},{"name":"edition","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"edition","proto3Optional":true},{"name":"build","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"build","proto3Optional":true},{"name":"arch","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"arch","proto3Optional":true},{"name":"lang","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"lang","proto3Optional":true},{"name":"cpe","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"cpe","proto3Optional":true},{"name":"catalog_software","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":17,"jsonName":"catalogSoftware","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":18,"jsonName":"rawHash","proto3Optional":true},{"name":"nre_hash","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"nreHash","proto3Optional":true}],"oneofDecl":[{"name":"_rank"},{"name":"_type_id"},{"name":"_cat_id"},{"name":"_make_id"},{"name":"_sw_id"},{"name":"_parent_id"},{"name":"_type_name"},{"name":"_cat_name"},{"name":"_make_name"},{"name":"_name"},{"name":"_version"},{"name":"_market_ver"},{"name":"_edition"},{"name":"_build"},{"name":"_arch"},{"name":"_lang"},{"name":"_cpe"},{"name":"_catalog_software"},{"name":"_raw_hash"},{"name":"_nre_hash"}]},{"name":"RawSoftware","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"vendor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"version","proto3Optional":true},{"name":"info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"exe_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"exePath","proto3Optional":true},{"name":"arch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"arch","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"installDate","proto3Optional":true},{"name":"source_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sourceType","proto3Optional":true},{"name":"sw_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"swId","proto3Optional":true},{"name":"is_current_user","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isCurrentUser","proto3Optional":true}],"oneofDecl":[{"name":"_vendor"},{"name":"_version"},{"name":"_info"},{"name":"_exe_path"},{"name":"_arch"},{"name":"_install_date"},{"name":"_source_type"},{"name":"_sw_id"},{"name":"_is_current_user"}]},{"name":"CatalogBrand","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"parent_id","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"parentId","proto3Optional":true},{"name":"last_update_time","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"country_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryCode","proto3Optional":true},{"name":"logo_image_url","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"twitterAccount","proto3Optional":true},{"name":"warranty_url","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"warrantyUrl","proto3Optional":true},{"name":"warranty_direct_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"warrantyDirectUrl","proto3Optional":true},{"name":"community_url","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"communityUrl","proto3Optional":true},{"name":"linkedin_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"linkedinAccount","proto3Optional":true},{"name":"instagram_account","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"instagramAccount","proto3Optional":true},{"name":"youtube_account","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"youtubeAccount","proto3Optional":true},{"name":"pinterest_account","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pinterestAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_parent_id"},{"name":"_last_update_time"},{"name":"_country_code"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_warranty_url"},{"name":"_warranty_direct_url"},{"name":"_community_url"},{"name":"_linkedin_account"},{"name":"_instagram_account"},{"name":"_youtube_account"},{"name":"_pinterest_account"},{"name":"_class_hardware"},{"name":"_class_software"},{"name":"_class_consumer"},{"name":"_class_enterprise"},{"name":"_class_industrial"},{"name":"_class_individual"},{"name":"_match_score"}]},{"name":"CatalogModel","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"makeId"},{"name":"device_model","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceModel"},{"name":"device_type_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"deviceTypeId","proto3Optional":true},{"name":"device_model_code","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"deviceModelCode"},{"name":"family_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isFamily","proto3Optional":true},{"name":"manual_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manualUrl","proto3Optional":true},{"name":"faq_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"faqUrl","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"eosDate","proto3Optional":true},{"name":"lifecyle_confidence","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"price_class","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"priceClass","proto3Optional":true},{"name":"product_class","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"productClass","proto3Optional":true},{"name":"sh_ifttt_handle","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"shIftttHandle","proto3Optional":true},{"name":"sh_google_ass_langs","number":18,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shGoogleAssLangs"},{"name":"sh_alexa_langs","number":19,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shAlexaLangs"},{"name":"sh_hass_handle","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"shHassHandle","proto3Optional":true},{"name":"sh_apple_home_kit","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"shAppleHomeKit","proto3Optional":true},{"name":"sh_open_hab_handle","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"shOpenHabHandle","proto3Optional":true},{"name":"nist_cpe","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"nistCpe","proto3Optional":true},{"name":"popularity","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"popularity","proto3Optional":true},{"name":"last_update_time","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":17,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_device_type_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_manual_url"},{"name":"_faq_url"},{"name":"_release_date"},{"name":"_disc_date"},{"name":"_eos_date"},{"name":"_lifecyle_confidence"},{"name":"_price_class"},{"name":"_product_class"},{"name":"_sh_ifttt_handle"},{"name":"_sh_hass_handle"},{"name":"_sh_apple_home_kit"},{"name":"_sh_open_hab_handle"},{"name":"_nist_cpe"},{"name":"_popularity"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogOs","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"os_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"osName"},{"name":"os_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"osVersion","proto3Optional":true},{"name":"os_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"osBuild","proto3Optional":true},{"name":"os_version_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"osVersionName","proto3Optional":true},{"name":"override_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"logo_image_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"twitterAccount","proto3Optional":true},{"name":"nist_cpe","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"nistCpe","proto3Optional":true},{"name":"last_update_time","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":21,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_os_version"},{"name":"_os_build"},{"name":"_os_version_name"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_nist_cpe"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogSoftware","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"sw_key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swKey"},{"name":"sw_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swName"},{"name":"sw_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"swVersion","proto3Optional":true},{"name":"sw_market_ver","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"swMarketVer","proto3Optional":true},{"name":"sw_edition","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"swEdition","proto3Optional":true},{"name":"sw_lang","number":23,"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":"override_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"parentId","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":"nist_cpe_template","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"nistCpeTemplate","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":11,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":12,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":13,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":14,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"last_update_time","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":16,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"flag_latest","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"flagLatest","proto3Optional":true},{"name":"flag_widespread","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":18,"jsonName":"flagWidespread","proto3Optional":true},{"name":"flag_deprecated","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"flagDeprecated","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_sw_version"},{"name":"_sw_market_ver"},{"name":"_sw_edition"},{"name":"_sw_lang"},{"name":"_sw_build"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_sw_type"},{"name":"_sw_category"},{"name":"_nist_cpe_template"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_last_update_time"},{"name":"_flag_latest"},{"name":"_flag_widespread"},{"name":"_flag_deprecated"},{"name":"_match_score"}]},{"name":"CatalogMonitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"}]}],"service":[{"name":"DataCoreOutboundService","method":[{"name":"GetEntity","inputType":".com.lansweeper.dp.outbound.v1.GetEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.GetEntityResponse","options":{}},{"name":"ListEntities","inputType":".com.lansweeper.dp.outbound.v1.ListEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.ListEntityResponse","options":{},"serverStreaming":true}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,387,1]},{"path":[12],"span":[7,0,18],"leadingComments":"\n Copyright Lansweeper (c)\n\n This files contains the Data Access API and the definition of outbound model\n\n N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc\n"},{"path":[2],"span":[8,0,38]},{"path":[8],"span":[10,0,37]},{"path":[8,11],"span":[10,0,37]},{"path":[8],"span":[11,0,34]},{"path":[8,10],"span":[11,0,34]},{"path":[3,0],"span":[13,0,41]},{"path":[6,0],"span":[22,0,30,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[22,8,31]},{"path":[6,0,2,0],"span":[25,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[25,6,15]},{"path":[6,0,2,0,2],"span":[25,17,33]},{"path":[6,0,2,0,3],"span":[25,44,61]},{"path":[6,0,2,1],"span":[28,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[28,6,18]},{"path":[6,0,2,1,2],"span":[28,19,36]},{"path":[6,0,2,1,6],"span":[28,47,53]},{"path":[6,0,2,1,3],"span":[28,54,72]},{"path":[4,0],"span":[32,0,35,1]},{"path":[4,0,1],"span":[32,8,24]},{"path":[4,0,2,0],"span":[33,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[33,2,12]},{"path":[4,0,2,0,1],"span":[33,13,24]},{"path":[4,0,2,0,3],"span":[33,27,28]},{"path":[4,1],"span":[37,0,43,1]},{"path":[4,1,1],"span":[37,8,25]},{"path":[4,1,2,0],"span":[38,2,19]},{"path":[4,1,2,0,5],"span":[38,2,6]},{"path":[4,1,2,0,1],"span":[38,7,14]},{"path":[4,1,2,0,3],"span":[38,17,18]},{"path":[4,1,2,1],"span":[39,2,40]},{"path":[4,1,2,1,4],"span":[39,2,10]},{"path":[4,1,2,1,5],"span":[39,11,17]},{"path":[4,1,2,1,1],"span":[39,18,35]},{"path":[4,1,2,1,3],"span":[39,38,39]},{"path":[4,1,2,2],"span":[41,2,29]},{"path":[4,1,2,2,4],"span":[41,2,10]},{"path":[4,1,2,2,6],"span":[41,11,17]},{"path":[4,1,2,2,1],"span":[41,18,24]},{"path":[4,1,2,2,3],"span":[41,27,28]},{"path":[4,1,2,3],"span":[42,2,30]},{"path":[4,1,2,3,4],"span":[42,2,10]},{"path":[4,1,2,3,6],"span":[42,11,17]},{"path":[4,1,2,3,1],"span":[42,18,25]},{"path":[4,1,2,3,3],"span":[42,28,29]},{"path":[4,2],"span":[45,0,47,1]},{"path":[4,2,1],"span":[45,8,25]},{"path":[4,2,2,0],"span":[46,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[46,2,12]},{"path":[4,2,2,0,1],"span":[46,13,19]},{"path":[4,2,2,0,3],"span":[46,22,23]},{"path":[4,3],"span":[49,0,52,1]},{"path":[4,3,1],"span":[49,8,26]},{"path":[4,3,2,0],"span":[50,2,20]},{"path":[4,3,2,0,6],"span":[50,2,8]},{"path":[4,3,2,0,1],"span":[50,9,15]},{"path":[4,3,2,0,3],"span":[50,18,19]},{"path":[4,3,2,1],"span":[51,2,30]},{"path":[4,3,2,1,4],"span":[51,2,10]},{"path":[4,3,2,1,6],"span":[51,11,17]},{"path":[4,3,2,1,1],"span":[51,18,25]},{"path":[4,3,2,1,3],"span":[51,28,29]},{"path":[4,4],"span":[56,0,62,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,4,1],"span":[56,8,18]},{"path":[4,4,2,0],"span":[57,2,21]},{"path":[4,4,2,0,5],"span":[57,2,8]},{"path":[4,4,2,0,1],"span":[57,9,16]},{"path":[4,4,2,0,3],"span":[57,19,20]},{"path":[4,4,2,1],"span":[58,2,32]},{"path":[4,4,2,1,4],"span":[58,2,10]},{"path":[4,4,2,1,5],"span":[58,11,17]},{"path":[4,4,2,1,1],"span":[58,18,27]},{"path":[4,4,2,1,3],"span":[58,30,31]},{"path":[4,4,2,2],"span":[59,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,4,2,2,4],"span":[59,2,10]},{"path":[4,4,2,2,5],"span":[59,11,17]},{"path":[4,4,2,2,1],"span":[59,18,29]},{"path":[4,4,2,2,3],"span":[59,32,33]},{"path":[4,4,2,3],"span":[60,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,4,2,3,4],"span":[60,2,10]},{"path":[4,4,2,3,5],"span":[60,11,17]},{"path":[4,4,2,3,1],"span":[60,18,29]},{"path":[4,4,2,3,3],"span":[60,32,33]},{"path":[4,4,2,4],"span":[61,2,32]},{"path":[4,4,2,4,4],"span":[61,2,10]},{"path":[4,4,2,4,5],"span":[61,11,17]},{"path":[4,4,2,4,1],"span":[61,18,27]},{"path":[4,4,2,4,3],"span":[61,30,31]},{"path":[4,5],"span":[64,0,70,1]},{"path":[4,5,1],"span":[64,8,14]},{"path":[4,5,8,0],"span":[65,2,69,3]},{"path":[4,5,8,0,1],"span":[65,8,14]},{"path":[4,5,2,0],"span":[66,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,5,2,0,6],"span":[66,4,9]},{"path":[4,5,2,0,1],"span":[66,10,15]},{"path":[4,5,2,0,3],"span":[66,18,19]},{"path":[4,6],"span":[72,0,94,1]},{"path":[4,6,1],"span":[72,8,13]},{"path":[4,6,2,0],"span":[74,2,20]},{"path":[4,6,2,0,6],"span":[74,2,12]},{"path":[4,6,2,0,1],"span":[74,13,15]},{"path":[4,6,2,0,3],"span":[74,18,19]},{"path":[4,6,2,1],"span":[76,2,44]},{"path":[4,6,2,1,6],"span":[76,2,27]},{"path":[4,6,2,1,1],"span":[76,28,39]},{"path":[4,6,2,1,3],"span":[76,42,43]},{"path":[4,6,2,2],"span":[77,2,43]},{"path":[4,6,2,2,6],"span":[77,2,27]},{"path":[4,6,2,2,1],"span":[77,28,38]},{"path":[4,6,2,2,3],"span":[77,41,42]},{"path":[4,6,2,3],"span":[78,2,45]},{"path":[4,6,2,3,6],"span":[78,2,27]},{"path":[4,6,2,3,1],"span":[78,28,40]},{"path":[4,6,2,3,3],"span":[78,43,44]},{"path":[4,6,2,4],"span":[79,2,46]},{"path":[4,6,2,4,6],"span":[79,2,27]},{"path":[4,6,2,4,1],"span":[79,28,41]},{"path":[4,6,2,4,3],"span":[79,44,45]},{"path":[4,6,2,5],"span":[81,2,22]},{"path":[4,6,2,5,6],"span":[81,2,12]},{"path":[4,6,2,5,1],"span":[81,13,17]},{"path":[4,6,2,5,3],"span":[81,20,21]},{"path":[4,6,2,6],"span":[83,2,31]},{"path":[4,6,2,6,4],"span":[83,2,10]},{"path":[4,6,2,6,6],"span":[83,11,23]},{"path":[4,6,2,6,1],"span":[83,24,26]},{"path":[4,6,2,6,3],"span":[83,29,30]},{"path":[4,6,2,7],"span":[84,2,38]},{"path":[4,6,2,7,4],"span":[84,2,10]},{"path":[4,6,2,7,6],"span":[84,11,30]},{"path":[4,6,2,7,1],"span":[84,31,33]},{"path":[4,6,2,7,3],"span":[84,36,37]},{"path":[4,6,2,8],"span":[85,2,52]},{"path":[4,6,2,8,4],"span":[85,2,10]},{"path":[4,6,2,8,6],"span":[85,11,28]},{"path":[4,6,2,8,1],"span":[85,29,47]},{"path":[4,6,2,8,3],"span":[85,50,51]},{"path":[4,7],"span":[100,0,105,1],"leadingComments":"\n Asset Type enables customers to manage the settings for a\n category of information in a centralized, reusable way.\n"},{"path":[4,7,1],"span":[100,8,17]},{"path":[4,7,2,0],"span":[102,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,7,2,0,5],"span":[102,2,8]},{"path":[4,7,2,0,1],"span":[102,9,16]},{"path":[4,7,2,0,3],"span":[102,19,20]},{"path":[4,7,2,1],"span":[104,2,32],"leadingComments":" Fing Type\n"},{"path":[4,7,2,1,4],"span":[104,2,10]},{"path":[4,7,2,1,5],"span":[104,11,17]},{"path":[4,7,2,1,1],"span":[104,18,27]},{"path":[4,7,2,1,3],"span":[104,30,31]},{"path":[4,8],"span":[110,0,119,1],"leadingComments":"\n\n"},{"path":[4,8,1],"span":[110,8,18]},{"path":[4,8,2,0],"span":[111,2,21]},{"path":[4,8,2,0,6],"span":[111,2,11]},{"path":[4,8,2,0,1],"span":[111,12,16]},{"path":[4,8,2,0,3],"span":[111,19,20]},{"path":[4,8,2,1],"span":[112,2,18]},{"path":[4,8,2,1,5],"span":[112,2,8]},{"path":[4,8,2,1,1],"span":[112,9,13]},{"path":[4,8,2,1,3],"span":[112,16,17]},{"path":[4,8,2,2],"span":[113,2,29]},{"path":[4,8,2,2,4],"span":[113,2,10]},{"path":[4,8,2,2,5],"span":[113,11,17]},{"path":[4,8,2,2,1],"span":[113,18,24]},{"path":[4,8,2,2,3],"span":[113,27,28]},{"path":[4,8,2,3],"span":[114,2,33]},{"path":[4,8,2,3,4],"span":[114,2,10]},{"path":[4,8,2,3,5],"span":[114,11,17]},{"path":[4,8,2,3,1],"span":[114,18,28]},{"path":[4,8,2,3,3],"span":[114,31,32]},{"path":[4,8,2,4],"span":[115,2,29]},{"path":[4,8,2,4,4],"span":[115,2,10]},{"path":[4,8,2,4,5],"span":[115,11,17]},{"path":[4,8,2,4,1],"span":[115,18,24]},{"path":[4,8,2,4,3],"span":[115,27,28]},{"path":[4,8,2,5],"span":[116,2,26]},{"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,21]},{"path":[4,8,2,5,3],"span":[116,24,25]},{"path":[4,8,2,6],"span":[117,2,33]},{"path":[4,8,2,6,4],"span":[117,2,10]},{"path":[4,8,2,6,5],"span":[117,11,17]},{"path":[4,8,2,6,1],"span":[117,18,28]},{"path":[4,8,2,6,3],"span":[117,31,32]},{"path":[4,8,2,7],"span":[118,2,32]},{"path":[4,8,2,7,4],"span":[118,2,10]},{"path":[4,8,2,7,5],"span":[118,11,17]},{"path":[4,8,2,7,1],"span":[118,18,27]},{"path":[4,8,2,7,3],"span":[118,30,31]},{"path":[4,9],"span":[121,0,141,1]},{"path":[4,9,1],"span":[121,8,20]},{"path":[4,9,2,0],"span":[122,2,29]},{"path":[4,9,2,0,4],"span":[122,2,10]},{"path":[4,9,2,0,5],"span":[122,11,16]},{"path":[4,9,2,0,1],"span":[122,17,24]},{"path":[4,9,2,0,3],"span":[122,27,28]},{"path":[4,9,2,1],"span":[123,2,29]},{"path":[4,9,2,1,4],"span":[123,2,10]},{"path":[4,9,2,1,5],"span":[123,11,16]},{"path":[4,9,2,1,1],"span":[123,17,24]},{"path":[4,9,2,1,3],"span":[123,27,28]},{"path":[4,9,2,2],"span":[124,2,30]},{"path":[4,9,2,2,4],"span":[124,2,10]},{"path":[4,9,2,2,5],"span":[124,11,16]},{"path":[4,9,2,2,1],"span":[124,17,25]},{"path":[4,9,2,2,3],"span":[124,28,29]},{"path":[4,9,2,3],"span":[125,2,31]},{"path":[4,9,2,3,4],"span":[125,2,10]},{"path":[4,9,2,3,5],"span":[125,11,16]},{"path":[4,9,2,3,1],"span":[125,17,26]},{"path":[4,9,2,3,3],"span":[125,29,30]},{"path":[4,9,2,4],"span":[126,2,30]},{"path":[4,9,2,4,4],"span":[126,2,10]},{"path":[4,9,2,4,5],"span":[126,11,15]},{"path":[4,9,2,4,1],"span":[126,16,25]},{"path":[4,9,2,4,3],"span":[126,28,29]},{"path":[4,9,2,5],"span":[127,2,29]},{"path":[4,9,2,5,4],"span":[127,2,10]},{"path":[4,9,2,5,5],"span":[127,11,17]},{"path":[4,9,2,5,1],"span":[127,18,24]},{"path":[4,9,2,5,3],"span":[127,27,28]},{"path":[4,9,2,6],"span":[128,2,33]},{"path":[4,9,2,6,4],"span":[128,2,10]},{"path":[4,9,2,6,5],"span":[128,11,17]},{"path":[4,9,2,6,1],"span":[128,18,27]},{"path":[4,9,2,6,3],"span":[128,30,32]},{"path":[4,9,2,7],"span":[129,2,33]},{"path":[4,9,2,7,4],"span":[129,2,10]},{"path":[4,9,2,7,5],"span":[129,11,17]},{"path":[4,9,2,7,1],"span":[129,18,27]},{"path":[4,9,2,7,3],"span":[129,30,32]},{"path":[4,9,2,8],"span":[130,2,34]},{"path":[4,9,2,8,4],"span":[130,2,10]},{"path":[4,9,2,8,5],"span":[130,11,17]},{"path":[4,9,2,8,1],"span":[130,18,28]},{"path":[4,9,2,8,3],"span":[130,31,33]},{"path":[4,9,2,9],"span":[131,2,35]},{"path":[4,9,2,9,4],"span":[131,2,10]},{"path":[4,9,2,9,5],"span":[131,11,17]},{"path":[4,9,2,9,1],"span":[131,18,29]},{"path":[4,9,2,9,3],"span":[131,32,34]},{"path":[4,9,2,10],"span":[133,2,27]},{"path":[4,9,2,10,4],"span":[133,2,10]},{"path":[4,9,2,10,5],"span":[133,11,17]},{"path":[4,9,2,10,1],"span":[133,18,21]},{"path":[4,9,2,10,3],"span":[133,24,26]},{"path":[4,9,2,11],"span":[134,2,27]},{"path":[4,9,2,11,4],"span":[134,2,10]},{"path":[4,9,2,11,5],"span":[134,11,16]},{"path":[4,9,2,11,1],"span":[134,17,21]},{"path":[4,9,2,11,3],"span":[134,24,26]},{"path":[4,9,2,12],"span":[136,2,43]},{"path":[4,9,2,12,4],"span":[136,2,10]},{"path":[4,9,2,12,6],"span":[136,11,23]},{"path":[4,9,2,12,1],"span":[136,24,37]},{"path":[4,9,2,12,3],"span":[136,40,42]},{"path":[4,9,2,13],"span":[137,2,43]},{"path":[4,9,2,13,4],"span":[137,2,10]},{"path":[4,9,2,13,6],"span":[137,11,23]},{"path":[4,9,2,13,1],"span":[137,24,37]},{"path":[4,9,2,13,3],"span":[137,40,42]},{"path":[4,9,2,14],"span":[138,2,44]},{"path":[4,9,2,14,4],"span":[138,2,10]},{"path":[4,9,2,14,6],"span":[138,11,23]},{"path":[4,9,2,14,1],"span":[138,24,38]},{"path":[4,9,2,14,3],"span":[138,41,43]},{"path":[4,9,2,15],"span":[140,2,36]},{"path":[4,9,2,15,4],"span":[140,2,10]},{"path":[4,9,2,15,6],"span":[140,11,26]},{"path":[4,9,2,15,1],"span":[140,27,30]},{"path":[4,9,2,15,3],"span":[140,33,35]},{"path":[4,10],"span":[143,0,148,1]},{"path":[4,10,1],"span":[143,8,23]},{"path":[4,10,2,0],"span":[144,2,35]},{"path":[4,10,2,0,4],"span":[144,2,10]},{"path":[4,10,2,0,5],"span":[144,11,17]},{"path":[4,10,2,0,1],"span":[144,18,30]},{"path":[4,10,2,0,3],"span":[144,33,34]},{"path":[4,10,2,1],"span":[145,2,28]},{"path":[4,10,2,1,4],"span":[145,2,10]},{"path":[4,10,2,1,5],"span":[145,11,17]},{"path":[4,10,2,1,1],"span":[145,18,23]},{"path":[4,10,2,1,3],"span":[145,26,27]},{"path":[4,10,2,2],"span":[146,2,35]},{"path":[4,10,2,2,4],"span":[146,2,10]},{"path":[4,10,2,2,5],"span":[146,11,17]},{"path":[4,10,2,2,1],"span":[146,18,30]},{"path":[4,10,2,2,3],"span":[146,33,34]},{"path":[4,10,2,3],"span":[147,2,36]},{"path":[4,10,2,3,4],"span":[147,2,10]},{"path":[4,10,2,3,5],"span":[147,11,17]},{"path":[4,10,2,3,1],"span":[147,18,31]},{"path":[4,10,2,3,3],"span":[147,34,35]},{"path":[4,11],"span":[150,0,170,1]},{"path":[4,11,1],"span":[150,8,27]},{"path":[4,11,2,0],"span":[151,2,24]},{"path":[4,11,2,0,4],"span":[151,2,10]},{"path":[4,11,2,0,5],"span":[151,11,16]},{"path":[4,11,2,0,1],"span":[151,17,19]},{"path":[4,11,2,0,3],"span":[151,22,23]},{"path":[4,11,2,1],"span":[152,2,30]},{"path":[4,11,2,1,4],"span":[152,2,10]},{"path":[4,11,2,1,5],"span":[152,11,16]},{"path":[4,11,2,1,1],"span":[152,17,24]},{"path":[4,11,2,1,3],"span":[152,27,29]},{"path":[4,11,2,2],"span":[153,2,27]},{"path":[4,11,2,2,4],"span":[153,2,10]},{"path":[4,11,2,2,5],"span":[153,11,17]},{"path":[4,11,2,2,1],"span":[153,18,22]},{"path":[4,11,2,2,3],"span":[153,25,26]},{"path":[4,11,2,3],"span":[154,2,30]},{"path":[4,11,2,3,4],"span":[154,2,10]},{"path":[4,11,2,3,5],"span":[154,11,17]},{"path":[4,11,2,3,1],"span":[154,18,25]},{"path":[4,11,2,3,3],"span":[154,28,29]},{"path":[4,11,2,4],"span":[155,2,28]},{"path":[4,11,2,4,4],"span":[155,2,10]},{"path":[4,11,2,4,5],"span":[155,11,17]},{"path":[4,11,2,4,1],"span":[155,18,23]},{"path":[4,11,2,4,3],"span":[155,26,27]},{"path":[4,11,2,5],"span":[157,2,33]},{"path":[4,11,2,5,4],"span":[157,2,10]},{"path":[4,11,2,5,5],"span":[157,11,17]},{"path":[4,11,2,5,1],"span":[157,18,28]},{"path":[4,11,2,5,3],"span":[157,31,32]},{"path":[4,11,2,6],"span":[159,2,26]},{"path":[4,11,2,6,4],"span":[159,2,10]},{"path":[4,11,2,6,5],"span":[159,11,17]},{"path":[4,11,2,6,1],"span":[159,18,21]},{"path":[4,11,2,6,3],"span":[159,24,25]},{"path":[4,11,2,7],"span":[160,2,29]},{"path":[4,11,2,7,4],"span":[160,2,10]},{"path":[4,11,2,7,5],"span":[160,11,17]},{"path":[4,11,2,7,1],"span":[160,18,24]},{"path":[4,11,2,7,3],"span":[160,27,28]},{"path":[4,11,2,8],"span":[162,2,26]},{"path":[4,11,2,8,4],"span":[162,2,10]},{"path":[4,11,2,8,5],"span":[162,11,16]},{"path":[4,11,2,8,1],"span":[162,17,21]},{"path":[4,11,2,8,3],"span":[162,24,25]},{"path":[4,11,2,9],"span":[164,2,42]},{"path":[4,11,2,9,4],"span":[164,2,10]},{"path":[4,11,2,9,6],"span":[164,11,23]},{"path":[4,11,2,9,1],"span":[164,24,37]},{"path":[4,11,2,9,3],"span":[164,40,41]},{"path":[4,11,2,10],"span":[165,2,37]},{"path":[4,11,2,10,4],"span":[165,2,10]},{"path":[4,11,2,10,6],"span":[165,11,20]},{"path":[4,11,2,10,1],"span":[165,21,31]},{"path":[4,11,2,10,3],"span":[165,34,36]},{"path":[4,11,8,0],"span":[167,2,169,3]},{"path":[4,11,8,0,1],"span":[167,8,11]},{"path":[4,11,2,11],"span":[168,4,47]},{"path":[4,11,2,11,6],"span":[168,4,33]},{"path":[4,11,2,11,1],"span":[168,34,41]},{"path":[4,11,2,11,3],"span":[168,44,46]},{"path":[4,12],"span":[172,0,185,1]},{"path":[4,12,1],"span":[172,8,37]},{"path":[4,12,2,0],"span":[173,2,30]},{"path":[4,12,2,0,4],"span":[173,2,10]},{"path":[4,12,2,0,5],"span":[173,11,17]},{"path":[4,12,2,0,1],"span":[173,18,25]},{"path":[4,12,2,0,3],"span":[173,28,29]},{"path":[4,12,2,1],"span":[174,2,34]},{"path":[4,12,2,1,4],"span":[174,2,10]},{"path":[4,12,2,1,5],"span":[174,11,16]},{"path":[4,12,2,1,1],"span":[174,17,29]},{"path":[4,12,2,1,3],"span":[174,32,33]},{"path":[4,12,2,2],"span":[175,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,12,2,2,4],"span":[175,2,10]},{"path":[4,12,2,2,5],"span":[175,11,17]},{"path":[4,12,2,2,1],"span":[175,18,23]},{"path":[4,12,2,2,3],"span":[175,26,27]},{"path":[4,12,2,3],"span":[176,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,12,2,3,4],"span":[176,2,10]},{"path":[4,12,2,3,5],"span":[176,11,17]},{"path":[4,12,2,3,1],"span":[176,18,30]},{"path":[4,12,2,3,3],"span":[176,33,34]},{"path":[4,12,2,4],"span":[177,2,35],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,12,2,4,4],"span":[177,2,10]},{"path":[4,12,2,4,5],"span":[177,11,17]},{"path":[4,12,2,4,1],"span":[177,18,30]},{"path":[4,12,2,4,3],"span":[177,33,34]},{"path":[4,12,2,5],"span":[178,2,34],"trailingComments":" WindowsProductType: 1\n"},{"path":[4,12,2,5,4],"span":[178,2,10]},{"path":[4,12,2,5,5],"span":[178,11,16]},{"path":[4,12,2,5,1],"span":[178,17,29]},{"path":[4,12,2,5,3],"span":[178,32,33]},{"path":[4,12,2,6],"span":[180,2,41]},{"path":[4,12,2,6,4],"span":[180,2,10]},{"path":[4,12,2,6,5],"span":[180,11,15]},{"path":[4,12,2,6,1],"span":[180,16,36]},{"path":[4,12,2,6,3],"span":[180,39,40]},{"path":[4,12,2,7],"span":[181,2,35]},{"path":[4,12,2,7,4],"span":[181,2,10]},{"path":[4,12,2,7,5],"span":[181,11,15]},{"path":[4,12,2,7,1],"span":[181,16,30]},{"path":[4,12,2,7,3],"span":[181,33,34]},{"path":[4,12,2,8],"span":[182,2,39]},{"path":[4,12,2,8,4],"span":[182,2,10]},{"path":[4,12,2,8,5],"span":[182,11,15]},{"path":[4,12,2,8,1],"span":[182,16,34]},{"path":[4,12,2,8,3],"span":[182,37,38]},{"path":[4,12,2,9],"span":[184,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,12,2,9,4],"span":[184,2,10]},{"path":[4,12,2,9,5],"span":[184,11,17]},{"path":[4,12,2,9,1],"span":[184,18,25]},{"path":[4,12,2,9,3],"span":[184,28,30]},{"path":[4,13],"span":[188,0,191,1],"leadingComments":" Software Inventory with list of installed SW "},{"path":[4,13,1],"span":[188,8,25]},{"path":[4,13,2,0],"span":[189,2,42]},{"path":[4,13,2,0,6],"span":[189,2,27]},{"path":[4,13,2,0,1],"span":[189,28,37]},{"path":[4,13,2,0,3],"span":[189,40,41]},{"path":[4,13,2,1],"span":[190,2,33]},{"path":[4,13,2,1,4],"span":[190,2,10]},{"path":[4,13,2,1,6],"span":[190,11,19]},{"path":[4,13,2,1,1],"span":[190,20,28]},{"path":[4,13,2,1,3],"span":[190,31,32]},{"path":[4,14],"span":[194,0,221,1],"leadingComments":" Software definition: normalized and with link to raw "},{"path":[4,14,1],"span":[194,8,16]},{"path":[4,14,2,0],"span":[196,2,26]},{"path":[4,14,2,0,4],"span":[196,2,10]},{"path":[4,14,2,0,5],"span":[196,11,16]},{"path":[4,14,2,0,1],"span":[196,17,21]},{"path":[4,14,2,0,3],"span":[196,24,25]},{"path":[4,14,2,1],"span":[197,2,29]},{"path":[4,14,2,1,4],"span":[197,2,10]},{"path":[4,14,2,1,5],"span":[197,11,16]},{"path":[4,14,2,1,1],"span":[197,17,24]},{"path":[4,14,2,1,3],"span":[197,27,28]},{"path":[4,14,2,2],"span":[198,2,28]},{"path":[4,14,2,2,4],"span":[198,2,10]},{"path":[4,14,2,2,5],"span":[198,11,16]},{"path":[4,14,2,2,1],"span":[198,17,23]},{"path":[4,14,2,2,3],"span":[198,26,27]},{"path":[4,14,2,3],"span":[199,2,29]},{"path":[4,14,2,3,4],"span":[199,2,10]},{"path":[4,14,2,3,5],"span":[199,11,16]},{"path":[4,14,2,3,1],"span":[199,17,24]},{"path":[4,14,2,3,3],"span":[199,27,28]},{"path":[4,14,2,4],"span":[200,2,27]},{"path":[4,14,2,4,4],"span":[200,2,10]},{"path":[4,14,2,4,5],"span":[200,11,16]},{"path":[4,14,2,4,1],"span":[200,17,22]},{"path":[4,14,2,4,3],"span":[200,25,26]},{"path":[4,14,2,5],"span":[201,2,31]},{"path":[4,14,2,5,4],"span":[201,2,10]},{"path":[4,14,2,5,5],"span":[201,11,16]},{"path":[4,14,2,5,1],"span":[201,17,26]},{"path":[4,14,2,5,3],"span":[201,29,30]},{"path":[4,14,2,6],"span":[203,2,32]},{"path":[4,14,2,6,4],"span":[203,2,10]},{"path":[4,14,2,6,5],"span":[203,11,17]},{"path":[4,14,2,6,1],"span":[203,18,27]},{"path":[4,14,2,6,3],"span":[203,30,31]},{"path":[4,14,2,7],"span":[204,2,31]},{"path":[4,14,2,7,4],"span":[204,2,10]},{"path":[4,14,2,7,5],"span":[204,11,17]},{"path":[4,14,2,7,1],"span":[204,18,26]},{"path":[4,14,2,7,3],"span":[204,29,30]},{"path":[4,14,2,8],"span":[205,2,32]},{"path":[4,14,2,8,4],"span":[205,2,10]},{"path":[4,14,2,8,5],"span":[205,11,17]},{"path":[4,14,2,8,1],"span":[205,18,27]},{"path":[4,14,2,8,3],"span":[205,30,31]},{"path":[4,14,2,9],"span":[206,2,28]},{"path":[4,14,2,9,4],"span":[206,2,10]},{"path":[4,14,2,9,5],"span":[206,11,17]},{"path":[4,14,2,9,1],"span":[206,18,22]},{"path":[4,14,2,9,3],"span":[206,25,27]},{"path":[4,14,2,10],"span":[207,2,31]},{"path":[4,14,2,10,4],"span":[207,2,10]},{"path":[4,14,2,10,5],"span":[207,11,17]},{"path":[4,14,2,10,1],"span":[207,18,25]},{"path":[4,14,2,10,3],"span":[207,28,30]},{"path":[4,14,2,11],"span":[208,2,34]},{"path":[4,14,2,11,4],"span":[208,2,10]},{"path":[4,14,2,11,5],"span":[208,11,17]},{"path":[4,14,2,11,1],"span":[208,18,28]},{"path":[4,14,2,11,3],"span":[208,31,33]},{"path":[4,14,2,12],"span":[209,2,31]},{"path":[4,14,2,12,4],"span":[209,2,10]},{"path":[4,14,2,12,5],"span":[209,11,17]},{"path":[4,14,2,12,1],"span":[209,18,25]},{"path":[4,14,2,12,3],"span":[209,28,30]},{"path":[4,14,2,13],"span":[210,2,29]},{"path":[4,14,2,13,4],"span":[210,2,10]},{"path":[4,14,2,13,5],"span":[210,11,17]},{"path":[4,14,2,13,1],"span":[210,18,23]},{"path":[4,14,2,13,3],"span":[210,26,28]},{"path":[4,14,2,14],"span":[211,2,28]},{"path":[4,14,2,14,4],"span":[211,2,10]},{"path":[4,14,2,14,5],"span":[211,11,17]},{"path":[4,14,2,14,1],"span":[211,18,22]},{"path":[4,14,2,14,3],"span":[211,25,27]},{"path":[4,14,2,15],"span":[212,2,28]},{"path":[4,14,2,15,4],"span":[212,2,10]},{"path":[4,14,2,15,5],"span":[212,11,17]},{"path":[4,14,2,15,1],"span":[212,18,22]},{"path":[4,14,2,15,3],"span":[212,25,27]},{"path":[4,14,2,16],"span":[214,2,27]},{"path":[4,14,2,16,4],"span":[214,2,10]},{"path":[4,14,2,16,5],"span":[214,11,17]},{"path":[4,14,2,16,1],"span":[214,18,21]},{"path":[4,14,2,16,3],"span":[214,24,26]},{"path":[4,14,2,17],"span":[216,2,49]},{"path":[4,14,2,17,4],"span":[216,2,10]},{"path":[4,14,2,17,6],"span":[216,11,26]},{"path":[4,14,2,17,1],"span":[216,27,43]},{"path":[4,14,2,17,3],"span":[216,46,48]},{"path":[4,14,2,18],"span":[218,2,23]},{"path":[4,14,2,18,6],"span":[218,2,13]},{"path":[4,14,2,18,1],"span":[218,14,17]},{"path":[4,14,2,18,3],"span":[218,20,22]},{"path":[4,14,2,19],"span":[219,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,14,2,19,4],"span":[219,2,10]},{"path":[4,14,2,19,5],"span":[219,11,17]},{"path":[4,14,2,19,1],"span":[219,18,26]},{"path":[4,14,2,19,3],"span":[219,29,31]},{"path":[4,14,2,20],"span":[220,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,14,2,20,4],"span":[220,2,10]},{"path":[4,14,2,20,5],"span":[220,11,17]},{"path":[4,14,2,20,1],"span":[220,18,26]},{"path":[4,14,2,20,3],"span":[220,29,31]},{"path":[4,15],"span":[224,0,238,1],"leadingComments":" Raw Software definition "},{"path":[4,15,1],"span":[224,8,19]},{"path":[4,15,2,0],"span":[225,2,18]},{"path":[4,15,2,0,5],"span":[225,2,8]},{"path":[4,15,2,0,1],"span":[225,9,13]},{"path":[4,15,2,0,3],"span":[225,16,17]},{"path":[4,15,2,1],"span":[227,2,29]},{"path":[4,15,2,1,4],"span":[227,2,10]},{"path":[4,15,2,1,5],"span":[227,11,17]},{"path":[4,15,2,1,1],"span":[227,18,24]},{"path":[4,15,2,1,3],"span":[227,27,28]},{"path":[4,15,2,2],"span":[228,2,30]},{"path":[4,15,2,2,4],"span":[228,2,10]},{"path":[4,15,2,2,5],"span":[228,11,17]},{"path":[4,15,2,2,1],"span":[228,18,25]},{"path":[4,15,2,2,3],"span":[228,28,29]},{"path":[4,15,2,3],"span":[229,2,27]},{"path":[4,15,2,3,4],"span":[229,2,10]},{"path":[4,15,2,3,5],"span":[229,11,17]},{"path":[4,15,2,3,1],"span":[229,18,22]},{"path":[4,15,2,3,3],"span":[229,25,26]},{"path":[4,15,2,4],"span":[230,2,31]},{"path":[4,15,2,4,4],"span":[230,2,10]},{"path":[4,15,2,4,5],"span":[230,11,17]},{"path":[4,15,2,4,1],"span":[230,18,26]},{"path":[4,15,2,4,3],"span":[230,29,30]},{"path":[4,15,2,5],"span":[231,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,15,2,5,4],"span":[231,2,10]},{"path":[4,15,2,5,5],"span":[231,11,17]},{"path":[4,15,2,5,1],"span":[231,18,22]},{"path":[4,15,2,5,3],"span":[231,25,26]},{"path":[4,15,2,6],"span":[232,2,34]},{"path":[4,15,2,6,4],"span":[232,2,10]},{"path":[4,15,2,6,5],"span":[232,11,16]},{"path":[4,15,2,6,1],"span":[232,17,29]},{"path":[4,15,2,6,3],"span":[232,32,33]},{"path":[4,15,2,7],"span":[233,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,15,2,7,4],"span":[233,2,10]},{"path":[4,15,2,7,5],"span":[233,11,17]},{"path":[4,15,2,7,1],"span":[233,18,29]},{"path":[4,15,2,7,3],"span":[233,32,33]},{"path":[4,15,2,8],"span":[235,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,15,2,8,4],"span":[235,2,10]},{"path":[4,15,2,8,5],"span":[235,11,17]},{"path":[4,15,2,8,1],"span":[235,18,23]},{"path":[4,15,2,8,3],"span":[235,26,27]},{"path":[4,15,2,9],"span":[237,2,37]},{"path":[4,15,2,9,4],"span":[237,2,10]},{"path":[4,15,2,9,5],"span":[237,11,15]},{"path":[4,15,2,9,1],"span":[237,16,31]},{"path":[4,15,2,9,3],"span":[237,34,36]},{"path":[4,16],"span":[242,0,275,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,16,1],"span":[242,8,20]},{"path":[4,16,2,0],"span":[243,2,16]},{"path":[4,16,2,0,5],"span":[243,2,7]},{"path":[4,16,2,0,1],"span":[243,9,11]},{"path":[4,16,2,0,3],"span":[243,14,15]},{"path":[4,16,2,1],"span":[244,2,23]},{"path":[4,16,2,1,5],"span":[244,2,8]},{"path":[4,16,2,1,1],"span":[244,9,18]},{"path":[4,16,2,1,3],"span":[244,21,22]},{"path":[4,16,2,2],"span":[246,2,32]},{"path":[4,16,2,2,4],"span":[246,2,10]},{"path":[4,16,2,2,5],"span":[246,11,16]},{"path":[4,16,2,2,1],"span":[246,17,26]},{"path":[4,16,2,2,3],"span":[246,29,31]},{"path":[4,16,2,3],"span":[247,2,38]},{"path":[4,16,2,3,4],"span":[247,2,10]},{"path":[4,16,2,3,5],"span":[247,11,16]},{"path":[4,16,2,3,1],"span":[247,17,33]},{"path":[4,16,2,3,3],"span":[247,36,37]},{"path":[4,16,2,4],"span":[249,2,35]},{"path":[4,16,2,4,4],"span":[249,2,10]},{"path":[4,16,2,4,5],"span":[249,11,17]},{"path":[4,16,2,4,1],"span":[249,18,30]},{"path":[4,16,2,4,3],"span":[249,33,34]},{"path":[4,16,2,5],"span":[250,2,37]},{"path":[4,16,2,5,4],"span":[250,2,10]},{"path":[4,16,2,5,5],"span":[250,11,17]},{"path":[4,16,2,5,1],"span":[250,18,32]},{"path":[4,16,2,5,3],"span":[250,35,36]},{"path":[4,16,2,6],"span":[251,2,39]},{"path":[4,16,2,6,4],"span":[251,2,10]},{"path":[4,16,2,6,5],"span":[251,11,17]},{"path":[4,16,2,6,1],"span":[251,18,34]},{"path":[4,16,2,6,3],"span":[251,37,38]},{"path":[4,16,2,7],"span":[252,2,35]},{"path":[4,16,2,7,4],"span":[252,2,10]},{"path":[4,16,2,7,5],"span":[252,11,17]},{"path":[4,16,2,7,1],"span":[252,18,30]},{"path":[4,16,2,7,3],"span":[252,33,34]},{"path":[4,16,2,8],"span":[253,2,43]},{"path":[4,16,2,8,4],"span":[253,2,10]},{"path":[4,16,2,8,5],"span":[253,11,17]},{"path":[4,16,2,8,1],"span":[253,18,37]},{"path":[4,16,2,8,3],"span":[253,40,42]},{"path":[4,16,2,9],"span":[254,2,35]},{"path":[4,16,2,9,4],"span":[254,2,10]},{"path":[4,16,2,9,5],"span":[254,11,17]},{"path":[4,16,2,9,1],"span":[254,18,29]},{"path":[4,16,2,9,3],"span":[254,32,34]},{"path":[4,16,2,10],"span":[255,2,35]},{"path":[4,16,2,10,4],"span":[255,2,10]},{"path":[4,16,2,10,5],"span":[255,11,17]},{"path":[4,16,2,10,1],"span":[255,18,29]},{"path":[4,16,2,10,3],"span":[255,32,34]},{"path":[4,16,2,11],"span":[256,2,37]},{"path":[4,16,2,11,4],"span":[256,2,10]},{"path":[4,16,2,11,5],"span":[256,11,17]},{"path":[4,16,2,11,1],"span":[256,18,31]},{"path":[4,16,2,11,3],"span":[256,34,36]},{"path":[4,16,2,12],"span":[257,2,40]},{"path":[4,16,2,12,4],"span":[257,2,10]},{"path":[4,16,2,12,5],"span":[257,11,17]},{"path":[4,16,2,12,1],"span":[257,18,34]},{"path":[4,16,2,12,3],"span":[257,37,39]},{"path":[4,16,2,13],"span":[258,2,39]},{"path":[4,16,2,13,4],"span":[258,2,10]},{"path":[4,16,2,13,5],"span":[258,11,17]},{"path":[4,16,2,13,1],"span":[258,18,33]},{"path":[4,16,2,13,3],"span":[258,36,38]},{"path":[4,16,2,14],"span":[259,2,36]},{"path":[4,16,2,14,4],"span":[259,2,10]},{"path":[4,16,2,14,5],"span":[259,11,17]},{"path":[4,16,2,14,1],"span":[259,18,30]},{"path":[4,16,2,14,3],"span":[259,33,35]},{"path":[4,16,2,15],"span":[260,2,43]},{"path":[4,16,2,15,4],"span":[260,2,10]},{"path":[4,16,2,15,5],"span":[260,11,17]},{"path":[4,16,2,15,1],"span":[260,18,37]},{"path":[4,16,2,15,3],"span":[260,40,42]},{"path":[4,16,2,16],"span":[261,2,37]},{"path":[4,16,2,16,4],"span":[261,2,10]},{"path":[4,16,2,16,5],"span":[261,11,17]},{"path":[4,16,2,16,1],"span":[261,18,31]},{"path":[4,16,2,16,3],"span":[261,34,36]},{"path":[4,16,2,17],"span":[262,2,40]},{"path":[4,16,2,17,4],"span":[262,2,10]},{"path":[4,16,2,17,5],"span":[262,11,17]},{"path":[4,16,2,17,1],"span":[262,18,34]},{"path":[4,16,2,17,3],"span":[262,37,39]},{"path":[4,16,2,18],"span":[263,2,41]},{"path":[4,16,2,18,4],"span":[263,2,10]},{"path":[4,16,2,18,5],"span":[263,11,17]},{"path":[4,16,2,18,1],"span":[263,18,35]},{"path":[4,16,2,18,3],"span":[263,38,40]},{"path":[4,16,2,19],"span":[264,2,39]},{"path":[4,16,2,19,4],"span":[264,2,10]},{"path":[4,16,2,19,5],"span":[264,11,17]},{"path":[4,16,2,19,1],"span":[264,18,33]},{"path":[4,16,2,19,3],"span":[264,36,38]},{"path":[4,16,2,20],"span":[265,2,41]},{"path":[4,16,2,20,4],"span":[265,2,10]},{"path":[4,16,2,20,5],"span":[265,11,17]},{"path":[4,16,2,20,1],"span":[265,18,35]},{"path":[4,16,2,20,3],"span":[265,38,40]},{"path":[4,16,2,21],"span":[267,2,36]},{"path":[4,16,2,21,4],"span":[267,2,10]},{"path":[4,16,2,21,5],"span":[267,11,15]},{"path":[4,16,2,21,1],"span":[267,16,30]},{"path":[4,16,2,21,3],"span":[267,33,35]},{"path":[4,16,2,22],"span":[268,2,36]},{"path":[4,16,2,22,4],"span":[268,2,10]},{"path":[4,16,2,22,5],"span":[268,11,15]},{"path":[4,16,2,22,1],"span":[268,16,30]},{"path":[4,16,2,22,3],"span":[268,33,35]},{"path":[4,16,2,23],"span":[269,2,36]},{"path":[4,16,2,23,4],"span":[269,2,10]},{"path":[4,16,2,23,5],"span":[269,11,15]},{"path":[4,16,2,23,1],"span":[269,16,30]},{"path":[4,16,2,23,3],"span":[269,33,35]},{"path":[4,16,2,24],"span":[270,2,38]},{"path":[4,16,2,24,4],"span":[270,2,10]},{"path":[4,16,2,24,5],"span":[270,11,15]},{"path":[4,16,2,24,1],"span":[270,16,32]},{"path":[4,16,2,24,3],"span":[270,35,37]},{"path":[4,16,2,25],"span":[271,2,38]},{"path":[4,16,2,25,4],"span":[271,2,10]},{"path":[4,16,2,25,5],"span":[271,11,15]},{"path":[4,16,2,25,1],"span":[271,16,32]},{"path":[4,16,2,25,3],"span":[271,35,37]},{"path":[4,16,2,26],"span":[272,2,38]},{"path":[4,16,2,26,4],"span":[272,2,10]},{"path":[4,16,2,26,5],"span":[272,11,15]},{"path":[4,16,2,26,1],"span":[272,16,32]},{"path":[4,16,2,26,3],"span":[272,35,37]},{"path":[4,16,2,27],"span":[274,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,16,2,27,4],"span":[274,2,10]},{"path":[4,16,2,27,5],"span":[274,11,16]},{"path":[4,16,2,27,1],"span":[274,17,28]},{"path":[4,16,2,27,3],"span":[274,31,33]},{"path":[4,17],"span":[277,0,312,1]},{"path":[4,17,1],"span":[277,8,20]},{"path":[4,17,2,0],"span":[278,2,15]},{"path":[4,17,2,0,5],"span":[278,2,7]},{"path":[4,17,2,0,1],"span":[278,8,10]},{"path":[4,17,2,0,3],"span":[278,13,14]},{"path":[4,17,2,1],"span":[280,2,20]},{"path":[4,17,2,1,5],"span":[280,2,7]},{"path":[4,17,2,1,1],"span":[280,8,15]},{"path":[4,17,2,1,3],"span":[280,18,19]},{"path":[4,17,2,2],"span":[281,2,26]},{"path":[4,17,2,2,5],"span":[281,2,8]},{"path":[4,17,2,2,1],"span":[281,9,21]},{"path":[4,17,2,2,3],"span":[281,24,25]},{"path":[4,17,2,3],"span":[283,2,36]},{"path":[4,17,2,3,4],"span":[283,2,10]},{"path":[4,17,2,3,5],"span":[283,11,16]},{"path":[4,17,2,3,1],"span":[283,17,31]},{"path":[4,17,2,3,3],"span":[283,34,35]},{"path":[4,17,2,4],"span":[284,2,40]},{"path":[4,17,2,4,4],"span":[284,2,10]},{"path":[4,17,2,4,5],"span":[284,11,17]},{"path":[4,17,2,4,1],"span":[284,18,35]},{"path":[4,17,2,4,3],"span":[284,38,39]},{"path":[4,17,2,5],"span":[286,2,32]},{"path":[4,17,2,5,4],"span":[286,2,10]},{"path":[4,17,2,5,5],"span":[286,11,16]},{"path":[4,17,2,5,1],"span":[286,17,26]},{"path":[4,17,2,5,3],"span":[286,29,31]},{"path":[4,17,2,6],"span":[287,2,31]},{"path":[4,17,2,6,4],"span":[287,2,10]},{"path":[4,17,2,6,5],"span":[287,11,15]},{"path":[4,17,2,6,1],"span":[287,16,25]},{"path":[4,17,2,6,3],"span":[287,28,30]},{"path":[4,17,2,7],"span":[288,2,34]},{"path":[4,17,2,7,4],"span":[288,2,10]},{"path":[4,17,2,7,5],"span":[288,11,17]},{"path":[4,17,2,7,1],"span":[288,18,28]},{"path":[4,17,2,7,3],"span":[288,31,33]},{"path":[4,17,2,8],"span":[289,2,31]},{"path":[4,17,2,8,4],"span":[289,2,10]},{"path":[4,17,2,8,5],"span":[289,11,17]},{"path":[4,17,2,8,1],"span":[289,18,25]},{"path":[4,17,2,8,3],"span":[289,28,30]},{"path":[4,17,2,9],"span":[290,2,35]},{"path":[4,17,2,9,4],"span":[290,2,10]},{"path":[4,17,2,9,5],"span":[290,11,16]},{"path":[4,17,2,9,1],"span":[290,17,29]},{"path":[4,17,2,9,3],"span":[290,32,34]},{"path":[4,17,2,10],"span":[291,2,32]},{"path":[4,17,2,10,4],"span":[291,2,10]},{"path":[4,17,2,10,5],"span":[291,11,16]},{"path":[4,17,2,10,1],"span":[291,17,26]},{"path":[4,17,2,10,3],"span":[291,29,31]},{"path":[4,17,2,11],"span":[292,2,31]},{"path":[4,17,2,11,4],"span":[292,2,10]},{"path":[4,17,2,11,5],"span":[292,11,16]},{"path":[4,17,2,11,1],"span":[292,17,25]},{"path":[4,17,2,11,3],"span":[292,28,30]},{"path":[4,17,2,12],"span":[293,2,43]},{"path":[4,17,2,12,4],"span":[293,2,10]},{"path":[4,17,2,12,5],"span":[293,11,17]},{"path":[4,17,2,12,1],"span":[293,18,37]},{"path":[4,17,2,12,3],"span":[293,40,42]},{"path":[4,17,2,13],"span":[295,2,35]},{"path":[4,17,2,13,4],"span":[295,2,10]},{"path":[4,17,2,13,5],"span":[295,11,17]},{"path":[4,17,2,13,1],"span":[295,18,29]},{"path":[4,17,2,13,3],"span":[295,32,34]},{"path":[4,17,2,14],"span":[296,2,37]},{"path":[4,17,2,14,4],"span":[296,2,10]},{"path":[4,17,2,14,5],"span":[296,11,17]},{"path":[4,17,2,14,1],"span":[296,18,31]},{"path":[4,17,2,14,3],"span":[296,34,36]},{"path":[4,17,2,15],"span":[298,2,39]},{"path":[4,17,2,15,4],"span":[298,2,10]},{"path":[4,17,2,15,5],"span":[298,11,17]},{"path":[4,17,2,15,1],"span":[298,18,33]},{"path":[4,17,2,15,3],"span":[298,36,38]},{"path":[4,17,2,16],"span":[299,2,43]},{"path":[4,17,2,16,4],"span":[299,2,10]},{"path":[4,17,2,16,5],"span":[299,11,17]},{"path":[4,17,2,16,1],"span":[299,18,37]},{"path":[4,17,2,16,3],"span":[299,40,42]},{"path":[4,17,2,17],"span":[300,2,38]},{"path":[4,17,2,17,4],"span":[300,2,10]},{"path":[4,17,2,17,5],"span":[300,11,17]},{"path":[4,17,2,17,1],"span":[300,18,32]},{"path":[4,17,2,17,3],"span":[300,35,37]},{"path":[4,17,2,18],"span":[301,2,38]},{"path":[4,17,2,18,4],"span":[301,2,10]},{"path":[4,17,2,18,5],"span":[301,11,17]},{"path":[4,17,2,18,1],"span":[301,18,32]},{"path":[4,17,2,18,3],"span":[301,35,37]},{"path":[4,17,2,19],"span":[302,2,41]},{"path":[4,17,2,19,4],"span":[302,2,10]},{"path":[4,17,2,19,5],"span":[302,11,15]},{"path":[4,17,2,19,1],"span":[302,18,35]},{"path":[4,17,2,19,3],"span":[302,38,40]},{"path":[4,17,2,20],"span":[303,2,42]},{"path":[4,17,2,20,4],"span":[303,2,10]},{"path":[4,17,2,20,5],"span":[303,11,17]},{"path":[4,17,2,20,1],"span":[303,18,36]},{"path":[4,17,2,20,3],"span":[303,39,41]},{"path":[4,17,2,21],"span":[305,2,32]},{"path":[4,17,2,21,4],"span":[305,2,10]},{"path":[4,17,2,21,5],"span":[305,11,17]},{"path":[4,17,2,21,1],"span":[305,18,26]},{"path":[4,17,2,21,3],"span":[305,29,31]},{"path":[4,17,2,22],"span":[307,2,33]},{"path":[4,17,2,22,4],"span":[307,2,10]},{"path":[4,17,2,22,5],"span":[307,11,16]},{"path":[4,17,2,22,1],"span":[307,17,27]},{"path":[4,17,2,22,3],"span":[307,30,32]},{"path":[4,17,2,23],"span":[309,2,39]},{"path":[4,17,2,23,4],"span":[309,2,10]},{"path":[4,17,2,23,5],"span":[309,11,16]},{"path":[4,17,2,23,1],"span":[309,17,33]},{"path":[4,17,2,23,3],"span":[309,36,38]},{"path":[4,17,2,24],"span":[311,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,17,2,24,4],"span":[311,2,10]},{"path":[4,17,2,24,5],"span":[311,11,16]},{"path":[4,17,2,24,1],"span":[311,17,28]},{"path":[4,17,2,24,3],"span":[311,31,33]},{"path":[4,18],"span":[314,0,347,1]},{"path":[4,18,1],"span":[314,8,17]},{"path":[4,18,2,0],"span":[315,2,15]},{"path":[4,18,2,0,5],"span":[315,2,7]},{"path":[4,18,2,0,1],"span":[315,8,10]},{"path":[4,18,2,0,3],"span":[315,13,14]},{"path":[4,18,2,1],"span":[317,2,21]},{"path":[4,18,2,1,5],"span":[317,2,8]},{"path":[4,18,2,1,1],"span":[317,9,16]},{"path":[4,18,2,1,3],"span":[317,19,20]},{"path":[4,18,2,2],"span":[319,2,33]},{"path":[4,18,2,2,4],"span":[319,2,10]},{"path":[4,18,2,2,5],"span":[319,11,17]},{"path":[4,18,2,2,1],"span":[319,18,28]},{"path":[4,18,2,2,3],"span":[319,31,32]},{"path":[4,18,2,3],"span":[320,2,32]},{"path":[4,18,2,3,4],"span":[320,2,10]},{"path":[4,18,2,3,5],"span":[320,11,17]},{"path":[4,18,2,3,1],"span":[320,18,26]},{"path":[4,18,2,3,3],"span":[320,29,31]},{"path":[4,18,2,4],"span":[321,2,38]},{"path":[4,18,2,4,4],"span":[321,2,10]},{"path":[4,18,2,4,5],"span":[321,11,17]},{"path":[4,18,2,4,1],"span":[321,18,33]},{"path":[4,18,2,4,3],"span":[321,36,37]},{"path":[4,18,2,5],"span":[323,2,33]},{"path":[4,18,2,5,4],"span":[323,2,10]},{"path":[4,18,2,5,5],"span":[323,11,16]},{"path":[4,18,2,5,1],"span":[323,17,28]},{"path":[4,18,2,5,3],"span":[323,31,32]},{"path":[4,18,2,6],"span":[324,2,29]},{"path":[4,18,2,6,4],"span":[324,2,10]},{"path":[4,18,2,6,5],"span":[324,11,16]},{"path":[4,18,2,6,1],"span":[324,17,24]},{"path":[4,18,2,6,3],"span":[324,27,28]},{"path":[4,18,2,7],"span":[325,2,31]},{"path":[4,18,2,7,4],"span":[325,2,10]},{"path":[4,18,2,7,5],"span":[325,11,16]},{"path":[4,18,2,7,1],"span":[325,17,26]},{"path":[4,18,2,7,3],"span":[325,29,30]},{"path":[4,18,2,8],"span":[327,2,34]},{"path":[4,18,2,8,4],"span":[327,2,10]},{"path":[4,18,2,8,5],"span":[327,11,16]},{"path":[4,18,2,8,1],"span":[327,17,29]},{"path":[4,18,2,8,3],"span":[327,32,33]},{"path":[4,18,2,9],"span":[328,2,31]},{"path":[4,18,2,9,4],"span":[328,2,10]},{"path":[4,18,2,9,5],"span":[328,11,16]},{"path":[4,18,2,9,1],"span":[328,17,25]},{"path":[4,18,2,9,3],"span":[328,28,30]},{"path":[4,18,2,10],"span":[329,2,31]},{"path":[4,18,2,10,4],"span":[329,2,10]},{"path":[4,18,2,10,5],"span":[329,11,16]},{"path":[4,18,2,10,1],"span":[329,17,25]},{"path":[4,18,2,10,3],"span":[329,28,30]},{"path":[4,18,2,11],"span":[330,2,32]},{"path":[4,18,2,11,4],"span":[330,2,10]},{"path":[4,18,2,11,5],"span":[330,11,16]},{"path":[4,18,2,11,1],"span":[330,17,26]},{"path":[4,18,2,11,3],"span":[330,29,31]},{"path":[4,18,2,12],"span":[331,2,43]},{"path":[4,18,2,12,4],"span":[331,2,10]},{"path":[4,18,2,12,5],"span":[331,11,17]},{"path":[4,18,2,12,1],"span":[331,18,37]},{"path":[4,18,2,12,3],"span":[331,40,42]},{"path":[4,18,2,13],"span":[332,2,38]},{"path":[4,18,2,13,4],"span":[332,2,10]},{"path":[4,18,2,13,5],"span":[332,11,17]},{"path":[4,18,2,13,1],"span":[332,18,32]},{"path":[4,18,2,13,3],"span":[332,35,37]},{"path":[4,18,2,14],"span":[333,2,40]},{"path":[4,18,2,14,4],"span":[333,2,10]},{"path":[4,18,2,14,5],"span":[333,11,17]},{"path":[4,18,2,14,1],"span":[333,18,34]},{"path":[4,18,2,14,3],"span":[333,37,39]},{"path":[4,18,2,15],"span":[334,2,36]},{"path":[4,18,2,15,4],"span":[334,2,10]},{"path":[4,18,2,15,5],"span":[334,11,17]},{"path":[4,18,2,15,1],"span":[334,18,30]},{"path":[4,18,2,15,3],"span":[334,33,35]},{"path":[4,18,2,16],"span":[335,2,43]},{"path":[4,18,2,16,4],"span":[335,2,10]},{"path":[4,18,2,16,5],"span":[335,11,17]},{"path":[4,18,2,16,1],"span":[335,18,37]},{"path":[4,18,2,16,3],"span":[335,40,42]},{"path":[4,18,2,17],"span":[336,2,35]},{"path":[4,18,2,17,4],"span":[336,2,10]},{"path":[4,18,2,17,5],"span":[336,11,17]},{"path":[4,18,2,17,1],"span":[336,18,29]},{"path":[4,18,2,17,3],"span":[336,32,34]},{"path":[4,18,2,18],"span":[337,2,35]},{"path":[4,18,2,18,4],"span":[337,2,10]},{"path":[4,18,2,18,5],"span":[337,11,17]},{"path":[4,18,2,18,1],"span":[337,18,29]},{"path":[4,18,2,18,3],"span":[337,32,34]},{"path":[4,18,2,19],"span":[338,2,37]},{"path":[4,18,2,19,4],"span":[338,2,10]},{"path":[4,18,2,19,5],"span":[338,11,17]},{"path":[4,18,2,19,1],"span":[338,18,31]},{"path":[4,18,2,19,3],"span":[338,34,36]},{"path":[4,18,2,20],"span":[339,2,40]},{"path":[4,18,2,20,4],"span":[339,2,10]},{"path":[4,18,2,20,5],"span":[339,11,17]},{"path":[4,18,2,20,1],"span":[339,18,34]},{"path":[4,18,2,20,3],"span":[339,37,39]},{"path":[4,18,2,21],"span":[340,2,39]},{"path":[4,18,2,21,4],"span":[340,2,10]},{"path":[4,18,2,21,5],"span":[340,11,17]},{"path":[4,18,2,21,1],"span":[340,18,33]},{"path":[4,18,2,21,3],"span":[340,36,38]},{"path":[4,18,2,22],"span":[342,2,32]},{"path":[4,18,2,22,4],"span":[342,2,10]},{"path":[4,18,2,22,5],"span":[342,11,17]},{"path":[4,18,2,22,1],"span":[342,18,26]},{"path":[4,18,2,22,3],"span":[342,29,31]},{"path":[4,18,2,23],"span":[344,2,39]},{"path":[4,18,2,23,4],"span":[344,2,10]},{"path":[4,18,2,23,5],"span":[344,11,16]},{"path":[4,18,2,23,1],"span":[344,17,33]},{"path":[4,18,2,23,3],"span":[344,36,38]},{"path":[4,18,2,24],"span":[346,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,18,2,24,4],"span":[346,2,10]},{"path":[4,18,2,24,5],"span":[346,11,16]},{"path":[4,18,2,24,1],"span":[346,17,28]},{"path":[4,18,2,24,3],"span":[346,31,33]},{"path":[4,19],"span":[349,0,382,1]},{"path":[4,19,1],"span":[349,8,23]},{"path":[4,19,2,0],"span":[350,2,15]},{"path":[4,19,2,0,5],"span":[350,2,7]},{"path":[4,19,2,0,1],"span":[350,8,10]},{"path":[4,19,2,0,3],"span":[350,13,14]},{"path":[4,19,2,1],"span":[351,2,20]},{"path":[4,19,2,1,5],"span":[351,2,8]},{"path":[4,19,2,1,1],"span":[351,9,15]},{"path":[4,19,2,1,3],"span":[351,18,19]},{"path":[4,19,2,2],"span":[352,2,21]},{"path":[4,19,2,2,5],"span":[352,2,8]},{"path":[4,19,2,2,1],"span":[352,9,16]},{"path":[4,19,2,2,3],"span":[352,19,20]},{"path":[4,19,2,3],"span":[354,2,33]},{"path":[4,19,2,3,4],"span":[354,2,10]},{"path":[4,19,2,3,5],"span":[354,11,17]},{"path":[4,19,2,3,1],"span":[354,18,28]},{"path":[4,19,2,3,3],"span":[354,31,32]},{"path":[4,19,2,4],"span":[355,2,36]},{"path":[4,19,2,4,4],"span":[355,2,10]},{"path":[4,19,2,4,5],"span":[355,11,17]},{"path":[4,19,2,4,1],"span":[355,18,31]},{"path":[4,19,2,4,3],"span":[355,34,35]},{"path":[4,19,2,5],"span":[356,2,33]},{"path":[4,19,2,5,4],"span":[356,2,10]},{"path":[4,19,2,5,5],"span":[356,11,17]},{"path":[4,19,2,5,1],"span":[356,18,28]},{"path":[4,19,2,5,3],"span":[356,31,32]},{"path":[4,19,2,6],"span":[357,2,31]},{"path":[4,19,2,6,4],"span":[357,2,10]},{"path":[4,19,2,6,5],"span":[357,11,17]},{"path":[4,19,2,6,1],"span":[357,18,25]},{"path":[4,19,2,6,3],"span":[357,28,30]},{"path":[4,19,2,7],"span":[358,2,31]},{"path":[4,19,2,7,4],"span":[358,2,10]},{"path":[4,19,2,7,5],"span":[358,11,17]},{"path":[4,19,2,7,1],"span":[358,18,26]},{"path":[4,19,2,7,3],"span":[358,29,30]},{"path":[4,19,2,8],"span":[360,2,33]},{"path":[4,19,2,8,4],"span":[360,2,10]},{"path":[4,19,2,8,5],"span":[360,11,16]},{"path":[4,19,2,8,1],"span":[360,17,28]},{"path":[4,19,2,8,3],"span":[360,31,32]},{"path":[4,19,2,9],"span":[361,2,29]},{"path":[4,19,2,9,4],"span":[361,2,10]},{"path":[4,19,2,9,5],"span":[361,11,16]},{"path":[4,19,2,9,1],"span":[361,17,24]},{"path":[4,19,2,9,3],"span":[361,27,28]},{"path":[4,19,2,10],"span":[362,2,32]},{"path":[4,19,2,10,4],"span":[362,2,10]},{"path":[4,19,2,10,5],"span":[362,11,16]},{"path":[4,19,2,10,1],"span":[362,17,26]},{"path":[4,19,2,10,3],"span":[362,29,31]},{"path":[4,19,2,11],"span":[364,2,31]},{"path":[4,19,2,11,4],"span":[364,2,10]},{"path":[4,19,2,11,5],"span":[364,11,17]},{"path":[4,19,2,11,1],"span":[364,18,25]},{"path":[4,19,2,11,3],"span":[364,28,30]},{"path":[4,19,2,12],"span":[365,2,35]},{"path":[4,19,2,12,4],"span":[365,2,10]},{"path":[4,19,2,12,5],"span":[365,11,17]},{"path":[4,19,2,12,1],"span":[365,18,29]},{"path":[4,19,2,12,3],"span":[365,32,34]},{"path":[4,19,2,13],"span":[367,2,41]},{"path":[4,19,2,13,4],"span":[367,2,10]},{"path":[4,19,2,13,5],"span":[367,11,17]},{"path":[4,19,2,13,1],"span":[367,18,35]},{"path":[4,19,2,13,3],"span":[367,38,40]},{"path":[4,19,2,14],"span":[369,2,35]},{"path":[4,19,2,14,4],"span":[369,2,10]},{"path":[4,19,2,14,5],"span":[369,11,16]},{"path":[4,19,2,14,1],"span":[369,17,29]},{"path":[4,19,2,14,3],"span":[369,32,34]},{"path":[4,19,2,15],"span":[370,2,31]},{"path":[4,19,2,15,4],"span":[370,2,10]},{"path":[4,19,2,15,5],"span":[370,11,16]},{"path":[4,19,2,15,1],"span":[370,17,25]},{"path":[4,19,2,15,3],"span":[370,28,30]},{"path":[4,19,2,16],"span":[371,2,31]},{"path":[4,19,2,16,4],"span":[371,2,10]},{"path":[4,19,2,16,5],"span":[371,11,16]},{"path":[4,19,2,16,1],"span":[371,17,25]},{"path":[4,19,2,16,3],"span":[371,28,30]},{"path":[4,19,2,17],"span":[372,2,32]},{"path":[4,19,2,17,4],"span":[372,2,10]},{"path":[4,19,2,17,5],"span":[372,11,16]},{"path":[4,19,2,17,1],"span":[372,17,26]},{"path":[4,19,2,17,3],"span":[372,29,31]},{"path":[4,19,2,18],"span":[373,2,43]},{"path":[4,19,2,18,4],"span":[373,2,10]},{"path":[4,19,2,18,5],"span":[373,11,17]},{"path":[4,19,2,18,1],"span":[373,18,37]},{"path":[4,19,2,18,3],"span":[373,40,42]},{"path":[4,19,2,19],"span":[375,2,39]},{"path":[4,19,2,19,4],"span":[375,2,10]},{"path":[4,19,2,19,5],"span":[375,11,16]},{"path":[4,19,2,19,1],"span":[375,17,33]},{"path":[4,19,2,19,3],"span":[375,36,38]},{"path":[4,19,2,20],"span":[377,2,33]},{"path":[4,19,2,20,4],"span":[377,2,10]},{"path":[4,19,2,20,5],"span":[377,11,15]},{"path":[4,19,2,20,1],"span":[377,16,27]},{"path":[4,19,2,20,3],"span":[377,30,32]},{"path":[4,19,2,21],"span":[378,2,37]},{"path":[4,19,2,21,4],"span":[378,2,10]},{"path":[4,19,2,21,5],"span":[378,11,15]},{"path":[4,19,2,21,1],"span":[378,16,31]},{"path":[4,19,2,21,3],"span":[378,34,36]},{"path":[4,19,2,22],"span":[379,2,37]},{"path":[4,19,2,22,4],"span":[379,2,10]},{"path":[4,19,2,22,5],"span":[379,11,15]},{"path":[4,19,2,22,1],"span":[379,16,31]},{"path":[4,19,2,22,3],"span":[379,34,36]},{"path":[4,19,2,23],"span":[381,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,19,2,23,4],"span":[381,2,10]},{"path":[4,19,2,23,5],"span":[381,11,16]},{"path":[4,19,2,23,1],"span":[381,17,28]},{"path":[4,19,2,23,3],"span":[381,31,34]},{"path":[4,20],"span":[384,0,387,1]},{"path":[4,20,1],"span":[384,8,22]},{"path":[4,20,2,0],"span":[385,2,16]},{"path":[4,20,2,0,5],"span":[385,2,7]},{"path":[4,20,2,0,1],"span":[385,9,11]},{"path":[4,20,2,0,3],"span":[385,14,15]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}