@lansweeper/data-platform-outbound-grpc 0.1.30 → 0.1.32
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.
- package/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +174 -71
- package/gen-proto/outbound_pb.js +1174 -384
- package/generated-go/outbound.pb.go +2432 -2190
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +38 -9
package/gen-proto/image.json
CHANGED
|
@@ -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":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,157,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,67]},{"path":[8,11],"span":[35,0,67]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,41]},{"path":[8,8],"span":[37,0,41]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[4,0],"span":[124,0,157,1],"leadingComments":" `Any` contains an arbitrary serialized protocol buffer message along with a\n URL that describes the type of the serialized message.\n\n Protobuf library provides support to pack/unpack Any values in the form\n of utility functions or additional generated methods of the Any type.\n\n Example 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\n Example 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\n The pack methods provided by protobuf library will by default use\n 'type.googleapis.com/full.type.name' as the type URL and the unpack\n methods only use the fully qualified type name after the last '/'\n in the type URL, for example \"foo.bar.com/x/y.z\" will yield type\n name \"y.z\".\n\n\n JSON\n ====\n The JSON representation of an `Any` value uses the regular\n representation of the deserialized, embedded message, with an\n additional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": <string>,\n \"lastName\": <string>\n }\n\n If the embedded message type is well-known and has a custom JSON\n representation, that representation will be embedded adding a field\n `value` which holds the custom JSON in addition to the `@type`\n field. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }\n\n"},{"path":[4,0,1],"span":[124,8,11]},{"path":[4,0,2,0],"span":[153,2,22],"leadingComments":" A URL/resource name that uniquely identifies the type of the serialized\n protocol buffer message. This string must contain at least\n one \"/\" character. The last segment of the URL's path must represent\n the fully qualified name of the type (as in\n `path/google.protobuf.Duration`). The name should be in a canonical form\n (e.g., leading \".\" is not accepted).\n\n In practice, teams usually precompile into the binary all types that they\n expect it to use in the context of Any. However, for URLs which use the\n scheme `http`, `https`, or no scheme, one can optionally set up a type\n server that maps type URLs to message definitions as follows:\n\n * If no scheme is provided, `https` is assumed.\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n * Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\n Note: this functionality is not currently available in the official\n protobuf release, and it is not used for type URLs beginning with\n type.googleapis.com.\n\n Schemes other than `http`, `https` (or the empty scheme) might be\n used with implementation specific semantics.\n\n"},{"path":[4,0,2,0,5],"span":[153,2,8]},{"path":[4,0,2,0,1],"span":[153,9,17]},{"path":[4,0,2,0,3],"span":[153,20,21]},{"path":[4,0,2,1],"span":[156,2,18],"leadingComments":" Must be a valid serialized protocol buffer of the above specified type.\n"},{"path":[4,0,2,1,5],"span":[156,2,7]},{"path":[4,0,2,1,1],"span":[156,8,13]},{"path":[4,0,2,1,3],"span":[156,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.proto"],"messageType":[{"name":"GetEntityRequest","field":[{"name":"entity_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"entityPath"}]},{"name":"GetEntityResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"entity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","oneofIndex":1,"jsonName":"entity","proto3Optional":true},{"name":"related","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}],"oneofDecl":[{"name":"_error_description"},{"name":"_entity"}]},{"name":"ListEntityRequest","field":[{"name":"filter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"filter"}]},{"name":"ListEntityResponse","field":[{"name":"entity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"entity"},{"name":"related","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}]},{"name":"CatalogLookupRequest","field":[{"name":"brand_id","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"brandId"},{"name":"model_id","number":2,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"modelId"},{"name":"os_id","number":3,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"osId"},{"name":"sw_id","number":4,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"swId"},{"name":"monitor_id","number":5,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"monitorId"},{"name":"only_requested","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"onlyRequested","proto3Optional":true}],"oneofDecl":[{"name":"_only_requested"}]},{"name":"CatalogLookupResponse","field":[{"name":"brand","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","jsonName":"brand"},{"name":"model","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","jsonName":"model"},{"name":"os","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","jsonName":"os"},{"name":"sw","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","jsonName":"sw"},{"name":"monitor","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","jsonName":"monitor"}]},{"name":"EntityPath","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"source_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceId","proto3Optional":true},{"name":"source_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceType","proto3Optional":true},{"name":"entity_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"entityType","proto3Optional":true},{"name":"entity_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"entityId","proto3Optional":true}],"oneofDecl":[{"name":"_source_id"},{"name":"_source_type"},{"name":"_entity_type"},{"name":"_entity_id"}]},{"name":"Entity","field":[{"name":"asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Asset","oneofIndex":0,"jsonName":"asset"}],"oneofDecl":[{"name":"entity"}]},{"name":"Asset","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"id"},{"name":"last_synced","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"first_seen","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"firstSeen"},{"name":"last_updated","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastUpdated"},{"name":"last_enriched","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastEnriched"},{"name":"tag","number":14,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"},{"name":"relation","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Relation","jsonName":"relation"},{"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.OperatingSystem","oneofIndex":1,"jsonName":"os","proto3Optional":true},{"name":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":2,"jsonName":"softwareInventory","proto3Optional":true},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":3,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":4,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"os_patch","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"processor","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"},{"name":"chassis","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Chassis","oneofIndex":5,"jsonName":"chassis","proto3Optional":true},{"name":"memory","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":6,"jsonName":"memory","proto3Optional":true},{"name":"motherboard","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":7,"jsonName":"motherboard","proto3Optional":true},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":8,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":9,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_hw"},{"name":"_os"},{"name":"_software_inventory"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"},{"name":"_chassis"},{"name":"_memory"},{"name":"_motherboard"},{"name":"_ot_module"},{"name":"_cloud"}]},{"name":"Tag","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"value","proto3Optional":true}],"oneofDecl":[{"name":"_value"}]},{"name":"Relation","field":[{"name":"from","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":0,"jsonName":"from","proto3Optional":true},{"name":"to","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":1,"jsonName":"to","proto3Optional":true},{"name":"time","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"time"},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"tag","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"}],"oneofDecl":[{"name":"_from"},{"name":"_to"}]},{"name":"CloudEntity","field":[{"name":"body","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"body"}]},{"name":"OtModule","field":[{"name":"rack_number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"rackNumber"},{"name":"rack_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rackName"},{"name":"rack_size","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"rackSize"},{"name":"slot","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"slot"},{"name":"slot_width","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"slotWidth"},{"name":"is_main_module","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMainModule"},{"name":"component_type","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"componentType","proto3Optional":true},{"name":"part_number","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"partNumber","proto3Optional":true},{"name":"ext_info","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModuleExtInfo","jsonName":"extInfo"}],"oneofDecl":[{"name":"_component_type"},{"name":"_part_number"}]},{"name":"OtModuleExtInfo","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"AssetType","field":[{"name":"ls_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsName"},{"name":"ls_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"lsId"},{"name":"fing_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fingType","proto3Optional":true},{"name":"sub_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"subType","proto3Optional":true}],"oneofDecl":[{"name":"_fing_type"},{"name":"_sub_type"}]},{"name":"CoreFields","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetType","jsonName":"type"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"domain","proto3Optional":true},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"ipAddress","proto3Optional":true},{"name":"serial","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serial","proto3Optional":true},{"name":"mac","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"mac","proto3Optional":true},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"macVendor","proto3Optional":true},{"name":"sensor_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"sensorId","proto3Optional":true}],"oneofDecl":[{"name":"_domain"},{"name":"_ip_address"},{"name":"_serial"},{"name":"_mac"},{"name":"_mac_vendor"},{"name":"_sensor_id"}]},{"name":"HardwareInfo","field":[{"name":"type_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"typeId","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"model_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"modelId","proto3Optional":true},{"name":"family_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isFamily","proto3Optional":true},{"name":"serial","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"serial","proto3Optional":true},{"name":"type_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":11,"jsonName":"rank","proto3Optional":true},{"name":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":12,"jsonName":"spec","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":13,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":14,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":15,"jsonName":"catalogFamily","proto3Optional":true}],"oneofDecl":[{"name":"_type_id"},{"name":"_make_id"},{"name":"_model_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_serial"},{"name":"_type_name"},{"name":"_make_name"},{"name":"_model_name"},{"name":"_family_name"},{"name":"_cpe"},{"name":"_rank"},{"name":"_spec"},{"name":"_catalog_brand"},{"name":"_catalog_model"},{"name":"_catalog_family"}]},{"name":"SpecHardwareInfo","field":[{"name":"architecture","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"architecture","proto3Optional":true},{"name":"model","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"model","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"}]},{"name":"NormalizedOperatingSystem","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"name","proto3Optional":true},{"name":"version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"version","proto3Optional":true},{"name":"build","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"rank","proto3Optional":true},{"name":"catalog_brand","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":9,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_os","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","oneofIndex":10,"jsonName":"catalogOs","proto3Optional":true}],"oneofDecl":[{"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":"OperatingSystem","field":[{"name":"normalized","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NormalizedOperatingSystem","oneofIndex":0,"jsonName":"normalized","proto3Optional":true},{"name":"architecture","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"architecture","proto3Optional":true},{"name":"build_environment_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"buildEnvironmentType","proto3Optional":true},{"name":"install_date","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":3,"jsonName":"installDate","proto3Optional":true},{"name":"is_debug_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isDebugBuild","proto3Optional":true},{"name":"kernel_caption","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"kernelCaption","proto3Optional":true},{"name":"kernel_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"kernelName","proto3Optional":true},{"name":"kernel_release","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"kernelRelease","proto3Optional":true},{"name":"max_licensed_users","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"maxLicensedUsers","proto3Optional":true},{"name":"max_process_memory_size","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"maxProcessMemorySize","proto3Optional":true},{"name":"organization","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"organization","proto3Optional":true},{"name":"os_caption","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"osCaption","proto3Optional":true},{"name":"os_directory","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"osDirectory","proto3Optional":true},{"name":"os_drive_letter","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"osDriveLetter","proto3Optional":true},{"name":"os_edition","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"osEdition","proto3Optional":true},{"name":"os_name","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"osName","proto3Optional":true},{"name":"os_physical_partition","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"osPhysicalPartition","proto3Optional":true},{"name":"os_type","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"osType","proto3Optional":true},{"name":"os_serial_number","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"osSerialNumber","proto3Optional":true},{"name":"os_system_directory","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"osSystemDirectory","proto3Optional":true},{"name":"other_type_description","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"otherTypeDescription","proto3Optional":true},{"name":"product_suite","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"productSuite","proto3Optional":true},{"name":"registered_user","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"registeredUser","proto3Optional":true},{"name":"service_pack_name","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":23,"jsonName":"servicePackName","proto3Optional":true},{"name":"sp_major_version","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":24,"jsonName":"spMajorVersion","proto3Optional":true},{"name":"sp_minor_version","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"spMinorVersion","proto3Optional":true},{"name":"suite_mask","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"suiteMask","proto3Optional":true},{"name":"system_role","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"systemRole","proto3Optional":true},{"name":"uuid","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":28,"jsonName":"uuid","proto3Optional":true},{"name":"version","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"version","proto3Optional":true},{"name":"version_full","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":30,"jsonName":"versionFull","proto3Optional":true},{"name":"version_major","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":31,"jsonName":"versionMajor","proto3Optional":true},{"name":"version_minor","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":32,"jsonName":"versionMinor","proto3Optional":true},{"name":"version_full_3rd_digit","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"versionFull3rdDigit","proto3Optional":true},{"name":"version_full_4th_digit","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"versionFull4thDigit","proto3Optional":true},{"name":"visible_memory","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":35,"jsonName":"visibleMemory","proto3Optional":true}],"oneofDecl":[{"name":"_normalized"},{"name":"_architecture"},{"name":"_build_environment_type"},{"name":"_install_date"},{"name":"_is_debug_build"},{"name":"_kernel_caption"},{"name":"_kernel_name"},{"name":"_kernel_release"},{"name":"_max_licensed_users"},{"name":"_max_process_memory_size"},{"name":"_organization"},{"name":"_os_caption"},{"name":"_os_directory"},{"name":"_os_drive_letter"},{"name":"_os_edition"},{"name":"_os_name"},{"name":"_os_physical_partition"},{"name":"_os_type"},{"name":"_os_serial_number"},{"name":"_os_system_directory"},{"name":"_other_type_description"},{"name":"_product_suite"},{"name":"_registered_user"},{"name":"_service_pack_name"},{"name":"_sp_major_version"},{"name":"_sp_minor_version"},{"name":"_suite_mask"},{"name":"_system_role"},{"name":"_uuid"},{"name":"_version"},{"name":"_version_full"},{"name":"_version_major"},{"name":"_version_minor"},{"name":"_version_full_3rd_digit"},{"name":"_version_full_4th_digit"},{"name":"_visible_memory"}]},{"name":"OperatingSystemPatch","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"type","proto3Optional":true},{"name":"install_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"installDate","proto3Optional":true},{"name":"install_by","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"installBy","proto3Optional":true},{"name":"comments","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"comments","proto3Optional":true},{"name":"windows_service_pack","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"windowsServicePack","proto3Optional":true}],"oneofDecl":[{"name":"_type"},{"name":"_install_date"},{"name":"_install_by"},{"name":"_comments"},{"name":"_windows_service_pack"}]},{"name":"WindowsOperatingSystemInfo","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"service_pack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"servicePack","proto3Optional":true},{"name":"build","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"build","proto3Optional":true},{"name":"version_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"versionName","proto3Optional":true},{"name":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"osCode","proto3Optional":true},{"name":"boot_device","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"bootDevice","proto3Optional":true},{"name":"build_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"buildNumber","proto3Optional":true},{"name":"build_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"buildType","proto3Optional":true},{"name":"caption","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"caption","proto3Optional":true},{"name":"code_set","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"codeSet","proto3Optional":true},{"name":"country_code","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"countryCode","proto3Optional":true},{"name":"csd_version","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"csdVersion","proto3Optional":true},{"name":"current_timezone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"currentTimezone","proto3Optional":true},{"name":"debug","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"debug","proto3Optional":true},{"name":"description","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"description","proto3Optional":true},{"name":"foreground_application_boost","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":18,"jsonName":"foregroundApplicationBoost","proto3Optional":true},{"name":"install_date","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":19,"jsonName":"installDate","proto3Optional":true},{"name":"max_process_memory_size","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":20,"jsonName":"maxProcessMemorySize","proto3Optional":true},{"name":"number_of_licensed_users","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":21,"jsonName":"numberOfLicensedUsers","proto3Optional":true},{"name":"organization","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"organization","proto3Optional":true},{"name":"os_language","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":23,"jsonName":"osLanguage","proto3Optional":true},{"name":"os_product_suite","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":24,"jsonName":"osProductSuite","proto3Optional":true},{"name":"os_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"osType","proto3Optional":true},{"name":"plus_product_id","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"plusProductId","proto3Optional":true},{"name":"plus_version_number","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"plusVersionNumber","proto3Optional":true},{"name":"registered_user","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":28,"jsonName":"registeredUser","proto3Optional":true},{"name":"serial_number","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"serialNumber","proto3Optional":true},{"name":"service_pack_major_version","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":30,"jsonName":"servicePackMajorVersion","proto3Optional":true},{"name":"service_pack_minor_version","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":31,"jsonName":"servicePackMinorVersion","proto3Optional":true},{"name":"size_stored_in_paging_files","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":32,"jsonName":"sizeStoredInPagingFiles","proto3Optional":true},{"name":"status","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"status","proto3Optional":true},{"name":"system_device","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"systemDevice","proto3Optional":true},{"name":"system_directory","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":35,"jsonName":"systemDirectory","proto3Optional":true},{"name":"total_virtual_memory_size","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":36,"jsonName":"totalVirtualMemorySize","proto3Optional":true},{"name":"total_visible_memory_size","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":37,"jsonName":"totalVisibleMemorySize","proto3Optional":true},{"name":"windows_directory","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":38,"jsonName":"windowsDirectory","proto3Optional":true},{"name":"total_swap_space_size","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":39,"jsonName":"totalSwapSpaceSize","proto3Optional":true},{"name":"large_system_cache","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":40,"jsonName":"largeSystemCache","proto3Optional":true},{"name":"other_type_description","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":41,"jsonName":"otherTypeDescription","proto3Optional":true},{"name":"product_type","number":47,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":42,"jsonName":"productType","proto3Optional":true},{"name":"suite_mask","number":48,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":43,"jsonName":"suiteMask","proto3Optional":true},{"name":"system_drive","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":44,"jsonName":"systemDrive","proto3Optional":true},{"name":"encryption_level","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":45,"jsonName":"encryptionLevel","proto3Optional":true},{"name":"data_execution_prevention32_bit_applications","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":46,"jsonName":"dataExecutionPrevention32BitApplications","proto3Optional":true},{"name":"is_data_execution_prevention_available","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":47,"jsonName":"isDataExecutionPreventionAvailable","proto3Optional":true},{"name":"data_execution_prevention_drivers","number":53,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":48,"jsonName":"dataExecutionPreventionDrivers","proto3Optional":true},{"name":"data_execution_prevention_support_policy","number":54,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":49,"jsonName":"dataExecutionPreventionSupportPolicy","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"},{"name":"_boot_device"},{"name":"_build_number"},{"name":"_build_type"},{"name":"_caption"},{"name":"_code_set"},{"name":"_country_code"},{"name":"_csd_version"},{"name":"_current_timezone"},{"name":"_debug"},{"name":"_description"},{"name":"_foreground_application_boost"},{"name":"_install_date"},{"name":"_max_process_memory_size"},{"name":"_number_of_licensed_users"},{"name":"_organization"},{"name":"_os_language"},{"name":"_os_product_suite"},{"name":"_os_type"},{"name":"_plus_product_id"},{"name":"_plus_version_number"},{"name":"_registered_user"},{"name":"_serial_number"},{"name":"_service_pack_major_version"},{"name":"_service_pack_minor_version"},{"name":"_size_stored_in_paging_files"},{"name":"_status"},{"name":"_system_device"},{"name":"_system_directory"},{"name":"_total_virtual_memory_size"},{"name":"_total_visible_memory_size"},{"name":"_windows_directory"},{"name":"_total_swap_space_size"},{"name":"_large_system_cache"},{"name":"_other_type_description"},{"name":"_product_type"},{"name":"_suite_mask"},{"name":"_system_drive"},{"name":"_encryption_level"},{"name":"_data_execution_prevention32_bit_applications"},{"name":"_is_data_execution_prevention_available"},{"name":"_data_execution_prevention_drivers"},{"name":"_data_execution_prevention_support_policy"}]},{"name":"NetworkInterfaces","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"interface","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterface","jsonName":"interface"}]},{"name":"NetworkInterface","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type"},{"name":"sub_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subType"},{"name":"id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"id","proto3Optional":true},{"name":"mac","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"mac","proto3Optional":true},{"name":"dhcp_enabled","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"dhcpEnabled","proto3Optional":true},{"name":"dhcp_server_ip","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"dhcpServerIp","proto3Optional":true},{"name":"ip","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetIpAddress","jsonName":"ip"},{"name":"gateway_ip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"gatewayIp","proto3Optional":true},{"name":"gateway_mac","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"gatewayMac","proto3Optional":true},{"name":"dns_server","number":11,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"dnsServer"},{"name":"dns_host_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dnsHostName","proto3Optional":true},{"name":"dns_domain_suffix_search_order","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"dnsDomainSuffixSearchOrder","proto3Optional":true},{"name":"service_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"serviceName","proto3Optional":true},{"name":"database_path","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"databasePath","proto3Optional":true}],"oneofDecl":[{"name":"_id"},{"name":"_mac"},{"name":"_dhcp_enabled"},{"name":"_dhcp_server_ip"},{"name":"_gateway_ip"},{"name":"_gateway_mac"},{"name":"_dns_host_name"},{"name":"_dns_domain_suffix_search_order"},{"name":"_service_name"},{"name":"_database_path"}]},{"name":"NetIpAddress","field":[{"name":"ip","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ip"},{"name":"subnet","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subnet"}]},{"name":"Processor","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"address_sizes","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"addressSizes","proto3Optional":true},{"name":"address_width","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"addressWidth","proto3Optional":true},{"name":"architecture","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"architecture","proto3Optional":true},{"name":"availability","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"availability","proto3Optional":true},{"name":"bogo_mips","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":4,"jsonName":"bogoMips","proto3Optional":true},{"name":"byte_order","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"byteOrder","proto3Optional":true},{"name":"caption","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"caption","proto3Optional":true},{"name":"current_clock_speed","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentClockSpeed","proto3Optional":true},{"name":"data_width","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"deviceId","proto3Optional":true},{"name":"external_clock_mhz","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"externalClockMhz","proto3Optional":true},{"name":"family","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":11,"jsonName":"family","proto3Optional":true},{"name":"hypervisor_vendor","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"hypervisorVendor","proto3Optional":true},{"name":"l1d_cache_size_kb","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"l1dCacheSizeKb","proto3Optional":true},{"name":"l1i_cache_size_kb","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"l1iCacheSizeKb","proto3Optional":true},{"name":"l2_cache_size_kb","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"l2CacheSizeKb","proto3Optional":true},{"name":"l2_cache_speed_mhz","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"l2CacheSpeedMhz","proto3Optional":true},{"name":"l3_cache_size_kb","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"l3CacheSizeKb","proto3Optional":true},{"name":"level","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"level","proto3Optional":true},{"name":"logical_cores_count","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"logicalCoresCount","proto3Optional":true},{"name":"manufacturer","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_clock_speed_mhz","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"maxClockSpeedMhz","proto3Optional":true},{"name":"min_clock_speed_mhz","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"minClockSpeedMhz","proto3Optional":true},{"name":"model_number","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":23,"jsonName":"modelNumber","proto3Optional":true},{"name":"op_modes","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"opModes","proto3Optional":true},{"name":"physical_cores_count","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"physicalCoresCount","proto3Optional":true},{"name":"processor_id","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"processorId","proto3Optional":true},{"name":"processor_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":27,"jsonName":"processorType","proto3Optional":true},{"name":"revision","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":28,"jsonName":"revision","proto3Optional":true},{"name":"socket_designation","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"socketDesignation","proto3Optional":true},{"name":"sockets","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":30,"jsonName":"sockets","proto3Optional":true},{"name":"status","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":31,"jsonName":"status","proto3Optional":true},{"name":"stepping","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":32,"jsonName":"stepping","proto3Optional":true},{"name":"threads_per_physical_core_count","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":33,"jsonName":"threadsPerPhysicalCoreCount","proto3Optional":true},{"name":"unique_id","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"uniqueId","proto3Optional":true},{"name":"upgrade_method","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":35,"jsonName":"upgradeMethod","proto3Optional":true},{"name":"version","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":36,"jsonName":"version","proto3Optional":true},{"name":"virtualization","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":37,"jsonName":"virtualization","proto3Optional":true},{"name":"voltage_capabilities","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":38,"jsonName":"voltageCapabilities","proto3Optional":true}],"oneofDecl":[{"name":"_address_sizes"},{"name":"_address_width"},{"name":"_architecture"},{"name":"_availability"},{"name":"_bogo_mips"},{"name":"_byte_order"},{"name":"_caption"},{"name":"_current_clock_speed"},{"name":"_data_width"},{"name":"_device_id"},{"name":"_external_clock_mhz"},{"name":"_family"},{"name":"_hypervisor_vendor"},{"name":"_l1d_cache_size_kb"},{"name":"_l1i_cache_size_kb"},{"name":"_l2_cache_size_kb"},{"name":"_l2_cache_speed_mhz"},{"name":"_l3_cache_size_kb"},{"name":"_level"},{"name":"_logical_cores_count"},{"name":"_manufacturer"},{"name":"_max_clock_speed_mhz"},{"name":"_min_clock_speed_mhz"},{"name":"_model_number"},{"name":"_op_modes"},{"name":"_physical_cores_count"},{"name":"_processor_id"},{"name":"_processor_type"},{"name":"_revision"},{"name":"_socket_designation"},{"name":"_sockets"},{"name":"_status"},{"name":"_stepping"},{"name":"_threads_per_physical_core_count"},{"name":"_unique_id"},{"name":"_upgrade_method"},{"name":"_version"},{"name":"_virtualization"},{"name":"_voltage_capabilities"}]},{"name":"Chassis","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"type"},{"name":"lock_present","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"lockPresent","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"manufacturer","proto3Optional":true},{"name":"security_status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"securityStatus","proto3Optional":true},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"asset_tag","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"assetTag","proto3Optional":true},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"version","proto3Optional":true},{"name":"bootup_state","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"bootupState","proto3Optional":true}],"oneofDecl":[{"name":"_lock_present"},{"name":"_manufacturer"},{"name":"_security_status"},{"name":"_serial_number"},{"name":"_asset_tag"},{"name":"_version"},{"name":"_bootup_state"}]},{"name":"Motherboard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"config_options","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"configOptions"},{"name":"is_hosting_board","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"isHostingBoard","proto3Optional":true},{"name":"is_powered_on","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"isPoweredOn","proto3Optional":true},{"name":"location","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"serialNumber","proto3Optional":true},{"name":"tag","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"tag","proto3Optional":true},{"name":"type","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"type","proto3Optional":true},{"name":"version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"version","proto3Optional":true},{"name":"device","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MotherboardDevice","jsonName":"device"}],"oneofDecl":[{"name":"_is_hosting_board"},{"name":"_is_powered_on"},{"name":"_location"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_tag"},{"name":"_type"},{"name":"_version"}]},{"name":"MotherboardDevice","field":[{"name":"description","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"description","proto3Optional":true},{"name":"enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"enabled","proto3Optional":true},{"name":"tag","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"tag","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_description"},{"name":"_enabled"},{"name":"_tag"},{"name":"_type"}]},{"name":"Memory","field":[{"name":"installed_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"installedSize"},{"name":"physical_memory","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PhysicalMemory","jsonName":"physicalMemory"},{"name":"memory_array","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MemoryArray","jsonName":"memoryArray"}]},{"name":"PhysicalMemory","field":[{"name":"size","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"size","proto3Optional":true},{"name":"bank_locator","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"bankLocator","proto3Optional":true},{"name":"configured_clock_speed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"configuredClockSpeed","proto3Optional":true},{"name":"configured_voltage","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"configuredVoltage","proto3Optional":true},{"name":"data_width","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_locator","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"deviceLocator","proto3Optional":true},{"name":"form_factor","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"formFactor","proto3Optional":true},{"name":"interleave_data_depth","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"interleaveDataDepth","proto3Optional":true},{"name":"interleave_position","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"interleavePosition","proto3Optional":true},{"name":"manufacturer","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"name","proto3Optional":true},{"name":"part_number","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"partNumber","proto3Optional":true},{"name":"position_in_row","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"positionInRow","proto3Optional":true},{"name":"serial_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"serialNumber","proto3Optional":true},{"name":"set","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"set","proto3Optional":true},{"name":"sku","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"sku","proto3Optional":true},{"name":"speed","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"speed","proto3Optional":true},{"name":"state","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"state","proto3Optional":true},{"name":"total_width","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"totalWidth","proto3Optional":true},{"name":"type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":19,"jsonName":"type","proto3Optional":true},{"name":"type_detail","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":20,"jsonName":"typeDetail","proto3Optional":true}],"oneofDecl":[{"name":"_size"},{"name":"_bank_locator"},{"name":"_configured_clock_speed"},{"name":"_configured_voltage"},{"name":"_data_width"},{"name":"_device_locator"},{"name":"_form_factor"},{"name":"_interleave_data_depth"},{"name":"_interleave_position"},{"name":"_manufacturer"},{"name":"_name"},{"name":"_part_number"},{"name":"_position_in_row"},{"name":"_serial_number"},{"name":"_set"},{"name":"_sku"},{"name":"_speed"},{"name":"_state"},{"name":"_total_width"},{"name":"_type"},{"name":"_type_detail"}]},{"name":"MemoryArray","field":[{"name":"max_capacity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"maxCapacity","proto3Optional":true},{"name":"location","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"location","proto3Optional":true},{"name":"memory_devices","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"memoryDevices","proto3Optional":true},{"name":"memory_error_correction","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"memoryErrorCorrection","proto3Optional":true},{"name":"tag","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"tag","proto3Optional":true},{"name":"use","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"use","proto3Optional":true}],"oneofDecl":[{"name":"_max_capacity"},{"name":"_location"},{"name":"_memory_devices"},{"name":"_memory_error_correction"},{"name":"_tag"},{"name":"_use"}]},{"name":"MappedValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"name":"MonitorInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"monitor","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Monitor","jsonName":"monitor"}]},{"name":"Monitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"model_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"modelName"},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"manufacturer_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"manufacturerDate"},{"name":"windows","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsMonitorInfo","oneofIndex":0,"jsonName":"windows"},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":4,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_monitor","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","oneofIndex":5,"jsonName":"catalogMonitor","proto3Optional":true}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_serial_number"},{"name":"_catalog_brand"},{"name":"_catalog_monitor"}]},{"name":"WindowsMonitorInfo","field":[{"name":"model","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"pnp_device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"serial_number","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"serial_hex","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serialHex","proto3Optional":true},{"name":"vesa_manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vesaManufacturer","proto3Optional":true},{"name":"key_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"keyManufacturer","proto3Optional":true},{"name":"manufacturer_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"manufacturerDate","proto3Optional":true},{"name":"device_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"deviceId","proto3Optional":true}],"oneofDecl":[{"name":"_pnp_device_id"},{"name":"_serial_number"},{"name":"_serial_hex"},{"name":"_vesa_manufacturer"},{"name":"_key_manufacturer"},{"name":"_manufacturer_date"},{"name":"_device_id"}]},{"name":"SoftwareInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"software","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","jsonName":"software"}]},{"name":"Software","field":[{"name":"rank","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"rank","proto3Optional":true},{"name":"type_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"typeId","proto3Optional":true},{"name":"cat_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"catId","proto3Optional":true},{"name":"make_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"makeId","proto3Optional":true},{"name":"sw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"swId","proto3Optional":true},{"name":"parent_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"type_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"cat_name","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"catName","proto3Optional":true},{"name":"make_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"makeName","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"version","proto3Optional":true},{"name":"market_ver","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"marketVer","proto3Optional":true},{"name":"edition","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"edition","proto3Optional":true},{"name":"build","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"build","proto3Optional":true},{"name":"arch","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"arch","proto3Optional":true},{"name":"lang","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"lang","proto3Optional":true},{"name":"cpe","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"cpe","proto3Optional":true},{"name":"raw","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawSoftware","jsonName":"raw"},{"name":"raw_hash","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"rawHash","proto3Optional":true},{"name":"nre_hash","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"nreHash","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":19,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_software","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":20,"jsonName":"catalogSoftware","proto3Optional":true},{"name":"catalog_parent","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":21,"jsonName":"catalogParent","proto3Optional":true}],"oneofDecl":[{"name":"_rank"},{"name":"_type_id"},{"name":"_cat_id"},{"name":"_make_id"},{"name":"_sw_id"},{"name":"_parent_id"},{"name":"_type_name"},{"name":"_cat_name"},{"name":"_make_name"},{"name":"_name"},{"name":"_version"},{"name":"_market_ver"},{"name":"_edition"},{"name":"_build"},{"name":"_arch"},{"name":"_lang"},{"name":"_cpe"},{"name":"_raw_hash"},{"name":"_nre_hash"},{"name":"_catalog_brand"},{"name":"_catalog_software"},{"name":"_catalog_parent"}]},{"name":"RawSoftware","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"vendor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"version","proto3Optional":true},{"name":"info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"exe_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"exePath","proto3Optional":true},{"name":"arch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"arch","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"installDate","proto3Optional":true},{"name":"source_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sourceType","proto3Optional":true},{"name":"sw_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"swId","proto3Optional":true},{"name":"is_current_user","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isCurrentUser","proto3Optional":true}],"oneofDecl":[{"name":"_vendor"},{"name":"_version"},{"name":"_info"},{"name":"_exe_path"},{"name":"_arch"},{"name":"_install_date"},{"name":"_source_type"},{"name":"_sw_id"},{"name":"_is_current_user"}]},{"name":"CatalogBrand","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"parent_id","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"parentId","proto3Optional":true},{"name":"last_update_time","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"country_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryCode","proto3Optional":true},{"name":"logo_image_url","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"twitterAccount","proto3Optional":true},{"name":"warranty_url","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"warrantyUrl","proto3Optional":true},{"name":"warranty_direct_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"warrantyDirectUrl","proto3Optional":true},{"name":"community_url","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"communityUrl","proto3Optional":true},{"name":"linkedin_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"linkedinAccount","proto3Optional":true},{"name":"instagram_account","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"instagramAccount","proto3Optional":true},{"name":"youtube_account","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"youtubeAccount","proto3Optional":true},{"name":"pinterest_account","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pinterestAccount","proto3Optional":true},{"name":"tiktok_account","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"tiktokAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":25,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":26,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_parent_id"},{"name":"_last_update_time"},{"name":"_country_code"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_warranty_url"},{"name":"_warranty_direct_url"},{"name":"_community_url"},{"name":"_linkedin_account"},{"name":"_instagram_account"},{"name":"_youtube_account"},{"name":"_pinterest_account"},{"name":"_tiktok_account"},{"name":"_class_hardware"},{"name":"_class_software"},{"name":"_class_consumer"},{"name":"_class_enterprise"},{"name":"_class_industrial"},{"name":"_class_individual"},{"name":"_match_score"}]},{"name":"CatalogModel","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"makeId"},{"name":"device_model","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceModel"},{"name":"device_type_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"deviceTypeId","proto3Optional":true},{"name":"device_model_code","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"deviceModelCode"},{"name":"family_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isFamily","proto3Optional":true},{"name":"manual_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manualUrl","proto3Optional":true},{"name":"faq_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"faqUrl","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eosDate","proto3Optional":true},{"name":"lifecyle_confidence","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"price_class","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"priceClass","proto3Optional":true},{"name":"product_class","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"productClass","proto3Optional":true},{"name":"sh_ifttt_handle","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"shIftttHandle","proto3Optional":true},{"name":"sh_google_ass_langs","number":18,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shGoogleAssLangs"},{"name":"sh_alexa_langs","number":19,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shAlexaLangs"},{"name":"sh_hass_handle","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"shHassHandle","proto3Optional":true},{"name":"sh_apple_home_kit","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"shAppleHomeKit","proto3Optional":true},{"name":"sh_open_hab_handle","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"shOpenHabHandle","proto3Optional":true},{"name":"nist_cpe","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"nistCpe","proto3Optional":true},{"name":"popularity","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"popularity","proto3Optional":true},{"name":"last_update_time","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":17,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_device_type_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_manual_url"},{"name":"_faq_url"},{"name":"_release_date"},{"name":"_disc_date"},{"name":"_eos_date"},{"name":"_lifecyle_confidence"},{"name":"_price_class"},{"name":"_product_class"},{"name":"_sh_ifttt_handle"},{"name":"_sh_hass_handle"},{"name":"_sh_apple_home_kit"},{"name":"_sh_open_hab_handle"},{"name":"_nist_cpe"},{"name":"_popularity"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogOs","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"os_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"osName"},{"name":"os_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"osVersion","proto3Optional":true},{"name":"os_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"osBuild","proto3Optional":true},{"name":"os_version_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"osVersionName","proto3Optional":true},{"name":"override_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":9,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"logo_image_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"twitterAccount","proto3Optional":true},{"name":"nist_cpe","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"nistCpe","proto3Optional":true},{"name":"last_update_time","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":21,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_os_version"},{"name":"_os_build"},{"name":"_os_version_name"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_nist_cpe"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogSoftware","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"sw_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swName"},{"name":"sw_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"swVersion","proto3Optional":true},{"name":"sw_market_ver","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"swMarketVer","proto3Optional":true},{"name":"sw_edition","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"swEdition","proto3Optional":true},{"name":"sw_lang","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"swLang","proto3Optional":true},{"name":"sw_build","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"swBuild","proto3Optional":true},{"name":"make_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"parentId","proto3Optional":true},{"name":"latest_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"latestId","proto3Optional":true},{"name":"sw_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"swType","proto3Optional":true},{"name":"sw_category","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"swCategory","proto3Optional":true},{"name":"release_date","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":10,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":11,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":12,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":13,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"flag_latest","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"flagLatest","proto3Optional":true},{"name":"flag_widespread","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"flagWidespread","proto3Optional":true},{"name":"flag_deprecated","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"flagDeprecated","proto3Optional":true},{"name":"last_update_time","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":18,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_sw_version"},{"name":"_sw_market_ver"},{"name":"_sw_edition"},{"name":"_sw_lang"},{"name":"_sw_build"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_latest_id"},{"name":"_sw_type"},{"name":"_sw_category"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_flag_latest"},{"name":"_flag_widespread"},{"name":"_flag_deprecated"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogMonitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"model","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"vendor_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendorId","proto3Optional":true},{"name":"make_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"family_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isFamily","proto3Optional":true},{"name":"official_page","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"officialPage","proto3Optional":true},{"name":"support_page","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"supportPage","proto3Optional":true},{"name":"size_inch","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":6,"jsonName":"sizeInch","proto3Optional":true},{"name":"max_resolution","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"maxResolution","proto3Optional":true},{"name":"aspect_ratio","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"aspectRatio","proto3Optional":true},{"name":"response_time_ms","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":9,"jsonName":"responseTimeMs","proto3Optional":true},{"name":"hd_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hdType","proto3Optional":true},{"name":"display_tech","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"displayTech","proto3Optional":true},{"name":"refresh_rate","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"refreshRate","proto3Optional":true},{"name":"panel","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"panel","proto3Optional":true},{"name":"height_cm","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":14,"jsonName":"heightCm","proto3Optional":true},{"name":"width_cm","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":15,"jsonName":"widthCm","proto3Optional":true},{"name":"diagonal_cm","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":16,"jsonName":"diagonalCm","proto3Optional":true},{"name":"usb_upstream","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"usbUpstream","proto3Optional":true},{"name":"nr_usb_upstream","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"nrUsbUpstream","proto3Optional":true},{"name":"nr_usb_type_a_downstream","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"nrUsbTypeADownstream","proto3Optional":true},{"name":"nr_hdmi","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"nrHdmi","proto3Optional":true},{"name":"nr_vga","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"nrVga","proto3Optional":true},{"name":"nr_dvi","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"nrDvi","proto3Optional":true},{"name":"hdmi_version","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":23,"jsonName":"hdmiVersion","proto3Optional":true},{"name":"nr_display_ports","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":24,"jsonName":"nrDisplayPorts","proto3Optional":true},{"name":"display_port_version","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":25,"jsonName":"displayPortVersion","proto3Optional":true},{"name":"energy_class","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"energyClass","proto3Optional":true},{"name":"sdr_per_1000_u","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":27,"jsonName":"sdrPer1000U","proto3Optional":true},{"name":"average_watt_usage","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":28,"jsonName":"averageWattUsage","proto3Optional":true},{"name":"max_watt_usage","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":29,"jsonName":"maxWattUsage","proto3Optional":true},{"name":"watt_usage_standby","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":30,"jsonName":"wattUsageStandby","proto3Optional":true},{"name":"watt_power_save","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":31,"jsonName":"wattPowerSave","proto3Optional":true},{"name":"ac_voltage","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":32,"jsonName":"acVoltage","proto3Optional":true},{"name":"ac_freq_hz","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"acFreqHz","proto3Optional":true},{"name":"current_a","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":34,"jsonName":"currentA","proto3Optional":true},{"name":"feature_aio","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":35,"jsonName":"featureAio","proto3Optional":true},{"name":"feature_camera","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":36,"jsonName":"featureCamera","proto3Optional":true},{"name":"feature_speakers","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":37,"jsonName":"featureSpeakers","proto3Optional":true},{"name":"feature_hdmi","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":38,"jsonName":"featureHdmi","proto3Optional":true},{"name":"feature_eth","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":39,"jsonName":"featureEth","proto3Optional":true},{"name":"feature_portrait","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":40,"jsonName":"featurePortrait","proto3Optional":true},{"name":"feature_curved","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":41,"jsonName":"featureCurved","proto3Optional":true},{"name":"last_update_time","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":42,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":43,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_vendor_id"},{"name":"_make_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_official_page"},{"name":"_support_page"},{"name":"_size_inch"},{"name":"_max_resolution"},{"name":"_aspect_ratio"},{"name":"_response_time_ms"},{"name":"_hd_type"},{"name":"_display_tech"},{"name":"_refresh_rate"},{"name":"_panel"},{"name":"_height_cm"},{"name":"_width_cm"},{"name":"_diagonal_cm"},{"name":"_usb_upstream"},{"name":"_nr_usb_upstream"},{"name":"_nr_usb_type_a_downstream"},{"name":"_nr_hdmi"},{"name":"_nr_vga"},{"name":"_nr_dvi"},{"name":"_hdmi_version"},{"name":"_nr_display_ports"},{"name":"_display_port_version"},{"name":"_energy_class"},{"name":"_sdr_per_1000_u"},{"name":"_average_watt_usage"},{"name":"_max_watt_usage"},{"name":"_watt_usage_standby"},{"name":"_watt_power_save"},{"name":"_ac_voltage"},{"name":"_ac_freq_hz"},{"name":"_current_a"},{"name":"_feature_aio"},{"name":"_feature_camera"},{"name":"_feature_speakers"},{"name":"_feature_hdmi"},{"name":"_feature_eth"},{"name":"_feature_portrait"},{"name":"_feature_curved"},{"name":"_last_update_time"},{"name":"_match_score"}]}],"service":[{"name":"DataCoreOutboundService","method":[{"name":"GetEntity","inputType":".com.lansweeper.dp.outbound.v1.GetEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.GetEntityResponse","options":{}},{"name":"ListEntities","inputType":".com.lansweeper.dp.outbound.v1.ListEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.ListEntityResponse","options":{},"serverStreaming":true},{"name":"CatalogLookup","inputType":".com.lansweeper.dp.outbound.v1.CatalogLookupRequest","outputType":".com.lansweeper.dp.outbound.v1.CatalogLookupResponse","options":{}}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,923,1]},{"path":[12],"span":[7,0,18],"leadingComments":"\n Copyright Lansweeper (c)\n\n This files contains the Data Access API and the definition of outbound model\n\n N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc\n"},{"path":[2],"span":[8,0,38]},{"path":[8],"span":[10,0,37]},{"path":[8,11],"span":[10,0,37]},{"path":[8],"span":[11,0,34]},{"path":[8,10],"span":[11,0,34]},{"path":[3,0],"span":[13,0,41]},{"path":[3,1],"span":[14,0,35]},{"path":[6,0],"span":[23,0,33,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[23,8,31]},{"path":[6,0,2,0],"span":[26,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[26,6,15]},{"path":[6,0,2,0,2],"span":[26,17,33]},{"path":[6,0,2,0,3],"span":[26,44,61]},{"path":[6,0,2,1],"span":[29,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[29,6,18]},{"path":[6,0,2,1,2],"span":[29,19,36]},{"path":[6,0,2,1,6],"span":[29,47,53]},{"path":[6,0,2,1,3],"span":[29,54,72]},{"path":[6,0,2,2],"span":[32,2,77],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,2,1],"span":[32,6,19]},{"path":[6,0,2,2,2],"span":[32,21,41]},{"path":[6,0,2,2,3],"span":[32,52,73]},{"path":[4,0],"span":[38,0,41,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[38,8,24]},{"path":[4,0,2,0],"span":[39,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[39,2,12]},{"path":[4,0,2,0,1],"span":[39,13,24]},{"path":[4,0,2,0,3],"span":[39,27,28]},{"path":[4,1],"span":[43,0,49,1]},{"path":[4,1,1],"span":[43,8,25]},{"path":[4,1,2,0],"span":[44,2,19]},{"path":[4,1,2,0,5],"span":[44,2,6]},{"path":[4,1,2,0,1],"span":[44,7,14]},{"path":[4,1,2,0,3],"span":[44,17,18]},{"path":[4,1,2,1],"span":[45,2,40]},{"path":[4,1,2,1,4],"span":[45,2,10]},{"path":[4,1,2,1,5],"span":[45,11,17]},{"path":[4,1,2,1,1],"span":[45,18,35]},{"path":[4,1,2,1,3],"span":[45,38,39]},{"path":[4,1,2,2],"span":[47,2,29]},{"path":[4,1,2,2,4],"span":[47,2,10]},{"path":[4,1,2,2,6],"span":[47,11,17]},{"path":[4,1,2,2,1],"span":[47,18,24]},{"path":[4,1,2,2,3],"span":[47,27,28]},{"path":[4,1,2,3],"span":[48,2,30]},{"path":[4,1,2,3,4],"span":[48,2,10]},{"path":[4,1,2,3,6],"span":[48,11,17]},{"path":[4,1,2,3,1],"span":[48,18,25]},{"path":[4,1,2,3,3],"span":[48,28,29]},{"path":[4,2],"span":[51,0,53,1]},{"path":[4,2,1],"span":[51,8,25]},{"path":[4,2,2,0],"span":[52,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[52,2,12]},{"path":[4,2,2,0,1],"span":[52,13,19]},{"path":[4,2,2,0,3],"span":[52,22,23]},{"path":[4,3],"span":[55,0,58,1]},{"path":[4,3,1],"span":[55,8,26]},{"path":[4,3,2,0],"span":[56,2,20]},{"path":[4,3,2,0,6],"span":[56,2,8]},{"path":[4,3,2,0,1],"span":[56,9,15]},{"path":[4,3,2,0,3],"span":[56,18,19]},{"path":[4,3,2,1],"span":[57,2,30]},{"path":[4,3,2,1,4],"span":[57,2,10]},{"path":[4,3,2,1,6],"span":[57,11,17]},{"path":[4,3,2,1,1],"span":[57,18,25]},{"path":[4,3,2,1,3],"span":[57,28,29]},{"path":[4,4],"span":[60,0,68,1]},{"path":[4,4,1],"span":[60,8,28]},{"path":[4,4,2,0],"span":[61,2,30]},{"path":[4,4,2,0,4],"span":[61,2,10]},{"path":[4,4,2,0,5],"span":[61,11,16]},{"path":[4,4,2,0,1],"span":[61,17,25]},{"path":[4,4,2,0,3],"span":[61,28,29]},{"path":[4,4,2,1],"span":[62,2,30]},{"path":[4,4,2,1,4],"span":[62,2,10]},{"path":[4,4,2,1,5],"span":[62,11,16]},{"path":[4,4,2,1,1],"span":[62,17,25]},{"path":[4,4,2,1,3],"span":[62,28,29]},{"path":[4,4,2,2],"span":[63,2,27]},{"path":[4,4,2,2,4],"span":[63,2,10]},{"path":[4,4,2,2,5],"span":[63,11,16]},{"path":[4,4,2,2,1],"span":[63,17,22]},{"path":[4,4,2,2,3],"span":[63,25,26]},{"path":[4,4,2,3],"span":[64,2,27]},{"path":[4,4,2,3,4],"span":[64,2,10]},{"path":[4,4,2,3,5],"span":[64,11,16]},{"path":[4,4,2,3,1],"span":[64,17,22]},{"path":[4,4,2,3,3],"span":[64,25,26]},{"path":[4,4,2,4],"span":[65,2,32]},{"path":[4,4,2,4,4],"span":[65,2,10]},{"path":[4,4,2,4,5],"span":[65,11,16]},{"path":[4,4,2,4,1],"span":[65,17,27]},{"path":[4,4,2,4,3],"span":[65,30,31]},{"path":[4,4,2,5],"span":[67,2,36],"trailingComments":" false by default: to avoid to get full path\n"},{"path":[4,4,2,5,4],"span":[67,2,10]},{"path":[4,4,2,5,5],"span":[67,11,15]},{"path":[4,4,2,5,1],"span":[67,16,30]},{"path":[4,4,2,5,3],"span":[67,33,35]},{"path":[4,5],"span":[70,0,76,1]},{"path":[4,5,1],"span":[70,8,29]},{"path":[4,5,2,0],"span":[71,2,34]},{"path":[4,5,2,0,4],"span":[71,2,10]},{"path":[4,5,2,0,6],"span":[71,11,23]},{"path":[4,5,2,0,1],"span":[71,24,29]},{"path":[4,5,2,0,3],"span":[71,32,33]},{"path":[4,5,2,1],"span":[72,2,34]},{"path":[4,5,2,1,4],"span":[72,2,10]},{"path":[4,5,2,1,6],"span":[72,11,23]},{"path":[4,5,2,1,1],"span":[72,24,29]},{"path":[4,5,2,1,3],"span":[72,32,33]},{"path":[4,5,2,2],"span":[73,2,28]},{"path":[4,5,2,2,4],"span":[73,2,10]},{"path":[4,5,2,2,6],"span":[73,11,20]},{"path":[4,5,2,2,1],"span":[73,21,23]},{"path":[4,5,2,2,3],"span":[73,26,27]},{"path":[4,5,2,3],"span":[74,2,34]},{"path":[4,5,2,3,4],"span":[74,2,10]},{"path":[4,5,2,3,6],"span":[74,11,26]},{"path":[4,5,2,3,1],"span":[74,27,29]},{"path":[4,5,2,3,3],"span":[74,32,33]},{"path":[4,5,2,4],"span":[75,2,38]},{"path":[4,5,2,4,4],"span":[75,2,10]},{"path":[4,5,2,4,6],"span":[75,11,25]},{"path":[4,5,2,4,1],"span":[75,26,33]},{"path":[4,5,2,4,3],"span":[75,36,37]},{"path":[4,6],"span":[80,0,86,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[80,8,18]},{"path":[4,6,2,0],"span":[81,2,21]},{"path":[4,6,2,0,5],"span":[81,2,8]},{"path":[4,6,2,0,1],"span":[81,9,16]},{"path":[4,6,2,0,3],"span":[81,19,20]},{"path":[4,6,2,1],"span":[82,2,32]},{"path":[4,6,2,1,4],"span":[82,2,10]},{"path":[4,6,2,1,5],"span":[82,11,17]},{"path":[4,6,2,1,1],"span":[82,18,27]},{"path":[4,6,2,1,3],"span":[82,30,31]},{"path":[4,6,2,2],"span":[83,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[83,2,10]},{"path":[4,6,2,2,5],"span":[83,11,17]},{"path":[4,6,2,2,1],"span":[83,18,29]},{"path":[4,6,2,2,3],"span":[83,32,33]},{"path":[4,6,2,3],"span":[84,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[84,2,10]},{"path":[4,6,2,3,5],"span":[84,11,17]},{"path":[4,6,2,3,1],"span":[84,18,29]},{"path":[4,6,2,3,3],"span":[84,32,33]},{"path":[4,6,2,4],"span":[85,2,32]},{"path":[4,6,2,4,4],"span":[85,2,10]},{"path":[4,6,2,4,5],"span":[85,11,17]},{"path":[4,6,2,4,1],"span":[85,18,27]},{"path":[4,6,2,4,3],"span":[85,30,31]},{"path":[4,7],"span":[89,0,95,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[89,8,14]},{"path":[4,7,8,0],"span":[90,2,94,3]},{"path":[4,7,8,0,1],"span":[90,8,14]},{"path":[4,7,2,0],"span":[91,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[91,4,9]},{"path":[4,7,2,0,1],"span":[91,10,15]},{"path":[4,7,2,0,3],"span":[91,18,19]},{"path":[4,8],"span":[98,0,138,1],"leadingComments":" Asset object: IT/OT/CDR... CDK? "},{"path":[4,8,1],"span":[98,8,13]},{"path":[4,8,2,0],"span":[100,2,20]},{"path":[4,8,2,0,6],"span":[100,2,12]},{"path":[4,8,2,0,1],"span":[100,13,15]},{"path":[4,8,2,0,3],"span":[100,18,19]},{"path":[4,8,2,1],"span":[102,2,44]},{"path":[4,8,2,1,6],"span":[102,2,27]},{"path":[4,8,2,1,1],"span":[102,28,39]},{"path":[4,8,2,1,3],"span":[102,42,43]},{"path":[4,8,2,2],"span":[103,2,43]},{"path":[4,8,2,2,6],"span":[103,2,27]},{"path":[4,8,2,2,1],"span":[103,28,38]},{"path":[4,8,2,2,3],"span":[103,41,42]},{"path":[4,8,2,3],"span":[104,2,45]},{"path":[4,8,2,3,6],"span":[104,2,27]},{"path":[4,8,2,3,1],"span":[104,28,40]},{"path":[4,8,2,3,3],"span":[104,43,44]},{"path":[4,8,2,4],"span":[105,2,46]},{"path":[4,8,2,4,6],"span":[105,2,27]},{"path":[4,8,2,4,1],"span":[105,28,41]},{"path":[4,8,2,4,3],"span":[105,44,45]},{"path":[4,8,2,5],"span":[107,2,24]},{"path":[4,8,2,5,4],"span":[107,2,10]},{"path":[4,8,2,5,6],"span":[107,11,14]},{"path":[4,8,2,5,1],"span":[107,15,18]},{"path":[4,8,2,5,3],"span":[107,21,23]},{"path":[4,8,2,6],"span":[108,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,8,2,6,4],"span":[108,2,10]},{"path":[4,8,2,6,6],"span":[108,11,19]},{"path":[4,8,2,6,1],"span":[108,20,28]},{"path":[4,8,2,6,3],"span":[108,31,33]},{"path":[4,8,2,7],"span":[110,2,22]},{"path":[4,8,2,7,6],"span":[110,2,12]},{"path":[4,8,2,7,1],"span":[110,13,17]},{"path":[4,8,2,7,3],"span":[110,20,21]},{"path":[4,8,2,8],"span":[112,2,31]},{"path":[4,8,2,8,4],"span":[112,2,10]},{"path":[4,8,2,8,6],"span":[112,11,23]},{"path":[4,8,2,8,1],"span":[112,24,26]},{"path":[4,8,2,8,3],"span":[112,29,30]},{"path":[4,8,2,9],"span":[113,2,34]},{"path":[4,8,2,9,4],"span":[113,2,10]},{"path":[4,8,2,9,6],"span":[113,11,26]},{"path":[4,8,2,9,1],"span":[113,27,29]},{"path":[4,8,2,9,3],"span":[113,32,33]},{"path":[4,8,2,10],"span":[114,2,52]},{"path":[4,8,2,10,4],"span":[114,2,10]},{"path":[4,8,2,10,6],"span":[114,11,28]},{"path":[4,8,2,10,1],"span":[114,29,47]},{"path":[4,8,2,10,3],"span":[114,50,51]},{"path":[4,8,2,11],"span":[116,2,51]},{"path":[4,8,2,11,4],"span":[116,2,10]},{"path":[4,8,2,11,6],"span":[116,11,27]},{"path":[4,8,2,11,1],"span":[116,28,45]},{"path":[4,8,2,11,3],"span":[116,48,50]},{"path":[4,8,2,12],"span":[118,2,53]},{"path":[4,8,2,12,4],"span":[118,2,10]},{"path":[4,8,2,12,6],"span":[118,11,28]},{"path":[4,8,2,12,1],"span":[118,29,47]},{"path":[4,8,2,12,3],"span":[118,50,52]},{"path":[4,8,2,13],"span":[120,2,46]},{"path":[4,8,2,13,4],"span":[120,2,10]},{"path":[4,8,2,13,6],"span":[120,11,31]},{"path":[4,8,2,13,1],"span":[120,32,40]},{"path":[4,8,2,13,3],"span":[120,43,45]},{"path":[4,8,2,14],"span":[122,2,36]},{"path":[4,8,2,14,4],"span":[122,2,10]},{"path":[4,8,2,14,6],"span":[122,11,20]},{"path":[4,8,2,14,1],"span":[122,21,30]},{"path":[4,8,2,14,3],"span":[122,33,35]},{"path":[4,8,2,15],"span":[123,2,32]},{"path":[4,8,2,15,4],"span":[123,2,10]},{"path":[4,8,2,15,6],"span":[123,11,18]},{"path":[4,8,2,15,1],"span":[123,19,26]},{"path":[4,8,2,15,3],"span":[123,29,31]},{"path":[4,8,2,16],"span":[124,2,30]},{"path":[4,8,2,16,4],"span":[124,2,10]},{"path":[4,8,2,16,6],"span":[124,11,17]},{"path":[4,8,2,16,1],"span":[124,18,24]},{"path":[4,8,2,16,3],"span":[124,27,29]},{"path":[4,8,2,17],"span":[125,2,40]},{"path":[4,8,2,17,4],"span":[125,2,10]},{"path":[4,8,2,17,6],"span":[125,11,22]},{"path":[4,8,2,17,1],"span":[125,23,34]},{"path":[4,8,2,17,3],"span":[125,37,39]},{"path":[4,8,2,18],"span":[127,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,18,4],"span":[127,2,10]},{"path":[4,8,2,18,6],"span":[127,11,19]},{"path":[4,8,2,18,1],"span":[127,20,29]},{"path":[4,8,2,18,3],"span":[127,32,34]},{"path":[4,8,2,19],"span":[129,2,34]},{"path":[4,8,2,19,4],"span":[129,2,10]},{"path":[4,8,2,19,6],"span":[129,11,22]},{"path":[4,8,2,19,1],"span":[129,23,28]},{"path":[4,8,2,19,3],"span":[129,31,33]},{"path":[4,9],"span":[156,0,159,1],"leadingComments":"\n A key/value tag, also known as a key-value pair or simply a tag: a key and a corresponding value.\n It is used to associate metadata or additional information with an entity or data element.\n The key represents the identifier or name of the tag, while the value contains the associated data or information.\n The key serves as a unique label or reference that can be used to retrieve or manipulate the value associated with it.\n In this context, the key can be thought of as a variable name or a dictionary key, and the value can be any data type or object.\n\n Among other things we also use this to mark the Source.\n * E.g.: Source: LS/IT/CDR\n * E.g.: Source: LS/IT/Scan-WMI\n * E.g.: Source: LS/IT/Scan-MAC\n * E.g.: Source: LS/IT/Scan-Linux\n * E.g.: Source: LS/IT/OT (OT like this?)\n * E.g.: Source: LS/CDK (cloud discovery?)\n * E.g.: Source: LS/DataCore (reconciliation)\n"},{"path":[4,9,1],"span":[156,8,11]},{"path":[4,9,2,0],"span":[157,2,17]},{"path":[4,9,2,0,5],"span":[157,2,8]},{"path":[4,9,2,0,1],"span":[157,9,12]},{"path":[4,9,2,0,3],"span":[157,15,16]},{"path":[4,9,2,1],"span":[158,2,28]},{"path":[4,9,2,1,4],"span":[158,2,10]},{"path":[4,9,2,1,5],"span":[158,11,17]},{"path":[4,9,2,1,1],"span":[158,18,23]},{"path":[4,9,2,1,3],"span":[158,26,27]},{"path":[4,10],"span":[166,0,172,1],"leadingComments":"\n A relation between two entities refers to the connection, association, or interaction that exists between them.\n It signifies the way in which these entities are related or linked to each other based on certain characteristics,\n attributes, behaviors, dependencies, or roles they share.\n"},{"path":[4,10,1],"span":[166,8,16]},{"path":[4,10,2,0],"span":[167,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,0,4],"span":[167,2,10]},{"path":[4,10,2,0,6],"span":[167,11,21]},{"path":[4,10,2,0,1],"span":[167,22,26]},{"path":[4,10,2,0,3],"span":[167,29,30]},{"path":[4,10,2,1],"span":[168,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,1,4],"span":[168,2,10]},{"path":[4,10,2,1,6],"span":[168,11,21]},{"path":[4,10,2,1,1],"span":[168,22,24]},{"path":[4,10,2,1,3],"span":[168,27,28]},{"path":[4,10,2,2],"span":[169,2,37]},{"path":[4,10,2,2,6],"span":[169,2,27]},{"path":[4,10,2,2,1],"span":[169,28,32]},{"path":[4,10,2,2,3],"span":[169,35,36]},{"path":[4,10,2,3],"span":[170,2,18]},{"path":[4,10,2,3,5],"span":[170,2,8]},{"path":[4,10,2,3,1],"span":[170,9,13]},{"path":[4,10,2,3,3],"span":[170,16,17]},{"path":[4,10,2,4],"span":[171,2,23]},{"path":[4,10,2,4,4],"span":[171,2,10]},{"path":[4,10,2,4,6],"span":[171,11,14]},{"path":[4,10,2,4,1],"span":[171,15,18]},{"path":[4,10,2,4,3],"span":[171,21,22]},{"path":[4,11],"span":[182,0,184,1],"leadingComments":"\n Cloud entity coming from CDK scanner.\n This could be extended later on to become more than a carrier of opaque info.\n I.e. the any object contains objects as defined in discovery_cloud.proto\n Only objects needing to be mapped into common/core asset fields are handled\n the rest is fast-forwarded ahead to the chain to allow us to avoid useless\n early heavy mapping and post-pone it only where/when it's needed.\n"},{"path":[4,11,1],"span":[182,8,19]},{"path":[4,11,2,0],"span":[183,2,31]},{"path":[4,11,2,0,6],"span":[183,2,21]},{"path":[4,11,2,0,1],"span":[183,22,26]},{"path":[4,11,2,0,3],"span":[183,29,30]},{"path":[4,12],"span":[194,0,208,1],"leadingComments":"\n OT module/card specific info.\n Information about belonging rack and:\n - if it's main module, reference to all sub-modules\n - if it's sub-module, reference to parent main\n HW info: in HW standard section.\n OS info: in OS standard section.\n"},{"path":[4,12,1],"span":[194,8,16]},{"path":[4,12,2,0],"span":[195,2,24]},{"path":[4,12,2,0,5],"span":[195,2,7]},{"path":[4,12,2,0,1],"span":[195,8,19]},{"path":[4,12,2,0,3],"span":[195,22,23]},{"path":[4,12,2,1],"span":[196,2,23]},{"path":[4,12,2,1,5],"span":[196,2,8]},{"path":[4,12,2,1,1],"span":[196,9,18]},{"path":[4,12,2,1,3],"span":[196,21,22]},{"path":[4,12,2,2],"span":[197,2,22]},{"path":[4,12,2,2,5],"span":[197,2,7]},{"path":[4,12,2,2,1],"span":[197,8,17]},{"path":[4,12,2,2,3],"span":[197,20,21]},{"path":[4,12,2,3],"span":[198,2,17]},{"path":[4,12,2,3,5],"span":[198,2,7]},{"path":[4,12,2,3,1],"span":[198,8,12]},{"path":[4,12,2,3,3],"span":[198,15,16]},{"path":[4,12,2,4],"span":[199,2,23]},{"path":[4,12,2,4,5],"span":[199,2,7]},{"path":[4,12,2,4,1],"span":[199,8,18]},{"path":[4,12,2,4,3],"span":[199,21,22]},{"path":[4,12,2,5],"span":[201,2,26]},{"path":[4,12,2,5,5],"span":[201,2,6]},{"path":[4,12,2,5,1],"span":[201,7,21]},{"path":[4,12,2,5,3],"span":[201,24,25]},{"path":[4,12,2,6],"span":[203,2,37]},{"path":[4,12,2,6,4],"span":[203,2,10]},{"path":[4,12,2,6,5],"span":[203,11,17]},{"path":[4,12,2,6,1],"span":[203,18,32]},{"path":[4,12,2,6,3],"span":[203,35,36]},{"path":[4,12,2,7],"span":[205,2,34]},{"path":[4,12,2,7,4],"span":[205,2,10]},{"path":[4,12,2,7,5],"span":[205,11,17]},{"path":[4,12,2,7,1],"span":[205,18,29]},{"path":[4,12,2,7,3],"span":[205,32,33]},{"path":[4,12,2,8],"span":[207,2,40]},{"path":[4,12,2,8,4],"span":[207,2,10]},{"path":[4,12,2,8,6],"span":[207,11,26]},{"path":[4,12,2,8,1],"span":[207,27,35]},{"path":[4,12,2,8,3],"span":[207,38,39]},{"path":[4,13],"span":[210,0,213,1]},{"path":[4,13,1],"span":[210,8,23]},{"path":[4,13,2,0],"span":[211,2,17]},{"path":[4,13,2,0,5],"span":[211,2,8]},{"path":[4,13,2,0,1],"span":[211,9,12]},{"path":[4,13,2,0,3],"span":[211,15,16]},{"path":[4,13,2,1],"span":[212,2,19]},{"path":[4,13,2,1,5],"span":[212,2,8]},{"path":[4,13,2,1,1],"span":[212,9,14]},{"path":[4,13,2,1,3],"span":[212,17,18]},{"path":[4,14],"span":[219,0,228,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,14,1],"span":[219,8,17]},{"path":[4,14,2,0],"span":[221,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,14,2,0,5],"span":[221,2,8]},{"path":[4,14,2,0,1],"span":[221,9,16]},{"path":[4,14,2,0,3],"span":[221,19,20]},{"path":[4,14,2,1],"span":[223,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,14,2,1,5],"span":[223,2,7]},{"path":[4,14,2,1,1],"span":[223,8,13]},{"path":[4,14,2,1,3],"span":[223,16,17]},{"path":[4,14,2,2],"span":[225,2,32],"leadingComments":" Fing Type\n"},{"path":[4,14,2,2,4],"span":[225,2,10]},{"path":[4,14,2,2,5],"span":[225,11,17]},{"path":[4,14,2,2,1],"span":[225,18,27]},{"path":[4,14,2,2,3],"span":[225,30,31]},{"path":[4,14,2,3],"span":[227,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,14,2,3,4],"span":[227,2,10]},{"path":[4,14,2,3,5],"span":[227,11,17]},{"path":[4,14,2,3,1],"span":[227,18,26]},{"path":[4,14,2,3,3],"span":[227,29,30]},{"path":[4,15],"span":[233,0,242,1],"leadingComments":"\n\n"},{"path":[4,15,1],"span":[233,8,18]},{"path":[4,15,2,0],"span":[234,2,21]},{"path":[4,15,2,0,6],"span":[234,2,11]},{"path":[4,15,2,0,1],"span":[234,12,16]},{"path":[4,15,2,0,3],"span":[234,19,20]},{"path":[4,15,2,1],"span":[235,2,18]},{"path":[4,15,2,1,5],"span":[235,2,8]},{"path":[4,15,2,1,1],"span":[235,9,13]},{"path":[4,15,2,1,3],"span":[235,16,17]},{"path":[4,15,2,2],"span":[236,2,29]},{"path":[4,15,2,2,4],"span":[236,2,10]},{"path":[4,15,2,2,5],"span":[236,11,17]},{"path":[4,15,2,2,1],"span":[236,18,24]},{"path":[4,15,2,2,3],"span":[236,27,28]},{"path":[4,15,2,3],"span":[237,2,33]},{"path":[4,15,2,3,4],"span":[237,2,10]},{"path":[4,15,2,3,5],"span":[237,11,17]},{"path":[4,15,2,3,1],"span":[237,18,28]},{"path":[4,15,2,3,3],"span":[237,31,32]},{"path":[4,15,2,4],"span":[238,2,29]},{"path":[4,15,2,4,4],"span":[238,2,10]},{"path":[4,15,2,4,5],"span":[238,11,17]},{"path":[4,15,2,4,1],"span":[238,18,24]},{"path":[4,15,2,4,3],"span":[238,27,28]},{"path":[4,15,2,5],"span":[239,2,26]},{"path":[4,15,2,5,4],"span":[239,2,10]},{"path":[4,15,2,5,5],"span":[239,11,17]},{"path":[4,15,2,5,1],"span":[239,18,21]},{"path":[4,15,2,5,3],"span":[239,24,25]},{"path":[4,15,2,6],"span":[240,2,33]},{"path":[4,15,2,6,4],"span":[240,2,10]},{"path":[4,15,2,6,5],"span":[240,11,17]},{"path":[4,15,2,6,1],"span":[240,18,28]},{"path":[4,15,2,6,3],"span":[240,31,32]},{"path":[4,15,2,7],"span":[241,2,32]},{"path":[4,15,2,7,4],"span":[241,2,10]},{"path":[4,15,2,7,5],"span":[241,11,17]},{"path":[4,15,2,7,1],"span":[241,18,27]},{"path":[4,15,2,7,3],"span":[241,30,31]},{"path":[4,16],"span":[244,0,274,1]},{"path":[4,16,1],"span":[244,8,20]},{"path":[4,16,2,0],"span":[245,2,29]},{"path":[4,16,2,0,4],"span":[245,2,10]},{"path":[4,16,2,0,5],"span":[245,11,16]},{"path":[4,16,2,0,1],"span":[245,17,24]},{"path":[4,16,2,0,3],"span":[245,27,28]},{"path":[4,16,2,1],"span":[248,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,16,2,1,4],"span":[248,2,10]},{"path":[4,16,2,1,5],"span":[248,11,16]},{"path":[4,16,2,1,1],"span":[248,17,24]},{"path":[4,16,2,1,3],"span":[248,27,28]},{"path":[4,16,2,2],"span":[251,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,16,2,2,4],"span":[251,2,10]},{"path":[4,16,2,2,5],"span":[251,11,16]},{"path":[4,16,2,2,1],"span":[251,17,25]},{"path":[4,16,2,2,3],"span":[251,28,29]},{"path":[4,16,2,3],"span":[254,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,16,2,3,4],"span":[254,2,10]},{"path":[4,16,2,3,5],"span":[254,11,16]},{"path":[4,16,2,3,1],"span":[254,17,26]},{"path":[4,16,2,3,3],"span":[254,29,30]},{"path":[4,16,2,4],"span":[256,2,30]},{"path":[4,16,2,4,4],"span":[256,2,10]},{"path":[4,16,2,4,5],"span":[256,11,15]},{"path":[4,16,2,4,1],"span":[256,16,25]},{"path":[4,16,2,4,3],"span":[256,28,29]},{"path":[4,16,2,5],"span":[257,2,29]},{"path":[4,16,2,5,4],"span":[257,2,10]},{"path":[4,16,2,5,5],"span":[257,11,17]},{"path":[4,16,2,5,1],"span":[257,18,24]},{"path":[4,16,2,5,3],"span":[257,27,28]},{"path":[4,16,2,6],"span":[258,2,33]},{"path":[4,16,2,6,4],"span":[258,2,10]},{"path":[4,16,2,6,5],"span":[258,11,17]},{"path":[4,16,2,6,1],"span":[258,18,27]},{"path":[4,16,2,6,3],"span":[258,30,32]},{"path":[4,16,2,7],"span":[259,2,33]},{"path":[4,16,2,7,4],"span":[259,2,10]},{"path":[4,16,2,7,5],"span":[259,11,17]},{"path":[4,16,2,7,1],"span":[259,18,27]},{"path":[4,16,2,7,3],"span":[259,30,32]},{"path":[4,16,2,8],"span":[260,2,34]},{"path":[4,16,2,8,4],"span":[260,2,10]},{"path":[4,16,2,8,5],"span":[260,11,17]},{"path":[4,16,2,8,1],"span":[260,18,28]},{"path":[4,16,2,8,3],"span":[260,31,33]},{"path":[4,16,2,9],"span":[261,2,35]},{"path":[4,16,2,9,4],"span":[261,2,10]},{"path":[4,16,2,9,5],"span":[261,11,17]},{"path":[4,16,2,9,1],"span":[261,18,29]},{"path":[4,16,2,9,3],"span":[261,32,34]},{"path":[4,16,2,10],"span":[263,2,27]},{"path":[4,16,2,10,4],"span":[263,2,10]},{"path":[4,16,2,10,5],"span":[263,11,17]},{"path":[4,16,2,10,1],"span":[263,18,21]},{"path":[4,16,2,10,3],"span":[263,24,26]},{"path":[4,16,2,11],"span":[264,2,27]},{"path":[4,16,2,11,4],"span":[264,2,10]},{"path":[4,16,2,11,5],"span":[264,11,16]},{"path":[4,16,2,11,1],"span":[264,17,21]},{"path":[4,16,2,11,3],"span":[264,24,26]},{"path":[4,16,2,12],"span":[266,2,38]},{"path":[4,16,2,12,4],"span":[266,2,10]},{"path":[4,16,2,12,6],"span":[266,11,27]},{"path":[4,16,2,12,1],"span":[266,28,32]},{"path":[4,16,2,12,3],"span":[266,35,37]},{"path":[4,16,2,13],"span":[269,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,13,4],"span":[269,2,10]},{"path":[4,16,2,13,6],"span":[269,11,23]},{"path":[4,16,2,13,1],"span":[269,24,37]},{"path":[4,16,2,13,3],"span":[269,40,42]},{"path":[4,16,2,14],"span":[271,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,14,4],"span":[271,2,10]},{"path":[4,16,2,14,6],"span":[271,11,23]},{"path":[4,16,2,14,1],"span":[271,24,37]},{"path":[4,16,2,14,3],"span":[271,40,42]},{"path":[4,16,2,15],"span":[273,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,15,4],"span":[273,2,10]},{"path":[4,16,2,15,6],"span":[273,11,23]},{"path":[4,16,2,15,1],"span":[273,24,38]},{"path":[4,16,2,15,3],"span":[273,41,43]},{"path":[4,17],"span":[276,0,281,1]},{"path":[4,17,1],"span":[276,8,24]},{"path":[4,17,2,0],"span":[277,2,35]},{"path":[4,17,2,0,4],"span":[277,2,10]},{"path":[4,17,2,0,5],"span":[277,11,17]},{"path":[4,17,2,0,1],"span":[277,18,30]},{"path":[4,17,2,0,3],"span":[277,33,34]},{"path":[4,17,2,1],"span":[278,2,28]},{"path":[4,17,2,1,4],"span":[278,2,10]},{"path":[4,17,2,1,5],"span":[278,11,17]},{"path":[4,17,2,1,1],"span":[278,18,23]},{"path":[4,17,2,1,3],"span":[278,26,27]},{"path":[4,17,2,2],"span":[279,2,35]},{"path":[4,17,2,2,4],"span":[279,2,10]},{"path":[4,17,2,2,5],"span":[279,11,17]},{"path":[4,17,2,2,1],"span":[279,18,30]},{"path":[4,17,2,2,3],"span":[279,33,34]},{"path":[4,17,2,3],"span":[280,2,36]},{"path":[4,17,2,3,4],"span":[280,2,10]},{"path":[4,17,2,3,5],"span":[280,11,17]},{"path":[4,17,2,3,1],"span":[280,18,31]},{"path":[4,17,2,3,3],"span":[280,34,35]},{"path":[4,18],"span":[283,0,310,1]},{"path":[4,18,1],"span":[283,8,33]},{"path":[4,18,2,0],"span":[285,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,18,2,0,4],"span":[285,2,10]},{"path":[4,18,2,0,5],"span":[285,11,16]},{"path":[4,18,2,0,1],"span":[285,17,19]},{"path":[4,18,2,0,3],"span":[285,22,23]},{"path":[4,18,2,1],"span":[287,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,18,2,1,4],"span":[287,2,10]},{"path":[4,18,2,1,5],"span":[287,11,16]},{"path":[4,18,2,1,1],"span":[287,17,24]},{"path":[4,18,2,1,3],"span":[287,27,28]},{"path":[4,18,2,2],"span":[289,2,27],"leadingComments":" normalized name\n"},{"path":[4,18,2,2,4],"span":[289,2,10]},{"path":[4,18,2,2,5],"span":[289,11,17]},{"path":[4,18,2,2,1],"span":[289,18,22]},{"path":[4,18,2,2,3],"span":[289,25,26]},{"path":[4,18,2,3],"span":[291,2,30],"leadingComments":" normalized version\n"},{"path":[4,18,2,3,4],"span":[291,2,10]},{"path":[4,18,2,3,5],"span":[291,11,17]},{"path":[4,18,2,3,1],"span":[291,18,25]},{"path":[4,18,2,3,3],"span":[291,28,29]},{"path":[4,18,2,4],"span":[293,2,28],"leadingComments":" normalized build\n"},{"path":[4,18,2,4,4],"span":[293,2,10]},{"path":[4,18,2,4,5],"span":[293,11,17]},{"path":[4,18,2,4,1],"span":[293,18,23]},{"path":[4,18,2,4,3],"span":[293,26,27]},{"path":[4,18,2,5],"span":[295,2,33],"leadingComments":" normalized firmware version\n"},{"path":[4,18,2,5,4],"span":[295,2,10]},{"path":[4,18,2,5,5],"span":[295,11,17]},{"path":[4,18,2,5,1],"span":[295,18,28]},{"path":[4,18,2,5,3],"span":[295,31,32]},{"path":[4,18,2,6],"span":[297,2,26],"leadingComments":" normalized cpe\n"},{"path":[4,18,2,6,4],"span":[297,2,10]},{"path":[4,18,2,6,5],"span":[297,11,17]},{"path":[4,18,2,6,1],"span":[297,18,21]},{"path":[4,18,2,6,3],"span":[297,24,25]},{"path":[4,18,2,7],"span":[300,2,29],"leadingComments":" normalized firmware cpe\n"},{"path":[4,18,2,7,4],"span":[300,2,10]},{"path":[4,18,2,7,5],"span":[300,11,17]},{"path":[4,18,2,7,1],"span":[300,18,24]},{"path":[4,18,2,7,3],"span":[300,27,28]},{"path":[4,18,2,8],"span":[303,2,26],"leadingComments":" normalized rank of data quality\n"},{"path":[4,18,2,8,4],"span":[303,2,10]},{"path":[4,18,2,8,5],"span":[303,11,16]},{"path":[4,18,2,8,1],"span":[303,17,21]},{"path":[4,18,2,8,3],"span":[303,24,25]},{"path":[4,18,2,9],"span":[306,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,18,2,9,4],"span":[306,2,10]},{"path":[4,18,2,9,6],"span":[306,11,23]},{"path":[4,18,2,9,1],"span":[306,24,37]},{"path":[4,18,2,9,3],"span":[306,40,42]},{"path":[4,18,2,10],"span":[309,2,37],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,18,2,10,4],"span":[309,2,10]},{"path":[4,18,2,10,6],"span":[309,11,20]},{"path":[4,18,2,10,1],"span":[309,21,31]},{"path":[4,18,2,10,3],"span":[309,34,36]},{"path":[4,19],"span":[312,0,351,1]},{"path":[4,19,1],"span":[312,8,23]},{"path":[4,19,2,0],"span":[313,2,52]},{"path":[4,19,2,0,4],"span":[313,2,10]},{"path":[4,19,2,0,6],"span":[313,11,36]},{"path":[4,19,2,0,1],"span":[313,37,47]},{"path":[4,19,2,0,3],"span":[313,50,51]},{"path":[4,19,2,1],"span":[315,2,41],"trailingComments":" \tx64-based PC,x86_64\tWindows, Linux, Mac\n"},{"path":[4,19,2,1,4],"span":[315,2,10]},{"path":[4,19,2,1,5],"span":[315,11,17]},{"path":[4,19,2,1,1],"span":[315,24,36]},{"path":[4,19,2,1,3],"span":[315,39,40]},{"path":[4,19,2,2],"span":[316,2,52],"trailingComments":"\tMultiprocessor Free\tWindows\n"},{"path":[4,19,2,2,4],"span":[316,2,10]},{"path":[4,19,2,2,5],"span":[316,11,17]},{"path":[4,19,2,2,1],"span":[316,24,46]},{"path":[4,19,2,2,3],"span":[316,49,51]},{"path":[4,19,2,3],"span":[317,2,58],"trailingComments":"\t2022-06-20 18:22:59.000\tWindows\n"},{"path":[4,19,2,3,4],"span":[317,2,10]},{"path":[4,19,2,3,6],"span":[317,11,36]},{"path":[4,19,2,3,1],"span":[317,40,52]},{"path":[4,19,2,3,3],"span":[317,55,57]},{"path":[4,19,2,4],"span":[318,2,36],"trailingComments":"\t0\tWindows\n"},{"path":[4,19,2,4,4],"span":[318,2,10]},{"path":[4,19,2,4,5],"span":[318,11,15]},{"path":[4,19,2,4,1],"span":[318,16,30]},{"path":[4,19,2,4,3],"span":[318,33,35]},{"path":[4,19,2,5],"span":[319,2,44],"trailingComments":"\tDarwin 21.4.0,#41-Ubuntu SMP Tue Dec 3 00:27:35 UTC 2019,11.4.0.15.0\tLinux, Mac\n"},{"path":[4,19,2,5,4],"span":[319,2,10]},{"path":[4,19,2,5,5],"span":[319,11,17]},{"path":[4,19,2,5,1],"span":[319,24,38]},{"path":[4,19,2,5,3],"span":[319,41,43]},{"path":[4,19,2,6],"span":[320,2,46],"trailingComments":"Linux,SunOS\tLinux\n"},{"path":[4,19,2,6,4],"span":[320,2,10]},{"path":[4,19,2,6,5],"span":[320,11,17]},{"path":[4,19,2,6,1],"span":[320,24,35]},{"path":[4,19,2,6,3],"span":[320,43,45]},{"path":[4,19,2,7],"span":[321,2,44],"trailingComments":"\t5.0.0-38-generic,5.11\tLinux\n"},{"path":[4,19,2,7,4],"span":[321,2,10]},{"path":[4,19,2,7,5],"span":[321,11,17]},{"path":[4,19,2,7,1],"span":[321,24,38]},{"path":[4,19,2,7,3],"span":[321,41,43]},{"path":[4,19,2,8],"span":[322,2,54],"trailingComments":"0\tWindows\n"},{"path":[4,19,2,8,4],"span":[322,2,10]},{"path":[4,19,2,8,5],"span":[322,11,16]},{"path":[4,19,2,8,1],"span":[322,24,42]},{"path":[4,19,2,8,3],"span":[322,51,53]},{"path":[4,19,2,9],"span":[323,2,54],"trailingComments":"2097024,137438950000,8589934464\tWindows\n"},{"path":[4,19,2,9,4],"span":[323,2,10]},{"path":[4,19,2,9,5],"span":[323,11,16]},{"path":[4,19,2,9,1],"span":[323,24,47]},{"path":[4,19,2,9,3],"span":[323,51,53]},{"path":[4,19,2,10],"span":[324,2,46],"trailingComments":"Lansweeper\tWindows\n"},{"path":[4,19,2,10,4],"span":[324,2,10]},{"path":[4,19,2,10,5],"span":[324,11,17]},{"path":[4,19,2,10,1],"span":[324,24,36]},{"path":[4,19,2,10,3],"span":[324,43,45]},{"path":[4,19,2,11],"span":[325,2,46],"trailingComments":"Windows 10 Enterprise,macOS 12.3.1 (21E258),Ubuntu 20.04.4 LTS\tWindows, Linux, Mac\n"},{"path":[4,19,2,11,4],"span":[325,2,10]},{"path":[4,19,2,11,5],"span":[325,16,22]},{"path":[4,19,2,11,1],"span":[325,24,34]},{"path":[4,19,2,11,3],"span":[325,43,45]},{"path":[4,19,2,12],"span":[326,2,46],"trailingComments":"C:\\Windows\tWindows\n"},{"path":[4,19,2,12,4],"span":[326,2,10]},{"path":[4,19,2,12,5],"span":[326,11,17]},{"path":[4,19,2,12,1],"span":[326,24,36]},{"path":[4,19,2,12,3],"span":[326,43,45]},{"path":[4,19,2,13],"span":[327,2,46],"trailingComments":"C:\tWindows\n"},{"path":[4,19,2,13,4],"span":[327,2,10]},{"path":[4,19,2,13,5],"span":[327,11,17]},{"path":[4,19,2,13,1],"span":[327,24,39]},{"path":[4,19,2,13,3],"span":[327,43,45]},{"path":[4,19,2,14],"span":[328,2,46],"trailingComments":"Pro, Enterprise, Datacenter\tWindows\n"},{"path":[4,19,2,14,4],"span":[328,2,10]},{"path":[4,19,2,14,5],"span":[328,11,17]},{"path":[4,19,2,14,1],"span":[328,24,34]},{"path":[4,19,2,14,3],"span":[328,43,45]},{"path":[4,19,2,15],"span":[329,2,38],"trailingComments":"Windows 7, Windows 10, Windows Server 2019, Windows Server 2022, Ubuntu, Fedora, macOS Catalina, macOS Monterey\tWindows, Linux, Mac\n"},{"path":[4,19,2,15,4],"span":[329,2,10]},{"path":[4,19,2,15,5],"span":[329,11,17]},{"path":[4,19,2,15,1],"span":[329,24,31]},{"path":[4,19,2,15,3],"span":[329,35,37]},{"path":[4,19,2,16],"span":[330,2,54],"trailingComments":"\\Device\\HarddiskVolume3\tWindows\n"},{"path":[4,19,2,16,4],"span":[330,2,10]},{"path":[4,19,2,16,5],"span":[330,11,17]},{"path":[4,19,2,16,1],"span":[330,24,45]},{"path":[4,19,2,16,3],"span":[330,51,53]},{"path":[4,19,2,17],"span":[331,2,38],"trailingComments":"Windows, MacOS, Linux, Unix\tWindows, Linux, Mac\n"},{"path":[4,19,2,17,4],"span":[331,2,10]},{"path":[4,19,2,17,5],"span":[331,11,17]},{"path":[4,19,2,17,1],"span":[331,24,31]},{"path":[4,19,2,17,3],"span":[331,35,37]},{"path":[4,19,2,18],"span":[332,2,46],"trailingComments":"\t00355-62792-31115-AAOEM\tWindows\n"},{"path":[4,19,2,18,4],"span":[332,2,10]},{"path":[4,19,2,18,5],"span":[332,11,17]},{"path":[4,19,2,18,1],"span":[332,24,40]},{"path":[4,19,2,18,3],"span":[332,43,45]},{"path":[4,19,2,19],"span":[333,2,49],"trailingComments":"\tC:\\Windows\\System32\tWindows\n"},{"path":[4,19,2,19,4],"span":[333,2,10]},{"path":[4,19,2,19,5],"span":[333,11,17]},{"path":[4,19,2,19,1],"span":[333,24,43]},{"path":[4,19,2,19,3],"span":[333,46,48]},{"path":[4,19,2,20],"span":[334,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,19,2,20,4],"span":[334,2,10]},{"path":[4,19,2,20,5],"span":[334,11,17]},{"path":[4,19,2,20,1],"span":[334,24,46]},{"path":[4,19,2,20,3],"span":[334,50,52]},{"path":[4,19,2,21],"span":[335,2,46],"trailingComments":"SmallBusinessServer,TerminalServices\tWindows\n"},{"path":[4,19,2,21,4],"span":[335,2,10]},{"path":[4,19,2,21,5],"span":[335,11,17]},{"path":[4,19,2,21,1],"span":[335,24,37]},{"path":[4,19,2,21,3],"span":[335,43,45]},{"path":[4,19,2,22],"span":[336,2,46],"trailingComments":"Andy\tWindows\n"},{"path":[4,19,2,22,4],"span":[336,2,10]},{"path":[4,19,2,22,5],"span":[336,11,17]},{"path":[4,19,2,22,1],"span":[336,24,39]},{"path":[4,19,2,22,3],"span":[336,43,45]},{"path":[4,19,2,23],"span":[337,2,54],"trailingComments":"Service Pack 3\tWindows\n"},{"path":[4,19,2,23,4],"span":[337,2,10]},{"path":[4,19,2,23,5],"span":[337,11,17]},{"path":[4,19,2,23,1],"span":[337,24,41]},{"path":[4,19,2,23,3],"span":[337,51,53]},{"path":[4,19,2,24],"span":[338,2,54],"trailingComments":"3\tWindows\n"},{"path":[4,19,2,24,4],"span":[338,2,10]},{"path":[4,19,2,24,5],"span":[338,11,16]},{"path":[4,19,2,24,1],"span":[338,24,40]},{"path":[4,19,2,24,3],"span":[338,51,53]},{"path":[4,19,2,25],"span":[339,2,46],"trailingComments":"\t0\tWindows\n"},{"path":[4,19,2,25,4],"span":[339,2,10]},{"path":[4,19,2,25,5],"span":[339,11,16]},{"path":[4,19,2,25,1],"span":[339,24,40]},{"path":[4,19,2,25,3],"span":[339,43,45]},{"path":[4,19,2,26],"span":[340,2,46],"trailingComments":"Communications,Datacenter Edition\tWindows\n"},{"path":[4,19,2,26,4],"span":[340,2,10]},{"path":[4,19,2,26,5],"span":[340,11,17]},{"path":[4,19,2,26,1],"span":[340,24,34]},{"path":[4,19,2,26,3],"span":[340,43,45]},{"path":[4,19,2,27],"span":[341,2,41],"trailingComments":"\tworkstation (1), domain controller (2) or server (3)\tWindows\n"},{"path":[4,19,2,27,4],"span":[341,2,10]},{"path":[4,19,2,27,5],"span":[341,11,17]},{"path":[4,19,2,27,1],"span":[341,24,35]},{"path":[4,19,2,27,3],"span":[341,38,40]},{"path":[4,19,2,28],"span":[342,2,34],"trailingComments":"\t241F0742-E4BD-42F9-5B77-D243F25C3188\tWindows, Linux, Mac\n"},{"path":[4,19,2,28,4],"span":[342,2,10]},{"path":[4,19,2,28,5],"span":[342,11,17]},{"path":[4,19,2,28,1],"span":[342,24,28]},{"path":[4,19,2,28,3],"span":[342,31,33]},{"path":[4,19,2,29],"span":[343,2,37],"trailingComments":"\t22H2\tWindows\n"},{"path":[4,19,2,29,4],"span":[343,2,10]},{"path":[4,19,2,29,5],"span":[343,11,17]},{"path":[4,19,2,29,1],"span":[343,24,31]},{"path":[4,19,2,29,3],"span":[343,34,36]},{"path":[4,19,2,30],"span":[344,2,42],"trailingComments":"\tWindows, Mac, Linux examples: 10.0.19045.2965, 12.3.1 (21E258),20.04.4\tWindows\n"},{"path":[4,19,2,30,4],"span":[344,2,10]},{"path":[4,19,2,30,5],"span":[344,11,17]},{"path":[4,19,2,30,1],"span":[344,24,36]},{"path":[4,19,2,30,3],"span":[344,39,41]},{"path":[4,19,2,31],"span":[345,2,43],"trailingComments":"\tWindows, Mac, Linux examples: 10,12,22\tWindows, Linux, Mac\n"},{"path":[4,19,2,31,4],"span":[345,2,10]},{"path":[4,19,2,31,5],"span":[345,11,17]},{"path":[4,19,2,31,1],"span":[345,24,37]},{"path":[4,19,2,31,3],"span":[345,40,42]},{"path":[4,19,2,32],"span":[346,2,43],"trailingComments":"\tWindows, Mac, Linux examples: 0,3,04\tWindows, Linux, Mac\n"},{"path":[4,19,2,32,4],"span":[346,2,10]},{"path":[4,19,2,32,5],"span":[346,11,17]},{"path":[4,19,2,32,1],"span":[346,24,37]},{"path":[4,19,2,32,3],"span":[346,40,42]},{"path":[4,19,2,33],"span":[347,2,52],"trailingComments":"\tWindows, Mac, Linux examples: 19045,1,4\tWindows, Linux, Mac\n"},{"path":[4,19,2,33,4],"span":[347,2,10]},{"path":[4,19,2,33,5],"span":[347,11,17]},{"path":[4,19,2,33,1],"span":[347,24,46]},{"path":[4,19,2,33,3],"span":[347,49,51]},{"path":[4,19,2,34],"span":[348,2,52],"trailingComments":"\tWindows, Mac examples: 2965,21E258\tWindows, Linux, Mac\n"},{"path":[4,19,2,34,4],"span":[348,2,10]},{"path":[4,19,2,34,5],"span":[348,11,17]},{"path":[4,19,2,34,1],"span":[348,24,46]},{"path":[4,19,2,34,3],"span":[348,49,51]},{"path":[4,19,2,35],"span":[349,2,44],"trailingComments":"\t16729456\tWindows\n"},{"path":[4,19,2,35,4],"span":[349,2,10]},{"path":[4,19,2,35,5],"span":[349,11,16]},{"path":[4,19,2,35,1],"span":[349,24,38]},{"path":[4,19,2,35,3],"span":[349,41,43]},{"path":[4,20],"span":[354,0,370,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,20,1],"span":[354,8,28]},{"path":[4,20,2,0],"span":[356,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,20,2,0,5],"span":[356,2,8]},{"path":[4,20,2,0,1],"span":[356,9,11]},{"path":[4,20,2,0,3],"span":[356,14,15]},{"path":[4,20,2,1],"span":[359,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,20,2,1,4],"span":[359,2,10]},{"path":[4,20,2,1,5],"span":[359,11,17]},{"path":[4,20,2,1,1],"span":[359,18,22]},{"path":[4,20,2,1,3],"span":[359,25,26]},{"path":[4,20,2,2],"span":[361,2,54]},{"path":[4,20,2,2,4],"span":[361,2,10]},{"path":[4,20,2,2,6],"span":[361,11,36]},{"path":[4,20,2,2,1],"span":[361,37,49]},{"path":[4,20,2,2,3],"span":[361,52,53]},{"path":[4,20,2,3],"span":[364,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,20,2,3,4],"span":[364,2,10]},{"path":[4,20,2,3,5],"span":[364,11,17]},{"path":[4,20,2,3,1],"span":[364,18,28]},{"path":[4,20,2,3,3],"span":[364,31,32]},{"path":[4,20,2,4],"span":[366,2,31]},{"path":[4,20,2,4,4],"span":[366,2,10]},{"path":[4,20,2,4,5],"span":[366,11,17]},{"path":[4,20,2,4,1],"span":[366,18,26]},{"path":[4,20,2,4,3],"span":[366,29,30]},{"path":[4,20,2,5],"span":[368,2,43]},{"path":[4,20,2,5,4],"span":[368,2,10]},{"path":[4,20,2,5,5],"span":[368,11,17]},{"path":[4,20,2,5,1],"span":[368,18,38]},{"path":[4,20,2,5,3],"span":[368,41,42]},{"path":[4,21],"span":[373,0,426,1]},{"path":[4,21,1],"span":[373,8,34]},{"path":[4,21,2,0],"span":[374,2,30]},{"path":[4,21,2,0,4],"span":[374,2,10]},{"path":[4,21,2,0,5],"span":[374,11,17]},{"path":[4,21,2,0,1],"span":[374,18,25]},{"path":[4,21,2,0,3],"span":[374,28,29]},{"path":[4,21,2,1],"span":[375,2,34]},{"path":[4,21,2,1,4],"span":[375,2,10]},{"path":[4,21,2,1,5],"span":[375,11,16]},{"path":[4,21,2,1,1],"span":[375,17,29]},{"path":[4,21,2,1,3],"span":[375,32,33]},{"path":[4,21,2,2],"span":[376,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,21,2,2,4],"span":[376,2,10]},{"path":[4,21,2,2,5],"span":[376,11,17]},{"path":[4,21,2,2,1],"span":[376,18,23]},{"path":[4,21,2,2,3],"span":[376,26,27]},{"path":[4,21,2,3],"span":[377,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,21,2,3,4],"span":[377,2,10]},{"path":[4,21,2,3,5],"span":[377,11,17]},{"path":[4,21,2,3,1],"span":[377,18,30]},{"path":[4,21,2,3,3],"span":[377,33,34]},{"path":[4,21,2,4],"span":[378,2,41]},{"path":[4,21,2,4,4],"span":[378,2,10]},{"path":[4,21,2,4,5],"span":[378,11,15]},{"path":[4,21,2,4,1],"span":[378,16,36]},{"path":[4,21,2,4,3],"span":[378,39,40]},{"path":[4,21,2,5],"span":[379,2,35]},{"path":[4,21,2,5,4],"span":[379,2,10]},{"path":[4,21,2,5,5],"span":[379,11,15]},{"path":[4,21,2,5,1],"span":[379,16,30]},{"path":[4,21,2,5,3],"span":[379,33,34]},{"path":[4,21,2,6],"span":[380,2,39]},{"path":[4,21,2,6,4],"span":[380,2,10]},{"path":[4,21,2,6,5],"span":[380,11,15]},{"path":[4,21,2,6,1],"span":[380,16,34]},{"path":[4,21,2,6,3],"span":[380,37,38]},{"path":[4,21,2,7],"span":[382,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,21,2,7,4],"span":[382,2,10]},{"path":[4,21,2,7,5],"span":[382,11,17]},{"path":[4,21,2,7,1],"span":[382,18,25]},{"path":[4,21,2,7,3],"span":[382,28,30]},{"path":[4,21,2,8],"span":[384,2,35]},{"path":[4,21,2,8,4],"span":[384,2,10]},{"path":[4,21,2,8,5],"span":[384,11,17]},{"path":[4,21,2,8,1],"span":[384,18,29]},{"path":[4,21,2,8,3],"span":[384,32,34]},{"path":[4,21,2,9],"span":[385,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,21,2,9,4],"span":[385,2,10]},{"path":[4,21,2,9,5],"span":[385,11,17]},{"path":[4,21,2,9,1],"span":[385,18,30]},{"path":[4,21,2,9,3],"span":[385,33,35]},{"path":[4,21,2,10],"span":[386,2,34]},{"path":[4,21,2,10,4],"span":[386,2,10]},{"path":[4,21,2,10,5],"span":[386,11,17]},{"path":[4,21,2,10,1],"span":[386,18,28]},{"path":[4,21,2,10,3],"span":[386,31,33]},{"path":[4,21,2,11],"span":[387,2,31]},{"path":[4,21,2,11,4],"span":[387,2,10]},{"path":[4,21,2,11,5],"span":[387,11,17]},{"path":[4,21,2,11,1],"span":[387,18,25]},{"path":[4,21,2,11,3],"span":[387,28,30]},{"path":[4,21,2,12],"span":[388,2,32]},{"path":[4,21,2,12,4],"span":[388,2,10]},{"path":[4,21,2,12,5],"span":[388,11,17]},{"path":[4,21,2,12,1],"span":[388,18,26]},{"path":[4,21,2,12,3],"span":[388,29,31]},{"path":[4,21,2,13],"span":[389,2,36]},{"path":[4,21,2,13,4],"span":[389,2,10]},{"path":[4,21,2,13,5],"span":[389,11,17]},{"path":[4,21,2,13,1],"span":[389,18,30]},{"path":[4,21,2,13,3],"span":[389,33,35]},{"path":[4,21,2,14],"span":[390,2,35]},{"path":[4,21,2,14,4],"span":[390,2,10]},{"path":[4,21,2,14,5],"span":[390,11,17]},{"path":[4,21,2,14,1],"span":[390,18,29]},{"path":[4,21,2,14,3],"span":[390,32,34]},{"path":[4,21,2,15],"span":[391,2,39]},{"path":[4,21,2,15,4],"span":[391,2,10]},{"path":[4,21,2,15,5],"span":[391,11,16]},{"path":[4,21,2,15,1],"span":[391,17,33]},{"path":[4,21,2,15,3],"span":[391,36,38]},{"path":[4,21,2,16],"span":[392,2,27]},{"path":[4,21,2,16,4],"span":[392,2,10]},{"path":[4,21,2,16,5],"span":[392,11,15]},{"path":[4,21,2,16,1],"span":[392,16,21]},{"path":[4,21,2,16,3],"span":[392,24,26]},{"path":[4,21,2,17],"span":[393,2,35]},{"path":[4,21,2,17,4],"span":[393,2,10]},{"path":[4,21,2,17,5],"span":[393,11,17]},{"path":[4,21,2,17,1],"span":[393,18,29]},{"path":[4,21,2,17,3],"span":[393,32,34]},{"path":[4,21,2,18],"span":[394,2,52]},{"path":[4,21,2,18,4],"span":[394,2,10]},{"path":[4,21,2,18,5],"span":[394,11,17]},{"path":[4,21,2,18,1],"span":[394,18,46]},{"path":[4,21,2,18,3],"span":[394,49,51]},{"path":[4,21,2,19],"span":[395,2,55]},{"path":[4,21,2,19,4],"span":[395,2,10]},{"path":[4,21,2,19,6],"span":[395,11,36]},{"path":[4,21,2,19,1],"span":[395,37,49]},{"path":[4,21,2,19,3],"span":[395,52,54]},{"path":[4,21,2,20],"span":[396,2,47]},{"path":[4,21,2,20,4],"span":[396,2,10]},{"path":[4,21,2,20,5],"span":[396,11,17]},{"path":[4,21,2,20,1],"span":[396,18,41]},{"path":[4,21,2,20,3],"span":[396,44,46]},{"path":[4,21,2,21],"span":[397,2,48]},{"path":[4,21,2,21,4],"span":[397,2,10]},{"path":[4,21,2,21,5],"span":[397,11,17]},{"path":[4,21,2,21,1],"span":[397,18,42]},{"path":[4,21,2,21,3],"span":[397,45,47]},{"path":[4,21,2,22],"span":[398,2,36]},{"path":[4,21,2,22,4],"span":[398,2,10]},{"path":[4,21,2,22,5],"span":[398,11,17]},{"path":[4,21,2,22,1],"span":[398,18,30]},{"path":[4,21,2,22,3],"span":[398,33,35]},{"path":[4,21,2,23],"span":[399,2,40]},{"path":[4,21,2,23,4],"span":[399,2,10]},{"path":[4,21,2,23,6],"span":[399,11,22]},{"path":[4,21,2,23,1],"span":[399,23,34]},{"path":[4,21,2,23,3],"span":[399,37,39]},{"path":[4,21,2,24],"span":[400,2,45]},{"path":[4,21,2,24,4],"span":[400,2,10]},{"path":[4,21,2,24,6],"span":[400,11,22]},{"path":[4,21,2,24,1],"span":[400,23,39]},{"path":[4,21,2,24,3],"span":[400,42,44]},{"path":[4,21,2,25],"span":[401,2,36]},{"path":[4,21,2,25,4],"span":[401,2,10]},{"path":[4,21,2,25,6],"span":[401,11,22]},{"path":[4,21,2,25,1],"span":[401,23,30]},{"path":[4,21,2,25,3],"span":[401,33,35]},{"path":[4,21,2,26],"span":[402,2,39]},{"path":[4,21,2,26,4],"span":[402,2,10]},{"path":[4,21,2,26,5],"span":[402,11,17]},{"path":[4,21,2,26,1],"span":[402,18,33]},{"path":[4,21,2,26,3],"span":[402,36,38]},{"path":[4,21,2,27],"span":[403,2,43]},{"path":[4,21,2,27,4],"span":[403,2,10]},{"path":[4,21,2,27,5],"span":[403,11,17]},{"path":[4,21,2,27,1],"span":[403,18,37]},{"path":[4,21,2,27,3],"span":[403,40,42]},{"path":[4,21,2,28],"span":[404,2,39]},{"path":[4,21,2,28,4],"span":[404,2,10]},{"path":[4,21,2,28,5],"span":[404,11,17]},{"path":[4,21,2,28,1],"span":[404,18,33]},{"path":[4,21,2,28,3],"span":[404,36,38]},{"path":[4,21,2,29],"span":[405,2,37]},{"path":[4,21,2,29,4],"span":[405,2,10]},{"path":[4,21,2,29,5],"span":[405,11,17]},{"path":[4,21,2,29,1],"span":[405,18,31]},{"path":[4,21,2,29,3],"span":[405,34,36]},{"path":[4,21,2,30],"span":[406,2,50]},{"path":[4,21,2,30,4],"span":[406,2,10]},{"path":[4,21,2,30,5],"span":[406,11,17]},{"path":[4,21,2,30,1],"span":[406,18,44]},{"path":[4,21,2,30,3],"span":[406,47,49]},{"path":[4,21,2,31],"span":[407,2,50]},{"path":[4,21,2,31,4],"span":[407,2,10]},{"path":[4,21,2,31,5],"span":[407,11,17]},{"path":[4,21,2,31,1],"span":[407,18,44]},{"path":[4,21,2,31,3],"span":[407,47,49]},{"path":[4,21,2,32],"span":[408,2,51]},{"path":[4,21,2,32,4],"span":[408,2,10]},{"path":[4,21,2,32,5],"span":[408,11,17]},{"path":[4,21,2,32,1],"span":[408,18,45]},{"path":[4,21,2,32,3],"span":[408,48,50]},{"path":[4,21,2,33],"span":[409,2,30]},{"path":[4,21,2,33,4],"span":[409,2,10]},{"path":[4,21,2,33,5],"span":[409,11,17]},{"path":[4,21,2,33,1],"span":[409,18,24]},{"path":[4,21,2,33,3],"span":[409,27,29]},{"path":[4,21,2,34],"span":[410,2,37]},{"path":[4,21,2,34,4],"span":[410,2,10]},{"path":[4,21,2,34,5],"span":[410,11,17]},{"path":[4,21,2,34,1],"span":[410,18,31]},{"path":[4,21,2,34,3],"span":[410,34,36]},{"path":[4,21,2,35],"span":[411,2,40]},{"path":[4,21,2,35,4],"span":[411,2,10]},{"path":[4,21,2,35,5],"span":[411,11,17]},{"path":[4,21,2,35,1],"span":[411,18,34]},{"path":[4,21,2,35,3],"span":[411,37,39]},{"path":[4,21,2,36],"span":[412,2,49]},{"path":[4,21,2,36,4],"span":[412,2,10]},{"path":[4,21,2,36,5],"span":[412,11,17]},{"path":[4,21,2,36,1],"span":[412,18,43]},{"path":[4,21,2,36,3],"span":[412,46,48]},{"path":[4,21,2,37],"span":[413,2,49]},{"path":[4,21,2,37,4],"span":[413,2,10]},{"path":[4,21,2,37,5],"span":[413,11,17]},{"path":[4,21,2,37,1],"span":[413,18,43]},{"path":[4,21,2,37,3],"span":[413,46,48]},{"path":[4,21,2,38],"span":[414,2,41]},{"path":[4,21,2,38,4],"span":[414,2,10]},{"path":[4,21,2,38,5],"span":[414,11,17]},{"path":[4,21,2,38,1],"span":[414,18,35]},{"path":[4,21,2,38,3],"span":[414,38,40]},{"path":[4,21,2,39],"span":[415,2,45]},{"path":[4,21,2,39,4],"span":[415,2,10]},{"path":[4,21,2,39,5],"span":[415,11,17]},{"path":[4,21,2,39,1],"span":[415,18,39]},{"path":[4,21,2,39,3],"span":[415,42,44]},{"path":[4,21,2,40],"span":[416,2,42]},{"path":[4,21,2,40,4],"span":[416,2,10]},{"path":[4,21,2,40,5],"span":[416,11,17]},{"path":[4,21,2,40,1],"span":[416,18,36]},{"path":[4,21,2,40,3],"span":[416,39,41]},{"path":[4,21,2,41],"span":[417,2,46]},{"path":[4,21,2,41,4],"span":[417,2,10]},{"path":[4,21,2,41,5],"span":[417,11,17]},{"path":[4,21,2,41,1],"span":[417,18,40]},{"path":[4,21,2,41,3],"span":[417,43,45]},{"path":[4,21,2,42],"span":[418,2,41]},{"path":[4,21,2,42,4],"span":[418,2,10]},{"path":[4,21,2,42,6],"span":[418,11,22]},{"path":[4,21,2,42,1],"span":[418,23,35]},{"path":[4,21,2,42,3],"span":[418,38,40]},{"path":[4,21,2,43],"span":[419,2,34]},{"path":[4,21,2,43,4],"span":[419,2,10]},{"path":[4,21,2,43,5],"span":[419,11,17]},{"path":[4,21,2,43,1],"span":[419,18,28]},{"path":[4,21,2,43,3],"span":[419,31,33]},{"path":[4,21,2,44],"span":[420,2,36]},{"path":[4,21,2,44,4],"span":[420,2,10]},{"path":[4,21,2,44,5],"span":[420,11,17]},{"path":[4,21,2,44,1],"span":[420,18,30]},{"path":[4,21,2,44,3],"span":[420,33,35]},{"path":[4,21,2,45],"span":[421,2,40]},{"path":[4,21,2,45,4],"span":[421,2,10]},{"path":[4,21,2,45,5],"span":[421,11,17]},{"path":[4,21,2,45,1],"span":[421,18,34]},{"path":[4,21,2,45,3],"span":[421,37,39]},{"path":[4,21,2,46],"span":[422,2,66]},{"path":[4,21,2,46,4],"span":[422,2,10]},{"path":[4,21,2,46,5],"span":[422,11,15]},{"path":[4,21,2,46,1],"span":[422,16,60]},{"path":[4,21,2,46,3],"span":[422,63,65]},{"path":[4,21,2,47],"span":[423,2,60]},{"path":[4,21,2,47,4],"span":[423,2,10]},{"path":[4,21,2,47,5],"span":[423,11,15]},{"path":[4,21,2,47,1],"span":[423,16,54]},{"path":[4,21,2,47,3],"span":[423,57,59]},{"path":[4,21,2,48],"span":[424,2,55]},{"path":[4,21,2,48,4],"span":[424,2,10]},{"path":[4,21,2,48,5],"span":[424,11,15]},{"path":[4,21,2,48,1],"span":[424,16,49]},{"path":[4,21,2,48,3],"span":[424,52,54]},{"path":[4,21,2,49],"span":[425,2,64]},{"path":[4,21,2,49,4],"span":[425,2,10]},{"path":[4,21,2,49,5],"span":[425,11,17]},{"path":[4,21,2,49,1],"span":[425,18,58]},{"path":[4,21,2,49,3],"span":[425,61,63]},{"path":[4,22],"span":[429,0,432,1],"leadingComments":" Network Interface cards "},{"path":[4,22,1],"span":[429,8,25]},{"path":[4,22,2,0],"span":[430,2,42]},{"path":[4,22,2,0,6],"span":[430,2,27]},{"path":[4,22,2,0,1],"span":[430,28,37]},{"path":[4,22,2,0,3],"span":[430,40,41]},{"path":[4,22,2,1],"span":[431,2,42]},{"path":[4,22,2,1,4],"span":[431,2,10]},{"path":[4,22,2,1,6],"span":[431,11,27]},{"path":[4,22,2,1,1],"span":[431,28,37]},{"path":[4,22,2,1,3],"span":[431,40,41]},{"path":[4,23],"span":[434,0,457,1]},{"path":[4,23,1],"span":[434,8,24]},{"path":[4,23,2,0],"span":[435,2,18]},{"path":[4,23,2,0,5],"span":[435,2,8]},{"path":[4,23,2,0,1],"span":[435,9,13]},{"path":[4,23,2,0,3],"span":[435,16,17]},{"path":[4,23,2,1],"span":[436,2,18]},{"path":[4,23,2,1,5],"span":[436,2,8]},{"path":[4,23,2,1,1],"span":[436,9,13]},{"path":[4,23,2,1,3],"span":[436,16,17]},{"path":[4,23,2,2],"span":[437,2,22]},{"path":[4,23,2,2,5],"span":[437,2,8]},{"path":[4,23,2,2,1],"span":[437,9,17]},{"path":[4,23,2,2,3],"span":[437,20,21]},{"path":[4,23,2,3],"span":[439,2,25]},{"path":[4,23,2,3,4],"span":[439,2,10]},{"path":[4,23,2,3,5],"span":[439,11,17]},{"path":[4,23,2,3,1],"span":[439,18,20]},{"path":[4,23,2,3,3],"span":[439,23,24]},{"path":[4,23,2,4],"span":[441,2,26]},{"path":[4,23,2,4,4],"span":[441,2,10]},{"path":[4,23,2,4,5],"span":[441,11,17]},{"path":[4,23,2,4,1],"span":[441,18,21]},{"path":[4,23,2,4,3],"span":[441,24,25]},{"path":[4,23,2,5],"span":[443,2,33]},{"path":[4,23,2,5,4],"span":[443,2,10]},{"path":[4,23,2,5,5],"span":[443,11,15]},{"path":[4,23,2,5,1],"span":[443,16,28]},{"path":[4,23,2,5,3],"span":[443,31,32]},{"path":[4,23,2,6],"span":[444,2,37]},{"path":[4,23,2,6,4],"span":[444,2,10]},{"path":[4,23,2,6,5],"span":[444,11,17]},{"path":[4,23,2,6,1],"span":[444,18,32]},{"path":[4,23,2,6,3],"span":[444,35,36]},{"path":[4,23,2,7],"span":[446,2,31]},{"path":[4,23,2,7,4],"span":[446,2,10]},{"path":[4,23,2,7,6],"span":[446,11,23]},{"path":[4,23,2,7,1],"span":[446,24,26]},{"path":[4,23,2,7,3],"span":[446,29,30]},{"path":[4,23,2,8],"span":[448,2,33]},{"path":[4,23,2,8,4],"span":[448,2,10]},{"path":[4,23,2,8,5],"span":[448,11,17]},{"path":[4,23,2,8,1],"span":[448,18,28]},{"path":[4,23,2,8,3],"span":[448,31,32]},{"path":[4,23,2,9],"span":[449,2,35]},{"path":[4,23,2,9,4],"span":[449,2,10]},{"path":[4,23,2,9,5],"span":[449,11,17]},{"path":[4,23,2,9,1],"span":[449,18,29]},{"path":[4,23,2,9,3],"span":[449,32,34]},{"path":[4,23,2,10],"span":[451,2,34]},{"path":[4,23,2,10,4],"span":[451,2,10]},{"path":[4,23,2,10,5],"span":[451,11,17]},{"path":[4,23,2,10,1],"span":[451,18,28]},{"path":[4,23,2,10,3],"span":[451,31,33]},{"path":[4,23,2,11],"span":[452,2,37]},{"path":[4,23,2,11,4],"span":[452,2,10]},{"path":[4,23,2,11,5],"span":[452,11,17]},{"path":[4,23,2,11,1],"span":[452,18,31]},{"path":[4,23,2,11,3],"span":[452,34,36]},{"path":[4,23,2,12],"span":[453,2,54]},{"path":[4,23,2,12,4],"span":[453,2,10]},{"path":[4,23,2,12,5],"span":[453,11,17]},{"path":[4,23,2,12,1],"span":[453,18,48]},{"path":[4,23,2,12,3],"span":[453,51,53]},{"path":[4,23,2,13],"span":[455,2,36]},{"path":[4,23,2,13,4],"span":[455,2,10]},{"path":[4,23,2,13,5],"span":[455,11,17]},{"path":[4,23,2,13,1],"span":[455,18,30]},{"path":[4,23,2,13,3],"span":[455,33,35]},{"path":[4,23,2,14],"span":[456,2,37]},{"path":[4,23,2,14,4],"span":[456,2,10]},{"path":[4,23,2,14,5],"span":[456,11,17]},{"path":[4,23,2,14,1],"span":[456,18,31]},{"path":[4,23,2,14,3],"span":[456,34,36]},{"path":[4,24],"span":[460,0,463,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,24,1],"span":[460,8,20]},{"path":[4,24,2,0],"span":[461,2,16]},{"path":[4,24,2,0,5],"span":[461,2,8]},{"path":[4,24,2,0,1],"span":[461,9,11]},{"path":[4,24,2,0,3],"span":[461,14,15]},{"path":[4,24,2,1],"span":[462,2,20]},{"path":[4,24,2,1,5],"span":[462,2,8]},{"path":[4,24,2,1,1],"span":[462,9,15]},{"path":[4,24,2,1,3],"span":[462,18,19]},{"path":[4,25],"span":[466,0,507,1],"leadingComments":" Processor *"},{"path":[4,25,1],"span":[466,8,17]},{"path":[4,25,2,0],"span":[467,2,21]},{"path":[4,25,2,0,5],"span":[467,2,8]},{"path":[4,25,2,0,1],"span":[467,10,14]},{"path":[4,25,2,0,3],"span":[467,17,18]},{"path":[4,25,2,1],"span":[468,2,36],"trailingComments":" Linux-only\n"},{"path":[4,25,2,1,4],"span":[468,2,10]},{"path":[4,25,2,1,5],"span":[468,11,17]},{"path":[4,25,2,1,1],"span":[468,18,31]},{"path":[4,25,2,1,3],"span":[468,34,35]},{"path":[4,25,2,2],"span":[469,2,35],"trailingComments":" Windows-only\n"},{"path":[4,25,2,2,4],"span":[469,2,10]},{"path":[4,25,2,2,5],"span":[469,11,16]},{"path":[4,25,2,2,1],"span":[469,17,30]},{"path":[4,25,2,2,3],"span":[469,33,34]},{"path":[4,25,2,3],"span":[470,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,25,2,3,4],"span":[470,2,10]},{"path":[4,25,2,3,6],"span":[470,11,22]},{"path":[4,25,2,3,1],"span":[470,23,35]},{"path":[4,25,2,3,3],"span":[470,38,39]},{"path":[4,25,2,4],"span":[471,2,34],"trailingComments":" Windows-only\n"},{"path":[4,25,2,4,4],"span":[471,2,10]},{"path":[4,25,2,4,5],"span":[471,11,16]},{"path":[4,25,2,4,1],"span":[471,17,29]},{"path":[4,25,2,4,3],"span":[471,32,33]},{"path":[4,25,2,5],"span":[472,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,25,2,5,4],"span":[472,2,10]},{"path":[4,25,2,5,5],"span":[472,11,17]},{"path":[4,25,2,5,1],"span":[472,18,27]},{"path":[4,25,2,5,3],"span":[472,30,31]},{"path":[4,25,2,6],"span":[473,2,33],"trailingComments":" Linux-only\n"},{"path":[4,25,2,6,4],"span":[473,2,10]},{"path":[4,25,2,6,5],"span":[473,11,17]},{"path":[4,25,2,6,1],"span":[473,18,28]},{"path":[4,25,2,6,3],"span":[473,31,32]},{"path":[4,25,2,7],"span":[474,2,30],"trailingComments":" Windows-only\n"},{"path":[4,25,2,7,4],"span":[474,2,10]},{"path":[4,25,2,7,5],"span":[474,11,17]},{"path":[4,25,2,7,1],"span":[474,18,25]},{"path":[4,25,2,7,3],"span":[474,28,29]},{"path":[4,25,2,8],"span":[475,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,25,2,8,4],"span":[475,2,10]},{"path":[4,25,2,8,5],"span":[475,11,16]},{"path":[4,25,2,8,1],"span":[475,17,36]},{"path":[4,25,2,8,3],"span":[475,39,40]},{"path":[4,25,2,9],"span":[476,2,33],"trailingComments":" Windows-only\n"},{"path":[4,25,2,9,4],"span":[476,2,10]},{"path":[4,25,2,9,5],"span":[476,11,16]},{"path":[4,25,2,9,1],"span":[476,17,27]},{"path":[4,25,2,9,3],"span":[476,30,32]},{"path":[4,25,2,10],"span":[477,2,33],"trailingComments":" Windows-only\n"},{"path":[4,25,2,10,4],"span":[477,2,10]},{"path":[4,25,2,10,5],"span":[477,11,17]},{"path":[4,25,2,10,1],"span":[477,18,27]},{"path":[4,25,2,10,3],"span":[477,30,32]},{"path":[4,25,2,11],"span":[478,2,41],"trailingComments":" Windows-only\n"},{"path":[4,25,2,11,4],"span":[478,2,10]},{"path":[4,25,2,11,5],"span":[478,11,16]},{"path":[4,25,2,11,1],"span":[478,17,35]},{"path":[4,25,2,11,3],"span":[478,38,40]},{"path":[4,25,2,12],"span":[479,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,25,2,12,4],"span":[479,2,10]},{"path":[4,25,2,12,6],"span":[479,11,22]},{"path":[4,25,2,12,1],"span":[479,23,29]},{"path":[4,25,2,12,3],"span":[479,32,34]},{"path":[4,25,2,13],"span":[480,2,41],"trailingComments":" Linux-only\n"},{"path":[4,25,2,13,4],"span":[480,2,10]},{"path":[4,25,2,13,5],"span":[480,11,17]},{"path":[4,25,2,13,1],"span":[480,18,35]},{"path":[4,25,2,13,3],"span":[480,38,40]},{"path":[4,25,2,14],"span":[481,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,25,2,14,4],"span":[481,2,10]},{"path":[4,25,2,14,5],"span":[481,11,16]},{"path":[4,25,2,14,1],"span":[481,17,34]},{"path":[4,25,2,14,3],"span":[481,37,39]},{"path":[4,25,2,15],"span":[482,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,25,2,15,4],"span":[482,2,10]},{"path":[4,25,2,15,5],"span":[482,11,16]},{"path":[4,25,2,15,1],"span":[482,17,34]},{"path":[4,25,2,15,3],"span":[482,37,39]},{"path":[4,25,2,16],"span":[483,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,25,2,16,4],"span":[483,2,10]},{"path":[4,25,2,16,5],"span":[483,11,16]},{"path":[4,25,2,16,1],"span":[483,17,33]},{"path":[4,25,2,16,3],"span":[483,36,38]},{"path":[4,25,2,17],"span":[484,2,41],"trailingComments":" Windows-only\n"},{"path":[4,25,2,17,4],"span":[484,2,10]},{"path":[4,25,2,17,5],"span":[484,11,16]},{"path":[4,25,2,17,1],"span":[484,17,35]},{"path":[4,25,2,17,3],"span":[484,38,40]},{"path":[4,25,2,18],"span":[485,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,25,2,18,4],"span":[485,2,10]},{"path":[4,25,2,18,5],"span":[485,11,16]},{"path":[4,25,2,18,1],"span":[485,17,33]},{"path":[4,25,2,18,3],"span":[485,36,38]},{"path":[4,25,2,19],"span":[486,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,25,2,19,4],"span":[486,2,10]},{"path":[4,25,2,19,5],"span":[486,11,16]},{"path":[4,25,2,19,1],"span":[486,17,22]},{"path":[4,25,2,19,3],"span":[486,25,27]},{"path":[4,25,2,20],"span":[487,2,44]},{"path":[4,25,2,20,4],"span":[487,2,10]},{"path":[4,25,2,20,5],"span":[487,11,16]},{"path":[4,25,2,20,1],"span":[487,17,36]},{"path":[4,25,2,20,3],"span":[487,39,41]},{"path":[4,25,2,21],"span":[488,2,38]},{"path":[4,25,2,21,4],"span":[488,2,10]},{"path":[4,25,2,21,5],"span":[488,11,17]},{"path":[4,25,2,21,1],"span":[488,18,30]},{"path":[4,25,2,21,3],"span":[488,33,35]},{"path":[4,25,2,22],"span":[489,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,25,2,22,4],"span":[489,2,10]},{"path":[4,25,2,22,5],"span":[489,11,16]},{"path":[4,25,2,22,1],"span":[489,17,36]},{"path":[4,25,2,22,3],"span":[489,39,41]},{"path":[4,25,2,23],"span":[490,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,25,2,23,4],"span":[490,2,10]},{"path":[4,25,2,23,5],"span":[490,11,16]},{"path":[4,25,2,23,1],"span":[490,17,36]},{"path":[4,25,2,23,3],"span":[490,39,41]},{"path":[4,25,2,24],"span":[491,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,25,2,24,4],"span":[491,2,10]},{"path":[4,25,2,24,5],"span":[491,11,16]},{"path":[4,25,2,24,1],"span":[491,17,29]},{"path":[4,25,2,24,3],"span":[491,32,34]},{"path":[4,25,2,25],"span":[492,2,32],"trailingComments":" Linux-only\n"},{"path":[4,25,2,25,4],"span":[492,2,10]},{"path":[4,25,2,25,5],"span":[492,11,17]},{"path":[4,25,2,25,1],"span":[492,18,26]},{"path":[4,25,2,25,3],"span":[492,29,31]},{"path":[4,25,2,26],"span":[493,2,45]},{"path":[4,25,2,26,4],"span":[493,2,10]},{"path":[4,25,2,26,5],"span":[493,11,16]},{"path":[4,25,2,26,1],"span":[493,17,37]},{"path":[4,25,2,26,3],"span":[493,40,42]},{"path":[4,25,2,27],"span":[494,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,25,2,27,4],"span":[494,2,10]},{"path":[4,25,2,27,5],"span":[494,11,17]},{"path":[4,25,2,27,1],"span":[494,18,30]},{"path":[4,25,2,27,3],"span":[494,33,35]},{"path":[4,25,2,28],"span":[495,2,43],"trailingComments":" Windows-only\n"},{"path":[4,25,2,28,4],"span":[495,2,10]},{"path":[4,25,2,28,6],"span":[495,11,22]},{"path":[4,25,2,28,1],"span":[495,23,37]},{"path":[4,25,2,28,3],"span":[495,40,42]},{"path":[4,25,2,29],"span":[496,2,31],"trailingComments":" Windows-only\n"},{"path":[4,25,2,29,4],"span":[496,2,10]},{"path":[4,25,2,29,5],"span":[496,11,16]},{"path":[4,25,2,29,1],"span":[496,17,25]},{"path":[4,25,2,29,3],"span":[496,28,30]},{"path":[4,25,2,30],"span":[497,2,42],"trailingComments":" Windows-only\n"},{"path":[4,25,2,30,4],"span":[497,2,10]},{"path":[4,25,2,30,5],"span":[497,11,17]},{"path":[4,25,2,30,1],"span":[497,18,36]},{"path":[4,25,2,30,3],"span":[497,39,41]},{"path":[4,25,2,31],"span":[498,2,31],"trailingComments":" Linux-only\n"},{"path":[4,25,2,31,4],"span":[498,2,10]},{"path":[4,25,2,31,5],"span":[498,11,16]},{"path":[4,25,2,31,1],"span":[498,18,25]},{"path":[4,25,2,31,3],"span":[498,28,30]},{"path":[4,25,2,32],"span":[499,2,35],"trailingComments":" Windows-only\n"},{"path":[4,25,2,32,4],"span":[499,2,10]},{"path":[4,25,2,32,6],"span":[499,11,22]},{"path":[4,25,2,32,1],"span":[499,23,29]},{"path":[4,25,2,32,3],"span":[499,32,34]},{"path":[4,25,2,33],"span":[500,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,25,2,33,4],"span":[500,2,10]},{"path":[4,25,2,33,5],"span":[500,11,16]},{"path":[4,25,2,33,1],"span":[500,17,25]},{"path":[4,25,2,33,3],"span":[500,28,30]},{"path":[4,25,2,34],"span":[501,2,54],"trailingComments":" Linux-only\n"},{"path":[4,25,2,34,4],"span":[501,2,10]},{"path":[4,25,2,34,5],"span":[501,11,16]},{"path":[4,25,2,34,1],"span":[501,17,48]},{"path":[4,25,2,34,3],"span":[501,51,53]},{"path":[4,25,2,35],"span":[502,2,33],"trailingComments":" Windows-only\n"},{"path":[4,25,2,35,4],"span":[502,2,10]},{"path":[4,25,2,35,5],"span":[502,11,17]},{"path":[4,25,2,35,1],"span":[502,18,27]},{"path":[4,25,2,35,3],"span":[502,30,32]},{"path":[4,25,2,36],"span":[503,2,43],"trailingComments":" Windows-only\n"},{"path":[4,25,2,36,4],"span":[503,2,10]},{"path":[4,25,2,36,6],"span":[503,11,22]},{"path":[4,25,2,36,1],"span":[503,23,37]},{"path":[4,25,2,36,3],"span":[503,40,42]},{"path":[4,25,2,37],"span":[504,2,31],"trailingComments":" Windows-only\n"},{"path":[4,25,2,37,4],"span":[504,2,10]},{"path":[4,25,2,37,5],"span":[504,11,17]},{"path":[4,25,2,37,1],"span":[504,18,25]},{"path":[4,25,2,37,3],"span":[504,28,30]},{"path":[4,25,2,38],"span":[505,2,38],"trailingComments":" Linux-only\n"},{"path":[4,25,2,38,4],"span":[505,2,10]},{"path":[4,25,2,38,5],"span":[505,11,17]},{"path":[4,25,2,38,1],"span":[505,18,32]},{"path":[4,25,2,38,3],"span":[505,35,37]},{"path":[4,25,2,39],"span":[506,2,49],"trailingComments":" Windows-only\n"},{"path":[4,25,2,39,4],"span":[506,2,10]},{"path":[4,25,2,39,6],"span":[506,11,22]},{"path":[4,25,2,39,1],"span":[506,23,43]},{"path":[4,25,2,39,3],"span":[506,46,48]},{"path":[4,26],"span":[510,0,520,1],"leadingComments":" Chassis *"},{"path":[4,26,1],"span":[510,8,15]},{"path":[4,26,2,0],"span":[512,2,25]},{"path":[4,26,2,0,6],"span":[512,2,13]},{"path":[4,26,2,0,1],"span":[512,16,20]},{"path":[4,26,2,0,3],"span":[512,23,24]},{"path":[4,26,2,1],"span":[513,2,33]},{"path":[4,26,2,1,4],"span":[513,2,10]},{"path":[4,26,2,1,5],"span":[513,11,15]},{"path":[4,26,2,1,1],"span":[513,16,28]},{"path":[4,26,2,1,3],"span":[513,31,32]},{"path":[4,26,2,2],"span":[514,2,41]},{"path":[4,26,2,2,4],"span":[514,2,10]},{"path":[4,26,2,2,5],"span":[514,11,17]},{"path":[4,26,2,2,1],"span":[514,24,36]},{"path":[4,26,2,2,3],"span":[514,39,40]},{"path":[4,26,2,3],"span":[515,2,43]},{"path":[4,26,2,3,4],"span":[515,2,10]},{"path":[4,26,2,3,6],"span":[515,11,22]},{"path":[4,26,2,3,1],"span":[515,23,38]},{"path":[4,26,2,3,3],"span":[515,41,42]},{"path":[4,26,2,4],"span":[516,2,42]},{"path":[4,26,2,4,4],"span":[516,2,10]},{"path":[4,26,2,4,5],"span":[516,11,17]},{"path":[4,26,2,4,1],"span":[516,24,37]},{"path":[4,26,2,4,3],"span":[516,40,41]},{"path":[4,26,2,5],"span":[517,2,38]},{"path":[4,26,2,5,4],"span":[517,2,10]},{"path":[4,26,2,5,5],"span":[517,11,17]},{"path":[4,26,2,5,1],"span":[517,24,33]},{"path":[4,26,2,5,3],"span":[517,36,37]},{"path":[4,26,2,6],"span":[518,2,36]},{"path":[4,26,2,6,4],"span":[518,2,10]},{"path":[4,26,2,6,5],"span":[518,11,17]},{"path":[4,26,2,6,1],"span":[518,24,31]},{"path":[4,26,2,6,3],"span":[518,34,35]},{"path":[4,26,2,7],"span":[519,2,40]},{"path":[4,26,2,7,4],"span":[519,2,10]},{"path":[4,26,2,7,6],"span":[519,11,22]},{"path":[4,26,2,7,1],"span":[519,23,35]},{"path":[4,26,2,7,3],"span":[519,38,39]},{"path":[4,27],"span":[525,0,538,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,27,1],"span":[525,8,19]},{"path":[4,27,2,0],"span":[526,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,27,2,0,5],"span":[526,2,8]},{"path":[4,27,2,0,1],"span":[526,9,13]},{"path":[4,27,2,0,3],"span":[526,16,17]},{"path":[4,27,2,1],"span":[527,2,43],"trailingComments":" Windows\n"},{"path":[4,27,2,1,4],"span":[527,2,10]},{"path":[4,27,2,1,5],"span":[527,11,17]},{"path":[4,27,2,1,1],"span":[527,24,38]},{"path":[4,27,2,1,3],"span":[527,41,42]},{"path":[4,27,2,2],"span":[528,2,37],"trailingComments":" Windows\n"},{"path":[4,27,2,2,4],"span":[528,2,10]},{"path":[4,27,2,2,5],"span":[528,11,15]},{"path":[4,27,2,2,1],"span":[528,16,32]},{"path":[4,27,2,2,3],"span":[528,35,36]},{"path":[4,27,2,3],"span":[529,2,34],"trailingComments":" Windows\n"},{"path":[4,27,2,3,4],"span":[529,2,10]},{"path":[4,27,2,3,5],"span":[529,11,15]},{"path":[4,27,2,3,1],"span":[529,16,29]},{"path":[4,27,2,3,3],"span":[529,32,33]},{"path":[4,27,2,4],"span":[530,2,37],"trailingComments":" Linux\n"},{"path":[4,27,2,4,4],"span":[530,2,10]},{"path":[4,27,2,4,5],"span":[530,11,17]},{"path":[4,27,2,4,1],"span":[530,24,32]},{"path":[4,27,2,4,3],"span":[530,35,36]},{"path":[4,27,2,5],"span":[531,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,27,2,5,4],"span":[531,2,10]},{"path":[4,27,2,5,5],"span":[531,11,17]},{"path":[4,27,2,5,1],"span":[531,24,36]},{"path":[4,27,2,5,3],"span":[531,39,40]},{"path":[4,27,2,6],"span":[532,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,27,2,6,4],"span":[532,2,10]},{"path":[4,27,2,6,5],"span":[532,11,17]},{"path":[4,27,2,6,1],"span":[532,24,37]},{"path":[4,27,2,6,3],"span":[532,40,41]},{"path":[4,27,2,7],"span":[533,2,32],"trailingComments":" Windows\n"},{"path":[4,27,2,7,4],"span":[533,2,10]},{"path":[4,27,2,7,5],"span":[533,11,17]},{"path":[4,27,2,7,1],"span":[533,24,27]},{"path":[4,27,2,7,3],"span":[533,30,31]},{"path":[4,27,2,8],"span":[534,2,33],"trailingComments":" Linux\n"},{"path":[4,27,2,8,4],"span":[534,2,10]},{"path":[4,27,2,8,5],"span":[534,11,17]},{"path":[4,27,2,8,1],"span":[534,24,28]},{"path":[4,27,2,8,3],"span":[534,31,32]},{"path":[4,27,2,9],"span":[535,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,27,2,9,4],"span":[535,2,10]},{"path":[4,27,2,9,5],"span":[535,11,17]},{"path":[4,27,2,9,1],"span":[535,24,31]},{"path":[4,27,2,9,3],"span":[535,34,36]},{"path":[4,27,2,10],"span":[537,2,41]},{"path":[4,27,2,10,4],"span":[537,2,10]},{"path":[4,27,2,10,6],"span":[537,11,28]},{"path":[4,27,2,10,1],"span":[537,29,35]},{"path":[4,27,2,10,3],"span":[537,38,40]},{"path":[4,28],"span":[543,0,548,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,28,1],"span":[543,8,25]},{"path":[4,28,2,0],"span":[544,2,40]},{"path":[4,28,2,0,4],"span":[544,2,10]},{"path":[4,28,2,0,5],"span":[544,11,17]},{"path":[4,28,2,0,1],"span":[544,24,35]},{"path":[4,28,2,0,3],"span":[544,38,39]},{"path":[4,28,2,1],"span":[545,2,28]},{"path":[4,28,2,1,4],"span":[545,2,10]},{"path":[4,28,2,1,5],"span":[545,11,15]},{"path":[4,28,2,1,1],"span":[545,16,23]},{"path":[4,28,2,1,3],"span":[545,26,27]},{"path":[4,28,2,2],"span":[546,2,32]},{"path":[4,28,2,2,4],"span":[546,2,10]},{"path":[4,28,2,2,5],"span":[546,11,17]},{"path":[4,28,2,2,1],"span":[546,24,27]},{"path":[4,28,2,2,3],"span":[546,30,31]},{"path":[4,28,2,3],"span":[547,2,32]},{"path":[4,28,2,3,4],"span":[547,2,10]},{"path":[4,28,2,3,6],"span":[547,11,22]},{"path":[4,28,2,3,1],"span":[547,23,27]},{"path":[4,28,2,3,3],"span":[547,30,31]},{"path":[4,29],"span":[553,0,557,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,29,1],"span":[553,8,14]},{"path":[4,29,2,0],"span":[554,4,29]},{"path":[4,29,2,0,5],"span":[554,4,9]},{"path":[4,29,2,0,1],"span":[554,10,24]},{"path":[4,29,2,0,3],"span":[554,27,28]},{"path":[4,29,2,1],"span":[555,4,48]},{"path":[4,29,2,1,4],"span":[555,4,12]},{"path":[4,29,2,1,6],"span":[555,13,27]},{"path":[4,29,2,1,1],"span":[555,28,43]},{"path":[4,29,2,1,3],"span":[555,46,47]},{"path":[4,29,2,2],"span":[556,4,42]},{"path":[4,29,2,2,4],"span":[556,4,12]},{"path":[4,29,2,2,6],"span":[556,13,24]},{"path":[4,29,2,2,1],"span":[556,25,37]},{"path":[4,29,2,2,3],"span":[556,40,41]},{"path":[4,30],"span":[560,0,583,1],"leadingComments":" MemoryEntry *"},{"path":[4,30,1],"span":[560,8,22]},{"path":[4,30,2,0],"span":[562,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,30,2,0,4],"span":[562,4,12]},{"path":[4,30,2,0,5],"span":[562,14,19]},{"path":[4,30,2,0,1],"span":[562,20,24]},{"path":[4,30,2,0,3],"span":[562,27,29]},{"path":[4,30,2,1],"span":[563,4,40],"trailingComments":"\tLinux\n"},{"path":[4,30,2,1,4],"span":[563,4,12]},{"path":[4,30,2,1,5],"span":[563,13,19]},{"path":[4,30,2,1,1],"span":[563,24,36]},{"path":[4,30,2,1,3],"span":[563,38,39]},{"path":[4,30,2,2],"span":[564,4,51],"trailingComments":"\tWindows\n"},{"path":[4,30,2,2,4],"span":[564,4,12]},{"path":[4,30,2,2,5],"span":[564,13,18]},{"path":[4,30,2,2,1],"span":[564,24,46]},{"path":[4,30,2,2,3],"span":[564,49,50]},{"path":[4,30,2,3],"span":[565,4,46],"trailingComments":"\tWindows\n"},{"path":[4,30,2,3,4],"span":[565,4,12]},{"path":[4,30,2,3,5],"span":[565,13,18]},{"path":[4,30,2,3,1],"span":[565,24,42]},{"path":[4,30,2,3,3],"span":[565,44,45]},{"path":[4,30,2,4],"span":[566,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,30,2,4,4],"span":[566,4,12]},{"path":[4,30,2,4,5],"span":[566,13,18]},{"path":[4,30,2,4,1],"span":[566,24,34]},{"path":[4,30,2,4,3],"span":[566,36,37]},{"path":[4,30,2,5],"span":[567,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,30,2,5,4],"span":[567,4,12]},{"path":[4,30,2,5,5],"span":[567,13,19]},{"path":[4,30,2,5,1],"span":[567,24,38]},{"path":[4,30,2,5,3],"span":[567,40,41]},{"path":[4,30,2,6],"span":[568,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,30,2,6,4],"span":[568,4,12]},{"path":[4,30,2,6,6],"span":[568,13,24]},{"path":[4,30,2,6,1],"span":[568,32,43]},{"path":[4,30,2,6,3],"span":[568,45,46]},{"path":[4,30,2,7],"span":[569,4,49],"trailingComments":"\tWindows\n"},{"path":[4,30,2,7,4],"span":[569,4,12]},{"path":[4,30,2,7,5],"span":[569,13,18]},{"path":[4,30,2,7,1],"span":[569,24,45]},{"path":[4,30,2,7,3],"span":[569,47,48]},{"path":[4,30,2,8],"span":[570,4,55],"trailingComments":"\tWindows\n"},{"path":[4,30,2,8,4],"span":[570,4,12]},{"path":[4,30,2,8,6],"span":[570,13,24]},{"path":[4,30,2,8,1],"span":[570,32,51]},{"path":[4,30,2,8,3],"span":[570,53,54]},{"path":[4,30,2,9],"span":[571,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,30,2,9,4],"span":[571,4,12]},{"path":[4,30,2,9,5],"span":[571,13,19]},{"path":[4,30,2,9,1],"span":[571,24,36]},{"path":[4,30,2,9,3],"span":[571,38,39]},{"path":[4,30,2,10],"span":[572,4,33],"trailingComments":"\tMac\n"},{"path":[4,30,2,10,4],"span":[572,4,12]},{"path":[4,30,2,10,5],"span":[572,13,19]},{"path":[4,30,2,10,1],"span":[572,24,28]},{"path":[4,30,2,10,3],"span":[572,30,32]},{"path":[4,30,2,11],"span":[573,4,40],"trailingComments":"\tWindows\n"},{"path":[4,30,2,11,4],"span":[573,4,12]},{"path":[4,30,2,11,5],"span":[573,13,19]},{"path":[4,30,2,11,1],"span":[573,24,35]},{"path":[4,30,2,11,3],"span":[573,37,39]},{"path":[4,30,2,12],"span":[574,4,44],"trailingComments":"\tWindows\n"},{"path":[4,30,2,12,4],"span":[574,4,12]},{"path":[4,30,2,12,5],"span":[574,13,18]},{"path":[4,30,2,12,1],"span":[574,24,39]},{"path":[4,30,2,12,3],"span":[574,41,43]},{"path":[4,30,2,13],"span":[575,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,30,2,13,4],"span":[575,4,12]},{"path":[4,30,2,13,5],"span":[575,13,19]},{"path":[4,30,2,13,1],"span":[575,24,37]},{"path":[4,30,2,13,3],"span":[575,39,41]},{"path":[4,30,2,14],"span":[576,4,32],"trailingComments":"\tLinux\n"},{"path":[4,30,2,14,4],"span":[576,4,12]},{"path":[4,30,2,14,5],"span":[576,13,19]},{"path":[4,30,2,14,1],"span":[576,24,27]},{"path":[4,30,2,14,3],"span":[576,29,31]},{"path":[4,30,2,15],"span":[577,4,32],"trailingComments":"\tWindows\n"},{"path":[4,30,2,15,4],"span":[577,4,12]},{"path":[4,30,2,15,5],"span":[577,13,19]},{"path":[4,30,2,15,1],"span":[577,24,27]},{"path":[4,30,2,15,3],"span":[577,29,31]},{"path":[4,30,2,16],"span":[578,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,30,2,16,4],"span":[578,4,12]},{"path":[4,30,2,16,5],"span":[578,13,18]},{"path":[4,30,2,16,1],"span":[578,24,29]},{"path":[4,30,2,16,3],"span":[578,31,33]},{"path":[4,30,2,17],"span":[579,4,34],"trailingComments":"\tMac\n"},{"path":[4,30,2,17,4],"span":[579,4,12]},{"path":[4,30,2,17,5],"span":[579,13,19]},{"path":[4,30,2,17,1],"span":[579,24,29]},{"path":[4,30,2,17,3],"span":[579,31,33]},{"path":[4,30,2,18],"span":[580,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,30,2,18,4],"span":[580,4,12]},{"path":[4,30,2,18,5],"span":[580,13,18]},{"path":[4,30,2,18,1],"span":[580,24,35]},{"path":[4,30,2,18,3],"span":[580,37,39]},{"path":[4,30,2,19],"span":[581,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,30,2,19,4],"span":[581,4,12]},{"path":[4,30,2,19,6],"span":[581,13,24]},{"path":[4,30,2,19,1],"span":[581,32,36]},{"path":[4,30,2,19,3],"span":[581,38,40]},{"path":[4,30,2,20],"span":[582,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,30,2,20,4],"span":[582,4,12]},{"path":[4,30,2,20,6],"span":[582,13,24]},{"path":[4,30,2,20,1],"span":[582,32,43]},{"path":[4,30,2,20,3],"span":[582,45,47]},{"path":[4,31],"span":[587,0,594,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,31,1],"span":[587,8,19]},{"path":[4,31,2,0],"span":[588,2,40],"trailingComments":"\tWindows\n"},{"path":[4,31,2,0,4],"span":[588,2,10]},{"path":[4,31,2,0,5],"span":[588,11,16]},{"path":[4,31,2,0,1],"span":[588,24,36]},{"path":[4,31,2,0,3],"span":[588,38,39]},{"path":[4,31,2,1],"span":[589,2,36],"trailingComments":"\tWindows\n"},{"path":[4,31,2,1,4],"span":[589,2,10]},{"path":[4,31,2,1,6],"span":[589,11,22]},{"path":[4,31,2,1,1],"span":[589,24,32]},{"path":[4,31,2,1,3],"span":[589,34,35]},{"path":[4,31,2,2],"span":[590,2,42],"trailingComments":"\tWindows\n"},{"path":[4,31,2,2,4],"span":[590,2,10]},{"path":[4,31,2,2,5],"span":[590,11,16]},{"path":[4,31,2,2,1],"span":[590,24,38]},{"path":[4,31,2,2,3],"span":[590,40,41]},{"path":[4,31,2,3],"span":[591,2,51],"trailingComments":"\tWindows\n"},{"path":[4,31,2,3,4],"span":[591,2,10]},{"path":[4,31,2,3,6],"span":[591,11,22]},{"path":[4,31,2,3,1],"span":[591,24,47]},{"path":[4,31,2,3,3],"span":[591,49,50]},{"path":[4,31,2,4],"span":[592,2,31],"trailingComments":"\tWindows\n"},{"path":[4,31,2,4,4],"span":[592,2,10]},{"path":[4,31,2,4,5],"span":[592,11,17]},{"path":[4,31,2,4,1],"span":[592,24,27]},{"path":[4,31,2,4,3],"span":[592,29,30]},{"path":[4,31,2,5],"span":[593,2,31],"trailingComments":"\tWindows\n"},{"path":[4,31,2,5,4],"span":[593,2,10]},{"path":[4,31,2,5,6],"span":[593,11,22]},{"path":[4,31,2,5,1],"span":[593,24,27]},{"path":[4,31,2,5,3],"span":[593,29,30]},{"path":[4,32],"span":[600,0,603,1],"leadingComments":"\n A Mapped value is a numeric field that can optionally have a text looked up value.\n Typical in WMI fields.\n"},{"path":[4,32,1],"span":[600,8,19]},{"path":[4,32,2,0],"span":[601,2,18]},{"path":[4,32,2,0,5],"span":[601,2,7]},{"path":[4,32,2,0,1],"span":[601,8,13]},{"path":[4,32,2,0,3],"span":[601,16,17]},{"path":[4,32,2,1],"span":[602,2,27]},{"path":[4,32,2,1,4],"span":[602,2,10]},{"path":[4,32,2,1,5],"span":[602,11,17]},{"path":[4,32,2,1,1],"span":[602,18,22]},{"path":[4,32,2,1,3],"span":[602,25,26]},{"path":[4,33],"span":[606,0,609,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,33,1],"span":[606,8,24]},{"path":[4,33,2,0],"span":[607,2,42]},{"path":[4,33,2,0,6],"span":[607,2,27]},{"path":[4,33,2,0,1],"span":[607,28,37]},{"path":[4,33,2,0,3],"span":[607,40,41]},{"path":[4,33,2,1],"span":[608,2,31]},{"path":[4,33,2,1,4],"span":[608,2,10]},{"path":[4,33,2,1,6],"span":[608,11,18]},{"path":[4,33,2,1,1],"span":[608,19,26]},{"path":[4,33,2,1,3],"span":[608,29,30]},{"path":[4,34],"span":[613,0,634,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,34,1],"span":[613,8,15]},{"path":[4,34,2,0],"span":[615,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,34,2,0,4],"span":[615,2,10]},{"path":[4,34,2,0,5],"span":[615,11,16]},{"path":[4,34,2,0,1],"span":[615,17,19]},{"path":[4,34,2,0,3],"span":[615,22,23]},{"path":[4,34,2,1],"span":[618,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,34,2,1,4],"span":[618,2,10]},{"path":[4,34,2,1,5],"span":[618,11,16]},{"path":[4,34,2,1,1],"span":[618,17,24]},{"path":[4,34,2,1,3],"span":[618,27,28]},{"path":[4,34,2,2],"span":[620,2,23]},{"path":[4,34,2,2,5],"span":[620,2,8]},{"path":[4,34,2,2,1],"span":[620,9,18]},{"path":[4,34,2,2,3],"span":[620,21,22]},{"path":[4,34,2,3],"span":[621,2,24]},{"path":[4,34,2,3,5],"span":[621,2,8]},{"path":[4,34,2,3,1],"span":[621,9,19]},{"path":[4,34,2,3,3],"span":[621,22,23]},{"path":[4,34,2,4],"span":[623,2,36]},{"path":[4,34,2,4,4],"span":[623,2,10]},{"path":[4,34,2,4,5],"span":[623,11,17]},{"path":[4,34,2,4,1],"span":[623,18,31]},{"path":[4,34,2,4,3],"span":[623,34,35]},{"path":[4,34,2,5],"span":[624,2,50]},{"path":[4,34,2,5,6],"span":[624,2,27]},{"path":[4,34,2,5,1],"span":[624,28,45]},{"path":[4,34,2,5,3],"span":[624,48,49]},{"path":[4,34,8,0],"span":[626,2,628,3]},{"path":[4,34,8,0,1],"span":[626,8,12]},{"path":[4,34,2,6],"span":[627,4,36]},{"path":[4,34,2,6,6],"span":[627,4,22]},{"path":[4,34,2,6,1],"span":[627,23,30]},{"path":[4,34,2,6,3],"span":[627,33,35]},{"path":[4,34,2,7],"span":[631,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,34,2,7,4],"span":[631,2,10]},{"path":[4,34,2,7,6],"span":[631,11,23]},{"path":[4,34,2,7,1],"span":[631,24,37]},{"path":[4,34,2,7,3],"span":[631,40,42]},{"path":[4,34,2,8],"span":[633,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,34,2,8,4],"span":[633,2,10]},{"path":[4,34,2,8,6],"span":[633,11,25]},{"path":[4,34,2,8,1],"span":[633,26,41]},{"path":[4,34,2,8,3],"span":[633,44,46]},{"path":[4,35],"span":[636,0,645,1]},{"path":[4,35,1],"span":[636,8,26]},{"path":[4,35,2,0],"span":[637,2,19]},{"path":[4,35,2,0,5],"span":[637,2,8]},{"path":[4,35,2,0,1],"span":[637,9,14]},{"path":[4,35,2,0,3],"span":[637,17,18]},{"path":[4,35,2,1],"span":[638,2,36]},{"path":[4,35,2,1,4],"span":[638,2,10]},{"path":[4,35,2,1,5],"span":[638,11,17]},{"path":[4,35,2,1,1],"span":[638,18,31]},{"path":[4,35,2,1,3],"span":[638,34,35]},{"path":[4,35,2,2],"span":[639,2,36]},{"path":[4,35,2,2,4],"span":[639,2,10]},{"path":[4,35,2,2,5],"span":[639,11,17]},{"path":[4,35,2,2,1],"span":[639,18,31]},{"path":[4,35,2,2,3],"span":[639,34,35]},{"path":[4,35,2,3],"span":[640,2,33]},{"path":[4,35,2,3,4],"span":[640,2,10]},{"path":[4,35,2,3,5],"span":[640,11,17]},{"path":[4,35,2,3,1],"span":[640,18,28]},{"path":[4,35,2,3,3],"span":[640,31,32]},{"path":[4,35,2,4],"span":[641,2,40]},{"path":[4,35,2,4,4],"span":[641,2,10]},{"path":[4,35,2,4,5],"span":[641,11,17]},{"path":[4,35,2,4,1],"span":[641,18,35]},{"path":[4,35,2,4,3],"span":[641,38,39]},{"path":[4,35,2,5],"span":[642,2,39]},{"path":[4,35,2,5,4],"span":[642,2,10]},{"path":[4,35,2,5,5],"span":[642,11,17]},{"path":[4,35,2,5,1],"span":[642,18,34]},{"path":[4,35,2,5,3],"span":[642,37,38]},{"path":[4,35,2,6],"span":[643,2,59]},{"path":[4,35,2,6,4],"span":[643,2,10]},{"path":[4,35,2,6,6],"span":[643,11,36]},{"path":[4,35,2,6,1],"span":[643,37,54]},{"path":[4,35,2,6,3],"span":[643,57,58]},{"path":[4,35,2,7],"span":[644,2,32]},{"path":[4,35,2,7,4],"span":[644,2,10]},{"path":[4,35,2,7,5],"span":[644,11,17]},{"path":[4,35,2,7,1],"span":[644,18,27]},{"path":[4,35,2,7,3],"span":[644,30,31]},{"path":[4,36],"span":[654,0,657,1],"leadingComments":"\n Software Inventory with list of installed SW.\n Sources:\n - com.lansweeper.discovery.sensor.windows.v1.WindowsSoftwareInfo: section on Windows WMI/Local/SCCM\n - com.lansweeper.discovery.sensor.mac.v1.MacSoftware: section on Mac via SSH or local\n - com.lansweeper.discovery.sensor.unix.v1.Software: section Linux/Unix via SSH or local\n"},{"path":[4,36,1],"span":[654,8,25]},{"path":[4,36,2,0],"span":[655,2,42]},{"path":[4,36,2,0,6],"span":[655,2,27]},{"path":[4,36,2,0,1],"span":[655,28,37]},{"path":[4,36,2,0,3],"span":[655,40,41]},{"path":[4,36,2,1],"span":[656,2,33]},{"path":[4,36,2,1,4],"span":[656,2,10]},{"path":[4,36,2,1,6],"span":[656,11,19]},{"path":[4,36,2,1,1],"span":[656,20,28]},{"path":[4,36,2,1,3],"span":[656,31,32]},{"path":[4,37],"span":[666,0,704,1],"leadingComments":"\n Software definition: normalized and with link to raw.\n Translated and enriched from:\n - com.lansweeper.discovery.sensor.windows.v1.SoftwareInfo\n - com.lansweeper.discovery.sensor.mac.v1.Software\n - com.lansweeper.discovery.sensor.unix.v1.SoftwareEntry\n"},{"path":[4,37,1],"span":[666,8,16]},{"path":[4,37,2,0],"span":[668,2,26]},{"path":[4,37,2,0,4],"span":[668,2,10]},{"path":[4,37,2,0,5],"span":[668,11,16]},{"path":[4,37,2,0,1],"span":[668,17,21]},{"path":[4,37,2,0,3],"span":[668,24,25]},{"path":[4,37,2,1],"span":[669,2,29]},{"path":[4,37,2,1,4],"span":[669,2,10]},{"path":[4,37,2,1,5],"span":[669,11,16]},{"path":[4,37,2,1,1],"span":[669,17,24]},{"path":[4,37,2,1,3],"span":[669,27,28]},{"path":[4,37,2,2],"span":[670,2,28]},{"path":[4,37,2,2,4],"span":[670,2,10]},{"path":[4,37,2,2,5],"span":[670,11,16]},{"path":[4,37,2,2,1],"span":[670,17,23]},{"path":[4,37,2,2,3],"span":[670,26,27]},{"path":[4,37,2,3],"span":[673,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,37,2,3,4],"span":[673,2,10]},{"path":[4,37,2,3,5],"span":[673,11,16]},{"path":[4,37,2,3,1],"span":[673,17,24]},{"path":[4,37,2,3,3],"span":[673,27,28]},{"path":[4,37,2,4],"span":[676,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,37,2,4,4],"span":[676,2,10]},{"path":[4,37,2,4,5],"span":[676,11,16]},{"path":[4,37,2,4,1],"span":[676,17,22]},{"path":[4,37,2,4,3],"span":[676,25,26]},{"path":[4,37,2,5],"span":[679,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,37,2,5,4],"span":[679,2,10]},{"path":[4,37,2,5,5],"span":[679,11,16]},{"path":[4,37,2,5,1],"span":[679,17,26]},{"path":[4,37,2,5,3],"span":[679,29,30]},{"path":[4,37,2,6],"span":[681,2,32]},{"path":[4,37,2,6,4],"span":[681,2,10]},{"path":[4,37,2,6,5],"span":[681,11,17]},{"path":[4,37,2,6,1],"span":[681,18,27]},{"path":[4,37,2,6,3],"span":[681,30,31]},{"path":[4,37,2,7],"span":[682,2,31]},{"path":[4,37,2,7,4],"span":[682,2,10]},{"path":[4,37,2,7,5],"span":[682,11,17]},{"path":[4,37,2,7,1],"span":[682,18,26]},{"path":[4,37,2,7,3],"span":[682,29,30]},{"path":[4,37,2,8],"span":[683,2,32]},{"path":[4,37,2,8,4],"span":[683,2,10]},{"path":[4,37,2,8,5],"span":[683,11,17]},{"path":[4,37,2,8,1],"span":[683,18,27]},{"path":[4,37,2,8,3],"span":[683,30,31]},{"path":[4,37,2,9],"span":[684,2,28]},{"path":[4,37,2,9,4],"span":[684,2,10]},{"path":[4,37,2,9,5],"span":[684,11,17]},{"path":[4,37,2,9,1],"span":[684,18,22]},{"path":[4,37,2,9,3],"span":[684,25,27]},{"path":[4,37,2,10],"span":[685,2,31]},{"path":[4,37,2,10,4],"span":[685,2,10]},{"path":[4,37,2,10,5],"span":[685,11,17]},{"path":[4,37,2,10,1],"span":[685,18,25]},{"path":[4,37,2,10,3],"span":[685,28,30]},{"path":[4,37,2,11],"span":[686,2,34]},{"path":[4,37,2,11,4],"span":[686,2,10]},{"path":[4,37,2,11,5],"span":[686,11,17]},{"path":[4,37,2,11,1],"span":[686,18,28]},{"path":[4,37,2,11,3],"span":[686,31,33]},{"path":[4,37,2,12],"span":[687,2,31]},{"path":[4,37,2,12,4],"span":[687,2,10]},{"path":[4,37,2,12,5],"span":[687,11,17]},{"path":[4,37,2,12,1],"span":[687,18,25]},{"path":[4,37,2,12,3],"span":[687,28,30]},{"path":[4,37,2,13],"span":[688,2,29]},{"path":[4,37,2,13,4],"span":[688,2,10]},{"path":[4,37,2,13,5],"span":[688,11,17]},{"path":[4,37,2,13,1],"span":[688,18,23]},{"path":[4,37,2,13,3],"span":[688,26,28]},{"path":[4,37,2,14],"span":[689,2,28]},{"path":[4,37,2,14,4],"span":[689,2,10]},{"path":[4,37,2,14,5],"span":[689,11,17]},{"path":[4,37,2,14,1],"span":[689,18,22]},{"path":[4,37,2,14,3],"span":[689,25,27]},{"path":[4,37,2,15],"span":[690,2,28]},{"path":[4,37,2,15,4],"span":[690,2,10]},{"path":[4,37,2,15,5],"span":[690,11,17]},{"path":[4,37,2,15,1],"span":[690,18,22]},{"path":[4,37,2,15,3],"span":[690,25,27]},{"path":[4,37,2,16],"span":[692,2,27]},{"path":[4,37,2,16,4],"span":[692,2,10]},{"path":[4,37,2,16,5],"span":[692,11,17]},{"path":[4,37,2,16,1],"span":[692,18,21]},{"path":[4,37,2,16,3],"span":[692,24,26]},{"path":[4,37,2,17],"span":[694,2,23]},{"path":[4,37,2,17,6],"span":[694,2,13]},{"path":[4,37,2,17,1],"span":[694,14,17]},{"path":[4,37,2,17,3],"span":[694,20,22]},{"path":[4,37,2,18],"span":[695,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,37,2,18,4],"span":[695,2,10]},{"path":[4,37,2,18,5],"span":[695,11,17]},{"path":[4,37,2,18,1],"span":[695,18,26]},{"path":[4,37,2,18,3],"span":[695,29,31]},{"path":[4,37,2,19],"span":[696,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,37,2,19,4],"span":[696,2,10]},{"path":[4,37,2,19,5],"span":[696,11,17]},{"path":[4,37,2,19,1],"span":[696,18,26]},{"path":[4,37,2,19,3],"span":[696,29,31]},{"path":[4,37,2,20],"span":[699,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,37,2,20,4],"span":[699,2,10]},{"path":[4,37,2,20,6],"span":[699,11,23]},{"path":[4,37,2,20,1],"span":[699,24,37]},{"path":[4,37,2,20,3],"span":[699,40,42]},{"path":[4,37,2,21],"span":[701,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,37,2,21,4],"span":[701,2,10]},{"path":[4,37,2,21,6],"span":[701,11,26]},{"path":[4,37,2,21,1],"span":[701,27,43]},{"path":[4,37,2,21,3],"span":[701,46,48]},{"path":[4,37,2,22],"span":[703,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,37,2,22,4],"span":[703,2,10]},{"path":[4,37,2,22,6],"span":[703,11,26]},{"path":[4,37,2,22,1],"span":[703,27,41]},{"path":[4,37,2,22,3],"span":[703,44,46]},{"path":[4,38],"span":[709,0,723,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,38,1],"span":[709,8,19]},{"path":[4,38,2,0],"span":[710,2,18]},{"path":[4,38,2,0,5],"span":[710,2,8]},{"path":[4,38,2,0,1],"span":[710,9,13]},{"path":[4,38,2,0,3],"span":[710,16,17]},{"path":[4,38,2,1],"span":[712,2,29]},{"path":[4,38,2,1,4],"span":[712,2,10]},{"path":[4,38,2,1,5],"span":[712,11,17]},{"path":[4,38,2,1,1],"span":[712,18,24]},{"path":[4,38,2,1,3],"span":[712,27,28]},{"path":[4,38,2,2],"span":[713,2,30]},{"path":[4,38,2,2,4],"span":[713,2,10]},{"path":[4,38,2,2,5],"span":[713,11,17]},{"path":[4,38,2,2,1],"span":[713,18,25]},{"path":[4,38,2,2,3],"span":[713,28,29]},{"path":[4,38,2,3],"span":[714,2,27]},{"path":[4,38,2,3,4],"span":[714,2,10]},{"path":[4,38,2,3,5],"span":[714,11,17]},{"path":[4,38,2,3,1],"span":[714,18,22]},{"path":[4,38,2,3,3],"span":[714,25,26]},{"path":[4,38,2,4],"span":[715,2,31]},{"path":[4,38,2,4,4],"span":[715,2,10]},{"path":[4,38,2,4,5],"span":[715,11,17]},{"path":[4,38,2,4,1],"span":[715,18,26]},{"path":[4,38,2,4,3],"span":[715,29,30]},{"path":[4,38,2,5],"span":[716,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,38,2,5,4],"span":[716,2,10]},{"path":[4,38,2,5,5],"span":[716,11,17]},{"path":[4,38,2,5,1],"span":[716,18,22]},{"path":[4,38,2,5,3],"span":[716,25,26]},{"path":[4,38,2,6],"span":[717,2,54]},{"path":[4,38,2,6,4],"span":[717,2,10]},{"path":[4,38,2,6,6],"span":[717,11,36]},{"path":[4,38,2,6,1],"span":[717,37,49]},{"path":[4,38,2,6,3],"span":[717,52,53]},{"path":[4,38,2,7],"span":[718,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,38,2,7,4],"span":[718,2,10]},{"path":[4,38,2,7,5],"span":[718,11,17]},{"path":[4,38,2,7,1],"span":[718,18,29]},{"path":[4,38,2,7,3],"span":[718,32,33]},{"path":[4,38,2,8],"span":[720,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,38,2,8,4],"span":[720,2,10]},{"path":[4,38,2,8,5],"span":[720,11,17]},{"path":[4,38,2,8,1],"span":[720,18,23]},{"path":[4,38,2,8,3],"span":[720,26,27]},{"path":[4,38,2,9],"span":[722,2,37]},{"path":[4,38,2,9,4],"span":[722,2,10]},{"path":[4,38,2,9,5],"span":[722,11,15]},{"path":[4,38,2,9,1],"span":[722,16,31]},{"path":[4,38,2,9,3],"span":[722,34,36]},{"path":[4,39],"span":[727,0,761,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,39,1],"span":[727,8,20]},{"path":[4,39,2,0],"span":[728,2,16]},{"path":[4,39,2,0,5],"span":[728,2,7]},{"path":[4,39,2,0,1],"span":[728,9,11]},{"path":[4,39,2,0,3],"span":[728,14,15]},{"path":[4,39,2,1],"span":[729,2,23]},{"path":[4,39,2,1,5],"span":[729,2,8]},{"path":[4,39,2,1,1],"span":[729,9,18]},{"path":[4,39,2,1,3],"span":[729,21,22]},{"path":[4,39,2,2],"span":[731,2,32]},{"path":[4,39,2,2,4],"span":[731,2,10]},{"path":[4,39,2,2,5],"span":[731,11,16]},{"path":[4,39,2,2,1],"span":[731,17,26]},{"path":[4,39,2,2,3],"span":[731,29,31]},{"path":[4,39,2,3],"span":[732,2,58]},{"path":[4,39,2,3,4],"span":[732,2,10]},{"path":[4,39,2,3,6],"span":[732,11,36]},{"path":[4,39,2,3,1],"span":[732,37,53]},{"path":[4,39,2,3,3],"span":[732,56,57]},{"path":[4,39,2,4],"span":[734,2,35]},{"path":[4,39,2,4,4],"span":[734,2,10]},{"path":[4,39,2,4,5],"span":[734,11,17]},{"path":[4,39,2,4,1],"span":[734,18,30]},{"path":[4,39,2,4,3],"span":[734,33,34]},{"path":[4,39,2,5],"span":[735,2,37]},{"path":[4,39,2,5,4],"span":[735,2,10]},{"path":[4,39,2,5,5],"span":[735,11,17]},{"path":[4,39,2,5,1],"span":[735,18,32]},{"path":[4,39,2,5,3],"span":[735,35,36]},{"path":[4,39,2,6],"span":[736,2,39]},{"path":[4,39,2,6,4],"span":[736,2,10]},{"path":[4,39,2,6,5],"span":[736,11,17]},{"path":[4,39,2,6,1],"span":[736,18,34]},{"path":[4,39,2,6,3],"span":[736,37,38]},{"path":[4,39,2,7],"span":[737,2,35]},{"path":[4,39,2,7,4],"span":[737,2,10]},{"path":[4,39,2,7,5],"span":[737,11,17]},{"path":[4,39,2,7,1],"span":[737,18,30]},{"path":[4,39,2,7,3],"span":[737,33,34]},{"path":[4,39,2,8],"span":[738,2,43]},{"path":[4,39,2,8,4],"span":[738,2,10]},{"path":[4,39,2,8,5],"span":[738,11,17]},{"path":[4,39,2,8,1],"span":[738,18,37]},{"path":[4,39,2,8,3],"span":[738,40,42]},{"path":[4,39,2,9],"span":[739,2,35]},{"path":[4,39,2,9,4],"span":[739,2,10]},{"path":[4,39,2,9,5],"span":[739,11,17]},{"path":[4,39,2,9,1],"span":[739,18,29]},{"path":[4,39,2,9,3],"span":[739,32,34]},{"path":[4,39,2,10],"span":[740,2,35]},{"path":[4,39,2,10,4],"span":[740,2,10]},{"path":[4,39,2,10,5],"span":[740,11,17]},{"path":[4,39,2,10,1],"span":[740,18,29]},{"path":[4,39,2,10,3],"span":[740,32,34]},{"path":[4,39,2,11],"span":[741,2,37]},{"path":[4,39,2,11,4],"span":[741,2,10]},{"path":[4,39,2,11,5],"span":[741,11,17]},{"path":[4,39,2,11,1],"span":[741,18,31]},{"path":[4,39,2,11,3],"span":[741,34,36]},{"path":[4,39,2,12],"span":[742,2,40]},{"path":[4,39,2,12,4],"span":[742,2,10]},{"path":[4,39,2,12,5],"span":[742,11,17]},{"path":[4,39,2,12,1],"span":[742,18,34]},{"path":[4,39,2,12,3],"span":[742,37,39]},{"path":[4,39,2,13],"span":[743,2,39]},{"path":[4,39,2,13,4],"span":[743,2,10]},{"path":[4,39,2,13,5],"span":[743,11,17]},{"path":[4,39,2,13,1],"span":[743,18,33]},{"path":[4,39,2,13,3],"span":[743,36,38]},{"path":[4,39,2,14],"span":[744,2,36]},{"path":[4,39,2,14,4],"span":[744,2,10]},{"path":[4,39,2,14,5],"span":[744,11,17]},{"path":[4,39,2,14,1],"span":[744,18,30]},{"path":[4,39,2,14,3],"span":[744,33,35]},{"path":[4,39,2,15],"span":[745,2,43]},{"path":[4,39,2,15,4],"span":[745,2,10]},{"path":[4,39,2,15,5],"span":[745,11,17]},{"path":[4,39,2,15,1],"span":[745,18,37]},{"path":[4,39,2,15,3],"span":[745,40,42]},{"path":[4,39,2,16],"span":[746,2,37]},{"path":[4,39,2,16,4],"span":[746,2,10]},{"path":[4,39,2,16,5],"span":[746,11,17]},{"path":[4,39,2,16,1],"span":[746,18,31]},{"path":[4,39,2,16,3],"span":[746,34,36]},{"path":[4,39,2,17],"span":[747,2,40]},{"path":[4,39,2,17,4],"span":[747,2,10]},{"path":[4,39,2,17,5],"span":[747,11,17]},{"path":[4,39,2,17,1],"span":[747,18,34]},{"path":[4,39,2,17,3],"span":[747,37,39]},{"path":[4,39,2,18],"span":[748,2,41]},{"path":[4,39,2,18,4],"span":[748,2,10]},{"path":[4,39,2,18,5],"span":[748,11,17]},{"path":[4,39,2,18,1],"span":[748,18,35]},{"path":[4,39,2,18,3],"span":[748,38,40]},{"path":[4,39,2,19],"span":[749,2,39]},{"path":[4,39,2,19,4],"span":[749,2,10]},{"path":[4,39,2,19,5],"span":[749,11,17]},{"path":[4,39,2,19,1],"span":[749,18,33]},{"path":[4,39,2,19,3],"span":[749,36,38]},{"path":[4,39,2,20],"span":[750,2,41]},{"path":[4,39,2,20,4],"span":[750,2,10]},{"path":[4,39,2,20,5],"span":[750,11,17]},{"path":[4,39,2,20,1],"span":[750,18,35]},{"path":[4,39,2,20,3],"span":[750,38,40]},{"path":[4,39,2,21],"span":[751,2,38]},{"path":[4,39,2,21,4],"span":[751,2,10]},{"path":[4,39,2,21,5],"span":[751,11,17]},{"path":[4,39,2,21,1],"span":[751,18,32]},{"path":[4,39,2,21,3],"span":[751,35,37]},{"path":[4,39,2,22],"span":[753,2,36]},{"path":[4,39,2,22,4],"span":[753,2,10]},{"path":[4,39,2,22,5],"span":[753,11,15]},{"path":[4,39,2,22,1],"span":[753,16,30]},{"path":[4,39,2,22,3],"span":[753,33,35]},{"path":[4,39,2,23],"span":[754,2,36]},{"path":[4,39,2,23,4],"span":[754,2,10]},{"path":[4,39,2,23,5],"span":[754,11,15]},{"path":[4,39,2,23,1],"span":[754,16,30]},{"path":[4,39,2,23,3],"span":[754,33,35]},{"path":[4,39,2,24],"span":[755,2,36]},{"path":[4,39,2,24,4],"span":[755,2,10]},{"path":[4,39,2,24,5],"span":[755,11,15]},{"path":[4,39,2,24,1],"span":[755,16,30]},{"path":[4,39,2,24,3],"span":[755,33,35]},{"path":[4,39,2,25],"span":[756,2,38]},{"path":[4,39,2,25,4],"span":[756,2,10]},{"path":[4,39,2,25,5],"span":[756,11,15]},{"path":[4,39,2,25,1],"span":[756,16,32]},{"path":[4,39,2,25,3],"span":[756,35,37]},{"path":[4,39,2,26],"span":[757,2,38]},{"path":[4,39,2,26,4],"span":[757,2,10]},{"path":[4,39,2,26,5],"span":[757,11,15]},{"path":[4,39,2,26,1],"span":[757,16,32]},{"path":[4,39,2,26,3],"span":[757,35,37]},{"path":[4,39,2,27],"span":[758,2,38]},{"path":[4,39,2,27,4],"span":[758,2,10]},{"path":[4,39,2,27,5],"span":[758,11,15]},{"path":[4,39,2,27,1],"span":[758,16,32]},{"path":[4,39,2,27,3],"span":[758,35,37]},{"path":[4,39,2,28],"span":[760,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,39,2,28,4],"span":[760,2,10]},{"path":[4,39,2,28,5],"span":[760,11,16]},{"path":[4,39,2,28,1],"span":[760,17,28]},{"path":[4,39,2,28,3],"span":[760,31,33]},{"path":[4,40],"span":[763,0,798,1]},{"path":[4,40,1],"span":[763,8,20]},{"path":[4,40,2,0],"span":[764,2,15]},{"path":[4,40,2,0,5],"span":[764,2,7]},{"path":[4,40,2,0,1],"span":[764,8,10]},{"path":[4,40,2,0,3],"span":[764,13,14]},{"path":[4,40,2,1],"span":[766,2,20]},{"path":[4,40,2,1,5],"span":[766,2,7]},{"path":[4,40,2,1,1],"span":[766,8,15]},{"path":[4,40,2,1,3],"span":[766,18,19]},{"path":[4,40,2,2],"span":[767,2,26]},{"path":[4,40,2,2,5],"span":[767,2,8]},{"path":[4,40,2,2,1],"span":[767,9,21]},{"path":[4,40,2,2,3],"span":[767,24,25]},{"path":[4,40,2,3],"span":[769,2,36]},{"path":[4,40,2,3,4],"span":[769,2,10]},{"path":[4,40,2,3,5],"span":[769,11,16]},{"path":[4,40,2,3,1],"span":[769,17,31]},{"path":[4,40,2,3,3],"span":[769,34,35]},{"path":[4,40,2,4],"span":[770,2,40]},{"path":[4,40,2,4,4],"span":[770,2,10]},{"path":[4,40,2,4,5],"span":[770,11,17]},{"path":[4,40,2,4,1],"span":[770,18,35]},{"path":[4,40,2,4,3],"span":[770,38,39]},{"path":[4,40,2,5],"span":[772,2,32]},{"path":[4,40,2,5,4],"span":[772,2,10]},{"path":[4,40,2,5,5],"span":[772,11,16]},{"path":[4,40,2,5,1],"span":[772,17,26]},{"path":[4,40,2,5,3],"span":[772,29,31]},{"path":[4,40,2,6],"span":[773,2,31]},{"path":[4,40,2,6,4],"span":[773,2,10]},{"path":[4,40,2,6,5],"span":[773,11,15]},{"path":[4,40,2,6,1],"span":[773,16,25]},{"path":[4,40,2,6,3],"span":[773,28,30]},{"path":[4,40,2,7],"span":[774,2,34]},{"path":[4,40,2,7,4],"span":[774,2,10]},{"path":[4,40,2,7,5],"span":[774,11,17]},{"path":[4,40,2,7,1],"span":[774,18,28]},{"path":[4,40,2,7,3],"span":[774,31,33]},{"path":[4,40,2,8],"span":[775,2,31]},{"path":[4,40,2,8,4],"span":[775,2,10]},{"path":[4,40,2,8,5],"span":[775,11,17]},{"path":[4,40,2,8,1],"span":[775,18,25]},{"path":[4,40,2,8,3],"span":[775,28,30]},{"path":[4,40,2,9],"span":[776,2,55]},{"path":[4,40,2,9,4],"span":[776,2,10]},{"path":[4,40,2,9,6],"span":[776,11,36]},{"path":[4,40,2,9,1],"span":[776,37,49]},{"path":[4,40,2,9,3],"span":[776,52,54]},{"path":[4,40,2,10],"span":[777,2,52]},{"path":[4,40,2,10,4],"span":[777,2,10]},{"path":[4,40,2,10,6],"span":[777,11,36]},{"path":[4,40,2,10,1],"span":[777,37,46]},{"path":[4,40,2,10,3],"span":[777,49,51]},{"path":[4,40,2,11],"span":[778,2,51]},{"path":[4,40,2,11,4],"span":[778,2,10]},{"path":[4,40,2,11,6],"span":[778,11,36]},{"path":[4,40,2,11,1],"span":[778,37,45]},{"path":[4,40,2,11,3],"span":[778,48,50]},{"path":[4,40,2,12],"span":[779,2,43]},{"path":[4,40,2,12,4],"span":[779,2,10]},{"path":[4,40,2,12,5],"span":[779,11,17]},{"path":[4,40,2,12,1],"span":[779,18,37]},{"path":[4,40,2,12,3],"span":[779,40,42]},{"path":[4,40,2,13],"span":[781,2,35]},{"path":[4,40,2,13,4],"span":[781,2,10]},{"path":[4,40,2,13,5],"span":[781,11,17]},{"path":[4,40,2,13,1],"span":[781,18,29]},{"path":[4,40,2,13,3],"span":[781,32,34]},{"path":[4,40,2,14],"span":[782,2,37]},{"path":[4,40,2,14,4],"span":[782,2,10]},{"path":[4,40,2,14,5],"span":[782,11,17]},{"path":[4,40,2,14,1],"span":[782,18,31]},{"path":[4,40,2,14,3],"span":[782,34,36]},{"path":[4,40,2,15],"span":[784,2,39]},{"path":[4,40,2,15,4],"span":[784,2,10]},{"path":[4,40,2,15,5],"span":[784,11,17]},{"path":[4,40,2,15,1],"span":[784,18,33]},{"path":[4,40,2,15,3],"span":[784,36,38]},{"path":[4,40,2,16],"span":[785,2,43]},{"path":[4,40,2,16,4],"span":[785,2,10]},{"path":[4,40,2,16,5],"span":[785,11,17]},{"path":[4,40,2,16,1],"span":[785,18,37]},{"path":[4,40,2,16,3],"span":[785,40,42]},{"path":[4,40,2,17],"span":[786,2,38]},{"path":[4,40,2,17,4],"span":[786,2,10]},{"path":[4,40,2,17,5],"span":[786,11,17]},{"path":[4,40,2,17,1],"span":[786,18,32]},{"path":[4,40,2,17,3],"span":[786,35,37]},{"path":[4,40,2,18],"span":[787,2,38]},{"path":[4,40,2,18,4],"span":[787,2,10]},{"path":[4,40,2,18,5],"span":[787,11,17]},{"path":[4,40,2,18,1],"span":[787,18,32]},{"path":[4,40,2,18,3],"span":[787,35,37]},{"path":[4,40,2,19],"span":[788,2,41]},{"path":[4,40,2,19,4],"span":[788,2,10]},{"path":[4,40,2,19,5],"span":[788,11,15]},{"path":[4,40,2,19,1],"span":[788,18,35]},{"path":[4,40,2,19,3],"span":[788,38,40]},{"path":[4,40,2,20],"span":[789,2,42]},{"path":[4,40,2,20,4],"span":[789,2,10]},{"path":[4,40,2,20,5],"span":[789,11,17]},{"path":[4,40,2,20,1],"span":[789,18,36]},{"path":[4,40,2,20,3],"span":[789,39,41]},{"path":[4,40,2,21],"span":[791,2,32]},{"path":[4,40,2,21,4],"span":[791,2,10]},{"path":[4,40,2,21,5],"span":[791,11,17]},{"path":[4,40,2,21,1],"span":[791,18,26]},{"path":[4,40,2,21,3],"span":[791,29,31]},{"path":[4,40,2,22],"span":[793,2,33]},{"path":[4,40,2,22,4],"span":[793,2,10]},{"path":[4,40,2,22,5],"span":[793,11,16]},{"path":[4,40,2,22,1],"span":[793,17,27]},{"path":[4,40,2,22,3],"span":[793,30,32]},{"path":[4,40,2,23],"span":[795,2,59]},{"path":[4,40,2,23,4],"span":[795,2,10]},{"path":[4,40,2,23,6],"span":[795,11,36]},{"path":[4,40,2,23,1],"span":[795,37,53]},{"path":[4,40,2,23,3],"span":[795,56,58]},{"path":[4,40,2,24],"span":[797,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,40,2,24,4],"span":[797,2,10]},{"path":[4,40,2,24,5],"span":[797,11,16]},{"path":[4,40,2,24,1],"span":[797,17,28]},{"path":[4,40,2,24,3],"span":[797,31,33]},{"path":[4,41],"span":[800,0,833,1]},{"path":[4,41,1],"span":[800,8,17]},{"path":[4,41,2,0],"span":[801,2,15]},{"path":[4,41,2,0,5],"span":[801,2,7]},{"path":[4,41,2,0,1],"span":[801,8,10]},{"path":[4,41,2,0,3],"span":[801,13,14]},{"path":[4,41,2,1],"span":[803,2,21]},{"path":[4,41,2,1,5],"span":[803,2,8]},{"path":[4,41,2,1,1],"span":[803,9,16]},{"path":[4,41,2,1,3],"span":[803,19,20]},{"path":[4,41,2,2],"span":[805,2,33]},{"path":[4,41,2,2,4],"span":[805,2,10]},{"path":[4,41,2,2,5],"span":[805,11,17]},{"path":[4,41,2,2,1],"span":[805,18,28]},{"path":[4,41,2,2,3],"span":[805,31,32]},{"path":[4,41,2,3],"span":[806,2,32]},{"path":[4,41,2,3,4],"span":[806,2,10]},{"path":[4,41,2,3,5],"span":[806,11,17]},{"path":[4,41,2,3,1],"span":[806,18,26]},{"path":[4,41,2,3,3],"span":[806,29,31]},{"path":[4,41,2,4],"span":[807,2,38]},{"path":[4,41,2,4,4],"span":[807,2,10]},{"path":[4,41,2,4,5],"span":[807,11,17]},{"path":[4,41,2,4,1],"span":[807,18,33]},{"path":[4,41,2,4,3],"span":[807,36,37]},{"path":[4,41,2,5],"span":[809,2,33]},{"path":[4,41,2,5,4],"span":[809,2,10]},{"path":[4,41,2,5,5],"span":[809,11,16]},{"path":[4,41,2,5,1],"span":[809,17,28]},{"path":[4,41,2,5,3],"span":[809,31,32]},{"path":[4,41,2,6],"span":[810,2,29]},{"path":[4,41,2,6,4],"span":[810,2,10]},{"path":[4,41,2,6,5],"span":[810,11,16]},{"path":[4,41,2,6,1],"span":[810,17,24]},{"path":[4,41,2,6,3],"span":[810,27,28]},{"path":[4,41,2,7],"span":[811,2,31]},{"path":[4,41,2,7,4],"span":[811,2,10]},{"path":[4,41,2,7,5],"span":[811,11,16]},{"path":[4,41,2,7,1],"span":[811,17,26]},{"path":[4,41,2,7,3],"span":[811,29,30]},{"path":[4,41,2,8],"span":[813,2,54]},{"path":[4,41,2,8,4],"span":[813,2,10]},{"path":[4,41,2,8,6],"span":[813,11,36]},{"path":[4,41,2,8,1],"span":[813,37,49]},{"path":[4,41,2,8,3],"span":[813,52,53]},{"path":[4,41,2,9],"span":[814,2,51]},{"path":[4,41,2,9,4],"span":[814,2,10]},{"path":[4,41,2,9,6],"span":[814,11,36]},{"path":[4,41,2,9,1],"span":[814,37,45]},{"path":[4,41,2,9,3],"span":[814,48,50]},{"path":[4,41,2,10],"span":[815,2,51]},{"path":[4,41,2,10,4],"span":[815,2,10]},{"path":[4,41,2,10,6],"span":[815,11,36]},{"path":[4,41,2,10,1],"span":[815,37,45]},{"path":[4,41,2,10,3],"span":[815,48,50]},{"path":[4,41,2,11],"span":[816,2,52]},{"path":[4,41,2,11,4],"span":[816,2,10]},{"path":[4,41,2,11,6],"span":[816,11,36]},{"path":[4,41,2,11,1],"span":[816,37,46]},{"path":[4,41,2,11,3],"span":[816,49,51]},{"path":[4,41,2,12],"span":[817,2,43]},{"path":[4,41,2,12,4],"span":[817,2,10]},{"path":[4,41,2,12,5],"span":[817,11,17]},{"path":[4,41,2,12,1],"span":[817,18,37]},{"path":[4,41,2,12,3],"span":[817,40,42]},{"path":[4,41,2,13],"span":[818,2,38]},{"path":[4,41,2,13,4],"span":[818,2,10]},{"path":[4,41,2,13,5],"span":[818,11,17]},{"path":[4,41,2,13,1],"span":[818,18,32]},{"path":[4,41,2,13,3],"span":[818,35,37]},{"path":[4,41,2,14],"span":[819,2,40]},{"path":[4,41,2,14,4],"span":[819,2,10]},{"path":[4,41,2,14,5],"span":[819,11,17]},{"path":[4,41,2,14,1],"span":[819,18,34]},{"path":[4,41,2,14,3],"span":[819,37,39]},{"path":[4,41,2,15],"span":[820,2,36]},{"path":[4,41,2,15,4],"span":[820,2,10]},{"path":[4,41,2,15,5],"span":[820,11,17]},{"path":[4,41,2,15,1],"span":[820,18,30]},{"path":[4,41,2,15,3],"span":[820,33,35]},{"path":[4,41,2,16],"span":[821,2,43]},{"path":[4,41,2,16,4],"span":[821,2,10]},{"path":[4,41,2,16,5],"span":[821,11,17]},{"path":[4,41,2,16,1],"span":[821,18,37]},{"path":[4,41,2,16,3],"span":[821,40,42]},{"path":[4,41,2,17],"span":[822,2,35]},{"path":[4,41,2,17,4],"span":[822,2,10]},{"path":[4,41,2,17,5],"span":[822,11,17]},{"path":[4,41,2,17,1],"span":[822,18,29]},{"path":[4,41,2,17,3],"span":[822,32,34]},{"path":[4,41,2,18],"span":[823,2,35]},{"path":[4,41,2,18,4],"span":[823,2,10]},{"path":[4,41,2,18,5],"span":[823,11,17]},{"path":[4,41,2,18,1],"span":[823,18,29]},{"path":[4,41,2,18,3],"span":[823,32,34]},{"path":[4,41,2,19],"span":[824,2,37]},{"path":[4,41,2,19,4],"span":[824,2,10]},{"path":[4,41,2,19,5],"span":[824,11,17]},{"path":[4,41,2,19,1],"span":[824,18,31]},{"path":[4,41,2,19,3],"span":[824,34,36]},{"path":[4,41,2,20],"span":[825,2,40]},{"path":[4,41,2,20,4],"span":[825,2,10]},{"path":[4,41,2,20,5],"span":[825,11,17]},{"path":[4,41,2,20,1],"span":[825,18,34]},{"path":[4,41,2,20,3],"span":[825,37,39]},{"path":[4,41,2,21],"span":[826,2,39]},{"path":[4,41,2,21,4],"span":[826,2,10]},{"path":[4,41,2,21,5],"span":[826,11,17]},{"path":[4,41,2,21,1],"span":[826,18,33]},{"path":[4,41,2,21,3],"span":[826,36,38]},{"path":[4,41,2,22],"span":[828,2,32]},{"path":[4,41,2,22,4],"span":[828,2,10]},{"path":[4,41,2,22,5],"span":[828,11,17]},{"path":[4,41,2,22,1],"span":[828,18,26]},{"path":[4,41,2,22,3],"span":[828,29,31]},{"path":[4,41,2,23],"span":[830,2,59]},{"path":[4,41,2,23,4],"span":[830,2,10]},{"path":[4,41,2,23,6],"span":[830,11,36]},{"path":[4,41,2,23,1],"span":[830,37,53]},{"path":[4,41,2,23,3],"span":[830,56,58]},{"path":[4,41,2,24],"span":[832,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,41,2,24,4],"span":[832,2,10]},{"path":[4,41,2,24,5],"span":[832,11,16]},{"path":[4,41,2,24,1],"span":[832,17,28]},{"path":[4,41,2,24,3],"span":[832,31,33]},{"path":[4,42],"span":[835,0,865,1]},{"path":[4,42,1],"span":[835,8,23]},{"path":[4,42,2,0],"span":[836,2,15]},{"path":[4,42,2,0,5],"span":[836,2,7]},{"path":[4,42,2,0,1],"span":[836,8,10]},{"path":[4,42,2,0,3],"span":[836,13,14]},{"path":[4,42,2,1],"span":[837,2,21]},{"path":[4,42,2,1,5],"span":[837,2,8]},{"path":[4,42,2,1,1],"span":[837,9,16]},{"path":[4,42,2,1,3],"span":[837,19,20]},{"path":[4,42,2,2],"span":[839,2,33]},{"path":[4,42,2,2,4],"span":[839,2,10]},{"path":[4,42,2,2,5],"span":[839,11,17]},{"path":[4,42,2,2,1],"span":[839,18,28]},{"path":[4,42,2,2,3],"span":[839,31,32]},{"path":[4,42,2,3],"span":[840,2,36]},{"path":[4,42,2,3,4],"span":[840,2,10]},{"path":[4,42,2,3,5],"span":[840,11,17]},{"path":[4,42,2,3,1],"span":[840,18,31]},{"path":[4,42,2,3,3],"span":[840,34,35]},{"path":[4,42,2,4],"span":[841,2,33]},{"path":[4,42,2,4,4],"span":[841,2,10]},{"path":[4,42,2,4,5],"span":[841,11,17]},{"path":[4,42,2,4,1],"span":[841,18,28]},{"path":[4,42,2,4,3],"span":[841,31,32]},{"path":[4,42,2,5],"span":[842,2,30]},{"path":[4,42,2,5,4],"span":[842,2,10]},{"path":[4,42,2,5,5],"span":[842,11,17]},{"path":[4,42,2,5,1],"span":[842,18,25]},{"path":[4,42,2,5,3],"span":[842,28,29]},{"path":[4,42,2,6],"span":[843,2,31]},{"path":[4,42,2,6,4],"span":[843,2,10]},{"path":[4,42,2,6,5],"span":[843,11,17]},{"path":[4,42,2,6,1],"span":[843,18,26]},{"path":[4,42,2,6,3],"span":[843,29,30]},{"path":[4,42,2,7],"span":[845,2,29]},{"path":[4,42,2,7,4],"span":[845,2,10]},{"path":[4,42,2,7,5],"span":[845,11,16]},{"path":[4,42,2,7,1],"span":[845,17,24]},{"path":[4,42,2,7,3],"span":[845,27,28]},{"path":[4,42,2,8],"span":[846,2,31]},{"path":[4,42,2,8,4],"span":[846,2,10]},{"path":[4,42,2,8,5],"span":[846,11,16]},{"path":[4,42,2,8,1],"span":[846,17,26]},{"path":[4,42,2,8,3],"span":[846,29,30]},{"path":[4,42,2,9],"span":[847,2,32]},{"path":[4,42,2,9,4],"span":[847,2,10]},{"path":[4,42,2,9,5],"span":[847,11,16]},{"path":[4,42,2,9,1],"span":[847,17,26]},{"path":[4,42,2,9,3],"span":[847,29,31]},{"path":[4,42,2,10],"span":[849,2,31]},{"path":[4,42,2,10,4],"span":[849,2,10]},{"path":[4,42,2,10,5],"span":[849,11,17]},{"path":[4,42,2,10,1],"span":[849,18,25]},{"path":[4,42,2,10,3],"span":[849,28,30]},{"path":[4,42,2,11],"span":[850,2,35]},{"path":[4,42,2,11,4],"span":[850,2,10]},{"path":[4,42,2,11,5],"span":[850,11,17]},{"path":[4,42,2,11,1],"span":[850,18,29]},{"path":[4,42,2,11,3],"span":[850,32,34]},{"path":[4,42,2,12],"span":[852,2,55]},{"path":[4,42,2,12,4],"span":[852,2,10]},{"path":[4,42,2,12,6],"span":[852,11,36]},{"path":[4,42,2,12,1],"span":[852,37,49]},{"path":[4,42,2,12,3],"span":[852,52,54]},{"path":[4,42,2,13],"span":[853,2,51]},{"path":[4,42,2,13,4],"span":[853,2,10]},{"path":[4,42,2,13,6],"span":[853,11,36]},{"path":[4,42,2,13,1],"span":[853,37,45]},{"path":[4,42,2,13,3],"span":[853,48,50]},{"path":[4,42,2,14],"span":[854,2,51]},{"path":[4,42,2,14,4],"span":[854,2,10]},{"path":[4,42,2,14,6],"span":[854,11,36]},{"path":[4,42,2,14,1],"span":[854,37,45]},{"path":[4,42,2,14,3],"span":[854,48,50]},{"path":[4,42,2,15],"span":[855,2,52]},{"path":[4,42,2,15,4],"span":[855,2,10]},{"path":[4,42,2,15,6],"span":[855,11,36]},{"path":[4,42,2,15,1],"span":[855,37,46]},{"path":[4,42,2,15,3],"span":[855,49,51]},{"path":[4,42,2,16],"span":[856,2,43]},{"path":[4,42,2,16,4],"span":[856,2,10]},{"path":[4,42,2,16,5],"span":[856,11,17]},{"path":[4,42,2,16,1],"span":[856,18,37]},{"path":[4,42,2,16,3],"span":[856,40,42]},{"path":[4,42,2,17],"span":[858,2,33]},{"path":[4,42,2,17,4],"span":[858,2,10]},{"path":[4,42,2,17,5],"span":[858,11,15]},{"path":[4,42,2,17,1],"span":[858,16,27]},{"path":[4,42,2,17,3],"span":[858,30,32]},{"path":[4,42,2,18],"span":[859,2,37]},{"path":[4,42,2,18,4],"span":[859,2,10]},{"path":[4,42,2,18,5],"span":[859,11,15]},{"path":[4,42,2,18,1],"span":[859,16,31]},{"path":[4,42,2,18,3],"span":[859,34,36]},{"path":[4,42,2,19],"span":[860,2,37]},{"path":[4,42,2,19,4],"span":[860,2,10]},{"path":[4,42,2,19,5],"span":[860,11,15]},{"path":[4,42,2,19,1],"span":[860,16,31]},{"path":[4,42,2,19,3],"span":[860,34,36]},{"path":[4,42,2,20],"span":[862,2,59]},{"path":[4,42,2,20,4],"span":[862,2,10]},{"path":[4,42,2,20,6],"span":[862,11,36]},{"path":[4,42,2,20,1],"span":[862,37,53]},{"path":[4,42,2,20,3],"span":[862,56,58]},{"path":[4,42,2,21],"span":[864,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,42,2,21,4],"span":[864,2,10]},{"path":[4,42,2,21,5],"span":[864,11,16]},{"path":[4,42,2,21,1],"span":[864,17,28]},{"path":[4,42,2,21,3],"span":[864,31,34]},{"path":[4,43],"span":[867,0,923,1]},{"path":[4,43,1],"span":[867,8,22]},{"path":[4,43,2,0],"span":[868,2,16]},{"path":[4,43,2,0,5],"span":[868,2,7]},{"path":[4,43,2,0,1],"span":[868,9,11]},{"path":[4,43,2,0,3],"span":[868,14,15]},{"path":[4,43,2,1],"span":[870,2,19]},{"path":[4,43,2,1,5],"span":[870,2,8]},{"path":[4,43,2,1,1],"span":[870,9,14]},{"path":[4,43,2,1,3],"span":[870,17,18]},{"path":[4,43,2,2],"span":[871,2,32]},{"path":[4,43,2,2,4],"span":[871,2,10]},{"path":[4,43,2,2,5],"span":[871,11,17]},{"path":[4,43,2,2,1],"span":[871,18,27]},{"path":[4,43,2,2,3],"span":[871,30,31]},{"path":[4,43,2,3],"span":[872,2,29]},{"path":[4,43,2,3,4],"span":[872,2,10]},{"path":[4,43,2,3,5],"span":[872,11,16]},{"path":[4,43,2,3,1],"span":[872,17,24]},{"path":[4,43,2,3,3],"span":[872,27,28]},{"path":[4,43,2,4],"span":[874,2,31]},{"path":[4,43,2,4,4],"span":[874,2,10]},{"path":[4,43,2,4,5],"span":[874,11,16]},{"path":[4,43,2,4,1],"span":[874,17,26]},{"path":[4,43,2,4,3],"span":[874,29,30]},{"path":[4,43,2,5],"span":[875,2,30]},{"path":[4,43,2,5,4],"span":[875,2,10]},{"path":[4,43,2,5,5],"span":[875,11,15]},{"path":[4,43,2,5,1],"span":[875,16,25]},{"path":[4,43,2,5,3],"span":[875,28,29]},{"path":[4,43,2,6],"span":[876,2,36]},{"path":[4,43,2,6,4],"span":[876,2,10]},{"path":[4,43,2,6,5],"span":[876,11,17]},{"path":[4,43,2,6,1],"span":[876,18,31]},{"path":[4,43,2,6,3],"span":[876,34,35]},{"path":[4,43,2,7],"span":[877,2,35]},{"path":[4,43,2,7,4],"span":[877,2,10]},{"path":[4,43,2,7,5],"span":[877,11,17]},{"path":[4,43,2,7,1],"span":[877,18,30]},{"path":[4,43,2,7,3],"span":[877,33,34]},{"path":[4,43,2,8],"span":[879,2,33]},{"path":[4,43,2,8,4],"span":[879,2,10]},{"path":[4,43,2,8,5],"span":[879,11,17]},{"path":[4,43,2,8,1],"span":[879,18,27]},{"path":[4,43,2,8,3],"span":[879,30,32]},{"path":[4,43,2,9],"span":[880,2,38]},{"path":[4,43,2,9,4],"span":[880,2,10]},{"path":[4,43,2,9,5],"span":[880,11,17]},{"path":[4,43,2,9,1],"span":[880,18,32]},{"path":[4,43,2,9,3],"span":[880,35,37]},{"path":[4,43,2,10],"span":[881,2,36]},{"path":[4,43,2,10,4],"span":[881,2,10]},{"path":[4,43,2,10,5],"span":[881,11,17]},{"path":[4,43,2,10,1],"span":[881,18,30]},{"path":[4,43,2,10,3],"span":[881,33,35]},{"path":[4,43,2,11],"span":[882,2,40]},{"path":[4,43,2,11,4],"span":[882,2,10]},{"path":[4,43,2,11,5],"span":[882,11,17]},{"path":[4,43,2,11,1],"span":[882,18,34]},{"path":[4,43,2,11,3],"span":[882,37,39]},{"path":[4,43,2,12],"span":[883,2,31]},{"path":[4,43,2,12,4],"span":[883,2,10]},{"path":[4,43,2,12,5],"span":[883,11,17]},{"path":[4,43,2,12,1],"span":[883,18,25]},{"path":[4,43,2,12,3],"span":[883,28,30]},{"path":[4,43,2,13],"span":[884,2,36]},{"path":[4,43,2,13,4],"span":[884,2,10]},{"path":[4,43,2,13,5],"span":[884,11,17]},{"path":[4,43,2,13,1],"span":[884,18,30]},{"path":[4,43,2,13,3],"span":[884,33,35]},{"path":[4,43,2,14],"span":[885,2,35]},{"path":[4,43,2,14,4],"span":[885,2,10]},{"path":[4,43,2,14,5],"span":[885,11,16]},{"path":[4,43,2,14,1],"span":[885,17,29]},{"path":[4,43,2,14,3],"span":[885,32,34]},{"path":[4,43,2,15],"span":[886,2,29]},{"path":[4,43,2,15,4],"span":[886,2,10]},{"path":[4,43,2,15,5],"span":[886,11,17]},{"path":[4,43,2,15,1],"span":[886,18,23]},{"path":[4,43,2,15,3],"span":[886,26,28]},{"path":[4,43,2,16],"span":[887,2,33]},{"path":[4,43,2,16,4],"span":[887,2,10]},{"path":[4,43,2,16,5],"span":[887,11,17]},{"path":[4,43,2,16,1],"span":[887,18,27]},{"path":[4,43,2,16,3],"span":[887,30,32]},{"path":[4,43,2,17],"span":[888,2,32]},{"path":[4,43,2,17,4],"span":[888,2,10]},{"path":[4,43,2,17,5],"span":[888,11,17]},{"path":[4,43,2,17,1],"span":[888,18,26]},{"path":[4,43,2,17,3],"span":[888,29,31]},{"path":[4,43,2,18],"span":[889,2,35]},{"path":[4,43,2,18,4],"span":[889,2,10]},{"path":[4,43,2,18,5],"span":[889,11,17]},{"path":[4,43,2,18,1],"span":[889,18,29]},{"path":[4,43,2,18,3],"span":[889,32,34]},{"path":[4,43,2,19],"span":[891,2,36]},{"path":[4,43,2,19,4],"span":[891,2,10]},{"path":[4,43,2,19,5],"span":[891,11,17]},{"path":[4,43,2,19,1],"span":[891,18,30]},{"path":[4,43,2,19,3],"span":[891,33,35]},{"path":[4,43,2,20],"span":[892,2,38]},{"path":[4,43,2,20,4],"span":[892,2,10]},{"path":[4,43,2,20,5],"span":[892,11,16]},{"path":[4,43,2,20,1],"span":[892,17,32]},{"path":[4,43,2,20,3],"span":[892,35,37]},{"path":[4,43,2,21],"span":[893,2,47]},{"path":[4,43,2,21,4],"span":[893,2,10]},{"path":[4,43,2,21,5],"span":[893,11,16]},{"path":[4,43,2,21,1],"span":[893,17,41]},{"path":[4,43,2,21,3],"span":[893,44,46]},{"path":[4,43,2,22],"span":[894,2,30]},{"path":[4,43,2,22,4],"span":[894,2,10]},{"path":[4,43,2,22,5],"span":[894,11,16]},{"path":[4,43,2,22,1],"span":[894,17,24]},{"path":[4,43,2,22,3],"span":[894,27,29]},{"path":[4,43,2,23],"span":[895,2,29]},{"path":[4,43,2,23,4],"span":[895,2,10]},{"path":[4,43,2,23,5],"span":[895,11,16]},{"path":[4,43,2,23,1],"span":[895,17,23]},{"path":[4,43,2,23,3],"span":[895,26,28]},{"path":[4,43,2,24],"span":[896,2,29]},{"path":[4,43,2,24,4],"span":[896,2,10]},{"path":[4,43,2,24,5],"span":[896,11,16]},{"path":[4,43,2,24,1],"span":[896,17,23]},{"path":[4,43,2,24,3],"span":[896,26,28]},{"path":[4,43,2,25],"span":[897,2,36]},{"path":[4,43,2,25,4],"span":[897,2,10]},{"path":[4,43,2,25,5],"span":[897,11,17]},{"path":[4,43,2,25,1],"span":[897,18,30]},{"path":[4,43,2,25,3],"span":[897,33,35]},{"path":[4,43,2,26],"span":[898,2,39]},{"path":[4,43,2,26,4],"span":[898,2,10]},{"path":[4,43,2,26,5],"span":[898,11,16]},{"path":[4,43,2,26,1],"span":[898,17,33]},{"path":[4,43,2,26,3],"span":[898,36,38]},{"path":[4,43,2,27],"span":[899,2,44]},{"path":[4,43,2,27,4],"span":[899,2,10]},{"path":[4,43,2,27,5],"span":[899,11,17]},{"path":[4,43,2,27,1],"span":[899,18,38]},{"path":[4,43,2,27,3],"span":[899,41,43]},{"path":[4,43,2,28],"span":[901,2,36]},{"path":[4,43,2,28,4],"span":[901,2,10]},{"path":[4,43,2,28,5],"span":[901,11,17]},{"path":[4,43,2,28,1],"span":[901,18,30]},{"path":[4,43,2,28,3],"span":[901,33,35]},{"path":[4,43,2,29],"span":[902,2,37]},{"path":[4,43,2,29,4],"span":[902,2,10]},{"path":[4,43,2,29,5],"span":[902,11,16]},{"path":[4,43,2,29,1],"span":[902,17,31]},{"path":[4,43,2,29,3],"span":[902,34,36]},{"path":[4,43,2,30],"span":[903,2,42]},{"path":[4,43,2,30,4],"span":[903,2,10]},{"path":[4,43,2,30,5],"span":[903,11,17]},{"path":[4,43,2,30,1],"span":[903,18,36]},{"path":[4,43,2,30,3],"span":[903,39,41]},{"path":[4,43,2,31],"span":[904,2,38]},{"path":[4,43,2,31,4],"span":[904,2,10]},{"path":[4,43,2,31,5],"span":[904,11,17]},{"path":[4,43,2,31,1],"span":[904,18,32]},{"path":[4,43,2,31,3],"span":[904,35,37]},{"path":[4,43,2,32],"span":[905,2,42]},{"path":[4,43,2,32,4],"span":[905,2,10]},{"path":[4,43,2,32,5],"span":[905,11,17]},{"path":[4,43,2,32,1],"span":[905,18,36]},{"path":[4,43,2,32,3],"span":[905,39,41]},{"path":[4,43,2,33],"span":[906,2,39]},{"path":[4,43,2,33,4],"span":[906,2,10]},{"path":[4,43,2,33,5],"span":[906,11,17]},{"path":[4,43,2,33,1],"span":[906,18,33]},{"path":[4,43,2,33,3],"span":[906,36,38]},{"path":[4,43,2,34],"span":[907,2,34]},{"path":[4,43,2,34,4],"span":[907,2,10]},{"path":[4,43,2,34,5],"span":[907,11,17]},{"path":[4,43,2,34,1],"span":[907,18,28]},{"path":[4,43,2,34,3],"span":[907,31,33]},{"path":[4,43,2,35],"span":[908,2,34]},{"path":[4,43,2,35,4],"span":[908,2,10]},{"path":[4,43,2,35,5],"span":[908,11,17]},{"path":[4,43,2,35,1],"span":[908,18,28]},{"path":[4,43,2,35,3],"span":[908,31,33]},{"path":[4,43,2,36],"span":[909,2,33]},{"path":[4,43,2,36,4],"span":[909,2,10]},{"path":[4,43,2,36,5],"span":[909,11,17]},{"path":[4,43,2,36,1],"span":[909,18,27]},{"path":[4,43,2,36,3],"span":[909,30,32]},{"path":[4,43,2,37],"span":[911,2,33]},{"path":[4,43,2,37,4],"span":[911,2,10]},{"path":[4,43,2,37,5],"span":[911,11,15]},{"path":[4,43,2,37,1],"span":[911,16,27]},{"path":[4,43,2,37,3],"span":[911,30,32]},{"path":[4,43,2,38],"span":[912,2,36]},{"path":[4,43,2,38,4],"span":[912,2,10]},{"path":[4,43,2,38,5],"span":[912,11,15]},{"path":[4,43,2,38,1],"span":[912,16,30]},{"path":[4,43,2,38,3],"span":[912,33,35]},{"path":[4,43,2,39],"span":[913,2,38]},{"path":[4,43,2,39,4],"span":[913,2,10]},{"path":[4,43,2,39,5],"span":[913,11,15]},{"path":[4,43,2,39,1],"span":[913,16,32]},{"path":[4,43,2,39,3],"span":[913,35,37]},{"path":[4,43,2,40],"span":[914,2,34]},{"path":[4,43,2,40,4],"span":[914,2,10]},{"path":[4,43,2,40,5],"span":[914,11,15]},{"path":[4,43,2,40,1],"span":[914,16,28]},{"path":[4,43,2,40,3],"span":[914,31,33]},{"path":[4,43,2,41],"span":[915,2,33]},{"path":[4,43,2,41,4],"span":[915,2,10]},{"path":[4,43,2,41,5],"span":[915,11,15]},{"path":[4,43,2,41,1],"span":[915,16,27]},{"path":[4,43,2,41,3],"span":[915,30,32]},{"path":[4,43,2,42],"span":[916,2,38]},{"path":[4,43,2,42,4],"span":[916,2,10]},{"path":[4,43,2,42,5],"span":[916,11,15]},{"path":[4,43,2,42,1],"span":[916,16,32]},{"path":[4,43,2,42,3],"span":[916,35,37]},{"path":[4,43,2,43],"span":[917,2,36]},{"path":[4,43,2,43,4],"span":[917,2,10]},{"path":[4,43,2,43,5],"span":[917,11,15]},{"path":[4,43,2,43,1],"span":[917,16,30]},{"path":[4,43,2,43,3],"span":[917,33,35]},{"path":[4,43,2,44],"span":[919,2,59]},{"path":[4,43,2,44,4],"span":[919,2,10]},{"path":[4,43,2,44,6],"span":[919,11,36]},{"path":[4,43,2,44,1],"span":[919,37,53]},{"path":[4,43,2,44,3],"span":[919,56,58]},{"path":[4,43,2,45],"span":[921,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,43,2,45,4],"span":[921,2,10]},{"path":[4,43,2,45,5],"span":[921,11,16]},{"path":[4,43,2,45,1],"span":[921,17,28]},{"path":[4,43,2,45,3],"span":[921,31,34]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|
|
1
|
+
{"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,157,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,67]},{"path":[8,11],"span":[35,0,67]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,41]},{"path":[8,8],"span":[37,0,41]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[4,0],"span":[124,0,157,1],"leadingComments":" `Any` contains an arbitrary serialized protocol buffer message along with a\n URL that describes the type of the serialized message.\n\n Protobuf library provides support to pack/unpack Any values in the form\n of utility functions or additional generated methods of the Any type.\n\n Example 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\n Example 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\n The pack methods provided by protobuf library will by default use\n 'type.googleapis.com/full.type.name' as the type URL and the unpack\n methods only use the fully qualified type name after the last '/'\n in the type URL, for example \"foo.bar.com/x/y.z\" will yield type\n name \"y.z\".\n\n\n JSON\n ====\n The JSON representation of an `Any` value uses the regular\n representation of the deserialized, embedded message, with an\n additional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": <string>,\n \"lastName\": <string>\n }\n\n If the embedded message type is well-known and has a custom JSON\n representation, that representation will be embedded adding a field\n `value` which holds the custom JSON in addition to the `@type`\n field. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }\n\n"},{"path":[4,0,1],"span":[124,8,11]},{"path":[4,0,2,0],"span":[153,2,22],"leadingComments":" A URL/resource name that uniquely identifies the type of the serialized\n protocol buffer message. This string must contain at least\n one \"/\" character. The last segment of the URL's path must represent\n the fully qualified name of the type (as in\n `path/google.protobuf.Duration`). The name should be in a canonical form\n (e.g., leading \".\" is not accepted).\n\n In practice, teams usually precompile into the binary all types that they\n expect it to use in the context of Any. However, for URLs which use the\n scheme `http`, `https`, or no scheme, one can optionally set up a type\n server that maps type URLs to message definitions as follows:\n\n * If no scheme is provided, `https` is assumed.\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n * Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\n Note: this functionality is not currently available in the official\n protobuf release, and it is not used for type URLs beginning with\n type.googleapis.com.\n\n Schemes other than `http`, `https` (or the empty scheme) might be\n used with implementation specific semantics.\n\n"},{"path":[4,0,2,0,5],"span":[153,2,8]},{"path":[4,0,2,0,1],"span":[153,9,17]},{"path":[4,0,2,0,3],"span":[153,20,21]},{"path":[4,0,2,1],"span":[156,2,18],"leadingComments":" Must be a valid serialized protocol buffer of the above specified type.\n"},{"path":[4,0,2,1,5],"span":[156,2,7]},{"path":[4,0,2,1,1],"span":[156,8,13]},{"path":[4,0,2,1,3],"span":[156,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.proto"],"messageType":[{"name":"GetEntityRequest","field":[{"name":"entity_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"entityPath"}]},{"name":"GetEntityResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"entity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","oneofIndex":1,"jsonName":"entity","proto3Optional":true},{"name":"related","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}],"oneofDecl":[{"name":"_error_description"},{"name":"_entity"}]},{"name":"ListEntityRequest","field":[{"name":"filter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"filter"}]},{"name":"ListEntityResponse","field":[{"name":"entity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"entity"},{"name":"related","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}]},{"name":"CatalogLookupRequest","field":[{"name":"brand_id","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"brandId"},{"name":"model_id","number":2,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"modelId"},{"name":"os_id","number":3,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"osId"},{"name":"sw_id","number":4,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"swId"},{"name":"monitor_id","number":5,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"monitorId"},{"name":"only_requested","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"onlyRequested","proto3Optional":true}],"oneofDecl":[{"name":"_only_requested"}]},{"name":"CatalogLookupResponse","field":[{"name":"brand","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","jsonName":"brand"},{"name":"model","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","jsonName":"model"},{"name":"os","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","jsonName":"os"},{"name":"sw","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","jsonName":"sw"},{"name":"monitor","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","jsonName":"monitor"}]},{"name":"EntityPath","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"source_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceId","proto3Optional":true},{"name":"source_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceType","proto3Optional":true},{"name":"entity_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"entityType","proto3Optional":true},{"name":"entity_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"entityId","proto3Optional":true}],"oneofDecl":[{"name":"_source_id"},{"name":"_source_type"},{"name":"_entity_type"},{"name":"_entity_id"}]},{"name":"Entity","field":[{"name":"asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Asset","oneofIndex":0,"jsonName":"asset"}],"oneofDecl":[{"name":"entity"}]},{"name":"Asset","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"id"},{"name":"last_synced","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"first_seen","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"firstSeen"},{"name":"last_updated","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastUpdated"},{"name":"last_enriched","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastEnriched"},{"name":"unique_key","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"uniqueKey","proto3Optional":true},{"name":"tag","number":14,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"},{"name":"relation","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Relation","jsonName":"relation"},{"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":1,"jsonName":"hw","proto3Optional":true},{"name":"deprecated_os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.DeprecatedOperatingSystemInfo","oneofIndex":2,"jsonName":"deprecatedOs","proto3Optional":true},{"name":"os","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":3,"jsonName":"os","proto3Optional":true},{"name":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":4,"jsonName":"softwareInventory","proto3Optional":true},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":5,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":6,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"os_patch","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"processor","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"},{"name":"chassis","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Chassis","oneofIndex":7,"jsonName":"chassis","proto3Optional":true},{"name":"memory","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":8,"jsonName":"memory","proto3Optional":true},{"name":"motherboard","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":9,"jsonName":"motherboard","proto3Optional":true},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":10,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":11,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_unique_key"},{"name":"_hw"},{"name":"_deprecated_os"},{"name":"_os"},{"name":"_software_inventory"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"},{"name":"_chassis"},{"name":"_memory"},{"name":"_motherboard"},{"name":"_ot_module"},{"name":"_cloud"}]},{"name":"Tag","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"value","proto3Optional":true}],"oneofDecl":[{"name":"_value"}]},{"name":"Relation","field":[{"name":"from","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":0,"jsonName":"from","proto3Optional":true},{"name":"to","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":1,"jsonName":"to","proto3Optional":true},{"name":"start","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"start"},{"name":"end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":2,"jsonName":"end","proto3Optional":true},{"name":"name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"tag","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"}],"oneofDecl":[{"name":"_from"},{"name":"_to"},{"name":"_end"}]},{"name":"CloudEntity","field":[{"name":"body","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"body"}]},{"name":"OtModule","field":[{"name":"rack_number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"rackNumber"},{"name":"rack_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rackName"},{"name":"rack_size","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"rackSize"},{"name":"slot","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"slot"},{"name":"slot_width","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"slotWidth"},{"name":"is_main_module","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMainModule"},{"name":"component_type","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"componentType","proto3Optional":true},{"name":"part_number","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"partNumber","proto3Optional":true},{"name":"ext_info","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModuleExtInfo","jsonName":"extInfo"}],"oneofDecl":[{"name":"_component_type"},{"name":"_part_number"}]},{"name":"OtModuleExtInfo","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"AssetType","field":[{"name":"ls_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsName"},{"name":"ls_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"lsId"},{"name":"fing_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fingType","proto3Optional":true},{"name":"sub_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"subType","proto3Optional":true}],"oneofDecl":[{"name":"_fing_type"},{"name":"_sub_type"}]},{"name":"CoreFields","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetType","jsonName":"type"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"domain","proto3Optional":true},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"ipAddress","proto3Optional":true},{"name":"serial","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serial","proto3Optional":true},{"name":"mac","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"mac","proto3Optional":true},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"macVendor","proto3Optional":true},{"name":"sensor_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"sensorId","proto3Optional":true}],"oneofDecl":[{"name":"_domain"},{"name":"_ip_address"},{"name":"_serial"},{"name":"_mac"},{"name":"_mac_vendor"},{"name":"_sensor_id"}]},{"name":"HardwareInfo","field":[{"name":"type_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"typeId","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"model_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"modelId","proto3Optional":true},{"name":"family_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isFamily","proto3Optional":true},{"name":"serial","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"serial","proto3Optional":true},{"name":"type_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":11,"jsonName":"rank","proto3Optional":true},{"name":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":12,"jsonName":"spec","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":13,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":14,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":15,"jsonName":"catalogFamily","proto3Optional":true}],"oneofDecl":[{"name":"_type_id"},{"name":"_make_id"},{"name":"_model_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_serial"},{"name":"_type_name"},{"name":"_make_name"},{"name":"_model_name"},{"name":"_family_name"},{"name":"_cpe"},{"name":"_rank"},{"name":"_spec"},{"name":"_catalog_brand"},{"name":"_catalog_model"},{"name":"_catalog_family"}]},{"name":"SpecHardwareInfo","field":[{"name":"architecture","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"architecture","proto3Optional":true},{"name":"model","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"model","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"}]},{"name":"NormalizedOperatingSystem","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"name","proto3Optional":true},{"name":"version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"version","proto3Optional":true},{"name":"build","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"rank","proto3Optional":true},{"name":"catalog_brand","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":9,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_os","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","oneofIndex":10,"jsonName":"catalogOs","proto3Optional":true}],"oneofDecl":[{"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":"OperatingSystem","field":[{"name":"normalized","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NormalizedOperatingSystem","oneofIndex":0,"jsonName":"normalized","proto3Optional":true},{"name":"architecture","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"architecture","proto3Optional":true},{"name":"build_environment_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"buildEnvironmentType","proto3Optional":true},{"name":"install_date","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":3,"jsonName":"installDate","proto3Optional":true},{"name":"is_debug_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isDebugBuild","proto3Optional":true},{"name":"kernel_caption","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"kernelCaption","proto3Optional":true},{"name":"kernel_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"kernelName","proto3Optional":true},{"name":"kernel_release","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"kernelRelease","proto3Optional":true},{"name":"max_licensed_users","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"maxLicensedUsers","proto3Optional":true},{"name":"max_process_memory_size","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"maxProcessMemorySize","proto3Optional":true},{"name":"organization","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"organization","proto3Optional":true},{"name":"os_caption","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"osCaption","proto3Optional":true},{"name":"os_directory","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"osDirectory","proto3Optional":true},{"name":"os_drive_letter","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"osDriveLetter","proto3Optional":true},{"name":"os_edition","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"osEdition","proto3Optional":true},{"name":"os_name","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"osName","proto3Optional":true},{"name":"os_physical_partition","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"osPhysicalPartition","proto3Optional":true},{"name":"os_type","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"osType","proto3Optional":true},{"name":"os_serial_number","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"osSerialNumber","proto3Optional":true},{"name":"os_system_directory","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"osSystemDirectory","proto3Optional":true},{"name":"other_type_description","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"otherTypeDescription","proto3Optional":true},{"name":"product_suite","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":21,"jsonName":"productSuite","proto3Optional":true},{"name":"registered_user","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"registeredUser","proto3Optional":true},{"name":"service_pack_name","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":23,"jsonName":"servicePackName","proto3Optional":true},{"name":"sp_major_version","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":24,"jsonName":"spMajorVersion","proto3Optional":true},{"name":"sp_minor_version","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"spMinorVersion","proto3Optional":true},{"name":"suite_mask","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":26,"jsonName":"suiteMask","proto3Optional":true},{"name":"system_role","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":27,"jsonName":"systemRole","proto3Optional":true},{"name":"uuid","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":28,"jsonName":"uuid","proto3Optional":true},{"name":"version","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"version","proto3Optional":true},{"name":"version_full","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":30,"jsonName":"versionFull","proto3Optional":true},{"name":"version_major","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":31,"jsonName":"versionMajor","proto3Optional":true},{"name":"version_minor","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":32,"jsonName":"versionMinor","proto3Optional":true},{"name":"version_full_3rd_digit","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"versionFull3rdDigit","proto3Optional":true},{"name":"version_full_4th_digit","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"versionFull4thDigit","proto3Optional":true},{"name":"visible_memory","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":35,"jsonName":"visibleMemory","proto3Optional":true}],"oneofDecl":[{"name":"_normalized"},{"name":"_architecture"},{"name":"_build_environment_type"},{"name":"_install_date"},{"name":"_is_debug_build"},{"name":"_kernel_caption"},{"name":"_kernel_name"},{"name":"_kernel_release"},{"name":"_max_licensed_users"},{"name":"_max_process_memory_size"},{"name":"_organization"},{"name":"_os_caption"},{"name":"_os_directory"},{"name":"_os_drive_letter"},{"name":"_os_edition"},{"name":"_os_name"},{"name":"_os_physical_partition"},{"name":"_os_type"},{"name":"_os_serial_number"},{"name":"_os_system_directory"},{"name":"_other_type_description"},{"name":"_product_suite"},{"name":"_registered_user"},{"name":"_service_pack_name"},{"name":"_sp_major_version"},{"name":"_sp_minor_version"},{"name":"_suite_mask"},{"name":"_system_role"},{"name":"_uuid"},{"name":"_version"},{"name":"_version_full"},{"name":"_version_major"},{"name":"_version_minor"},{"name":"_version_full_3rd_digit"},{"name":"_version_full_4th_digit"},{"name":"_visible_memory"}]},{"name":"DeprecatedOperatingSystemInfo","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true},{"name":"build","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"rank","proto3Optional":true},{"name":"windows","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.DeprecatedWindowsOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_name"},{"name":"_version"},{"name":"_build"},{"name":"_fw_version"},{"name":"_cpe"},{"name":"_fw_cpe"},{"name":"_rank"}]},{"name":"OperatingSystemPatch","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"type","proto3Optional":true},{"name":"install_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"installDate","proto3Optional":true},{"name":"install_by","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"installBy","proto3Optional":true},{"name":"comments","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"comments","proto3Optional":true},{"name":"windows_service_pack","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"windowsServicePack","proto3Optional":true}],"oneofDecl":[{"name":"_type"},{"name":"_install_date"},{"name":"_install_by"},{"name":"_comments"},{"name":"_windows_service_pack"}]},{"name":"DeprecatedWindowsOperatingSystemInfo","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"service_pack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"servicePack","proto3Optional":true},{"name":"build","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"build","proto3Optional":true},{"name":"version_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"versionName","proto3Optional":true},{"name":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"osCode","proto3Optional":true},{"name":"boot_device","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"bootDevice","proto3Optional":true},{"name":"build_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"buildNumber","proto3Optional":true},{"name":"build_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"buildType","proto3Optional":true},{"name":"caption","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"caption","proto3Optional":true},{"name":"code_set","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"codeSet","proto3Optional":true},{"name":"country_code","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"countryCode","proto3Optional":true},{"name":"csd_version","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"csdVersion","proto3Optional":true},{"name":"current_timezone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"currentTimezone","proto3Optional":true},{"name":"debug","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"debug","proto3Optional":true},{"name":"description","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"description","proto3Optional":true},{"name":"foreground_application_boost","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":18,"jsonName":"foregroundApplicationBoost","proto3Optional":true},{"name":"install_date","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":19,"jsonName":"installDate","proto3Optional":true},{"name":"max_process_memory_size","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":20,"jsonName":"maxProcessMemorySize","proto3Optional":true},{"name":"number_of_licensed_users","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":21,"jsonName":"numberOfLicensedUsers","proto3Optional":true},{"name":"organization","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"organization","proto3Optional":true},{"name":"os_language","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":23,"jsonName":"osLanguage","proto3Optional":true},{"name":"os_product_suite","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":24,"jsonName":"osProductSuite","proto3Optional":true},{"name":"os_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"osType","proto3Optional":true},{"name":"plus_product_id","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"plusProductId","proto3Optional":true},{"name":"plus_version_number","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"plusVersionNumber","proto3Optional":true},{"name":"registered_user","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":28,"jsonName":"registeredUser","proto3Optional":true},{"name":"serial_number","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"serialNumber","proto3Optional":true},{"name":"service_pack_major_version","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":30,"jsonName":"servicePackMajorVersion","proto3Optional":true},{"name":"service_pack_minor_version","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":31,"jsonName":"servicePackMinorVersion","proto3Optional":true},{"name":"size_stored_in_paging_files","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":32,"jsonName":"sizeStoredInPagingFiles","proto3Optional":true},{"name":"status","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"status","proto3Optional":true},{"name":"system_device","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"systemDevice","proto3Optional":true},{"name":"system_directory","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":35,"jsonName":"systemDirectory","proto3Optional":true},{"name":"total_virtual_memory_size","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":36,"jsonName":"totalVirtualMemorySize","proto3Optional":true},{"name":"total_visible_memory_size","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":37,"jsonName":"totalVisibleMemorySize","proto3Optional":true},{"name":"windows_directory","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":38,"jsonName":"windowsDirectory","proto3Optional":true},{"name":"total_swap_space_size","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":39,"jsonName":"totalSwapSpaceSize","proto3Optional":true},{"name":"large_system_cache","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":40,"jsonName":"largeSystemCache","proto3Optional":true},{"name":"other_type_description","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":41,"jsonName":"otherTypeDescription","proto3Optional":true},{"name":"product_type","number":47,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":42,"jsonName":"productType","proto3Optional":true},{"name":"suite_mask","number":48,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":43,"jsonName":"suiteMask","proto3Optional":true},{"name":"system_drive","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":44,"jsonName":"systemDrive","proto3Optional":true},{"name":"encryption_level","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":45,"jsonName":"encryptionLevel","proto3Optional":true},{"name":"data_execution_prevention32_bit_applications","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":46,"jsonName":"dataExecutionPrevention32BitApplications","proto3Optional":true},{"name":"is_data_execution_prevention_available","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":47,"jsonName":"isDataExecutionPreventionAvailable","proto3Optional":true},{"name":"data_execution_prevention_drivers","number":53,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":48,"jsonName":"dataExecutionPreventionDrivers","proto3Optional":true},{"name":"data_execution_prevention_support_policy","number":54,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":49,"jsonName":"dataExecutionPreventionSupportPolicy","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"},{"name":"_boot_device"},{"name":"_build_number"},{"name":"_build_type"},{"name":"_caption"},{"name":"_code_set"},{"name":"_country_code"},{"name":"_csd_version"},{"name":"_current_timezone"},{"name":"_debug"},{"name":"_description"},{"name":"_foreground_application_boost"},{"name":"_install_date"},{"name":"_max_process_memory_size"},{"name":"_number_of_licensed_users"},{"name":"_organization"},{"name":"_os_language"},{"name":"_os_product_suite"},{"name":"_os_type"},{"name":"_plus_product_id"},{"name":"_plus_version_number"},{"name":"_registered_user"},{"name":"_serial_number"},{"name":"_service_pack_major_version"},{"name":"_service_pack_minor_version"},{"name":"_size_stored_in_paging_files"},{"name":"_status"},{"name":"_system_device"},{"name":"_system_directory"},{"name":"_total_virtual_memory_size"},{"name":"_total_visible_memory_size"},{"name":"_windows_directory"},{"name":"_total_swap_space_size"},{"name":"_large_system_cache"},{"name":"_other_type_description"},{"name":"_product_type"},{"name":"_suite_mask"},{"name":"_system_drive"},{"name":"_encryption_level"},{"name":"_data_execution_prevention32_bit_applications"},{"name":"_is_data_execution_prevention_available"},{"name":"_data_execution_prevention_drivers"},{"name":"_data_execution_prevention_support_policy"}]},{"name":"NetworkInterfaces","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"interface","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterface","jsonName":"interface"}]},{"name":"NetworkInterface","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type"},{"name":"sub_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subType"},{"name":"id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"id","proto3Optional":true},{"name":"mac","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"mac","proto3Optional":true},{"name":"dhcp_enabled","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"dhcpEnabled","proto3Optional":true},{"name":"dhcp_server_ip","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"dhcpServerIp","proto3Optional":true},{"name":"ip","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetIpAddress","jsonName":"ip"},{"name":"gateway_ip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"gatewayIp","proto3Optional":true},{"name":"gateway_mac","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"gatewayMac","proto3Optional":true},{"name":"dns_server","number":11,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"dnsServer"},{"name":"dns_host_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dnsHostName","proto3Optional":true},{"name":"dns_domain_suffix_search_order","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"dnsDomainSuffixSearchOrder","proto3Optional":true},{"name":"service_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"serviceName","proto3Optional":true},{"name":"database_path","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"databasePath","proto3Optional":true}],"oneofDecl":[{"name":"_id"},{"name":"_mac"},{"name":"_dhcp_enabled"},{"name":"_dhcp_server_ip"},{"name":"_gateway_ip"},{"name":"_gateway_mac"},{"name":"_dns_host_name"},{"name":"_dns_domain_suffix_search_order"},{"name":"_service_name"},{"name":"_database_path"}]},{"name":"NetIpAddress","field":[{"name":"ip","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ip"},{"name":"subnet","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subnet"}]},{"name":"Processor","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"address_sizes","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"addressSizes","proto3Optional":true},{"name":"address_width","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"addressWidth","proto3Optional":true},{"name":"architecture","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"architecture","proto3Optional":true},{"name":"availability","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"availability","proto3Optional":true},{"name":"bogo_mips","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":4,"jsonName":"bogoMips","proto3Optional":true},{"name":"byte_order","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"byteOrder","proto3Optional":true},{"name":"caption","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"caption","proto3Optional":true},{"name":"current_clock_speed","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentClockSpeed","proto3Optional":true},{"name":"data_width","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"deviceId","proto3Optional":true},{"name":"external_clock_mhz","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"externalClockMhz","proto3Optional":true},{"name":"family","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":11,"jsonName":"family","proto3Optional":true},{"name":"hypervisor_vendor","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"hypervisorVendor","proto3Optional":true},{"name":"l1d_cache_size_kb","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"l1dCacheSizeKb","proto3Optional":true},{"name":"l1i_cache_size_kb","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"l1iCacheSizeKb","proto3Optional":true},{"name":"l2_cache_size_kb","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"l2CacheSizeKb","proto3Optional":true},{"name":"l2_cache_speed_mhz","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"l2CacheSpeedMhz","proto3Optional":true},{"name":"l3_cache_size_kb","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"l3CacheSizeKb","proto3Optional":true},{"name":"level","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"level","proto3Optional":true},{"name":"logical_cores_count","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"logicalCoresCount","proto3Optional":true},{"name":"manufacturer","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_clock_speed_mhz","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"maxClockSpeedMhz","proto3Optional":true},{"name":"min_clock_speed_mhz","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"minClockSpeedMhz","proto3Optional":true},{"name":"model_number","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":23,"jsonName":"modelNumber","proto3Optional":true},{"name":"op_modes","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"opModes","proto3Optional":true},{"name":"physical_cores_count","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"physicalCoresCount","proto3Optional":true},{"name":"processor_id","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"processorId","proto3Optional":true},{"name":"processor_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":27,"jsonName":"processorType","proto3Optional":true},{"name":"revision","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":28,"jsonName":"revision","proto3Optional":true},{"name":"socket_designation","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"socketDesignation","proto3Optional":true},{"name":"sockets","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":30,"jsonName":"sockets","proto3Optional":true},{"name":"status","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":31,"jsonName":"status","proto3Optional":true},{"name":"stepping","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":32,"jsonName":"stepping","proto3Optional":true},{"name":"threads_per_physical_core_count","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":33,"jsonName":"threadsPerPhysicalCoreCount","proto3Optional":true},{"name":"unique_id","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"uniqueId","proto3Optional":true},{"name":"upgrade_method","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":35,"jsonName":"upgradeMethod","proto3Optional":true},{"name":"version","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":36,"jsonName":"version","proto3Optional":true},{"name":"virtualization","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":37,"jsonName":"virtualization","proto3Optional":true},{"name":"voltage_capabilities","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":38,"jsonName":"voltageCapabilities","proto3Optional":true}],"oneofDecl":[{"name":"_address_sizes"},{"name":"_address_width"},{"name":"_architecture"},{"name":"_availability"},{"name":"_bogo_mips"},{"name":"_byte_order"},{"name":"_caption"},{"name":"_current_clock_speed"},{"name":"_data_width"},{"name":"_device_id"},{"name":"_external_clock_mhz"},{"name":"_family"},{"name":"_hypervisor_vendor"},{"name":"_l1d_cache_size_kb"},{"name":"_l1i_cache_size_kb"},{"name":"_l2_cache_size_kb"},{"name":"_l2_cache_speed_mhz"},{"name":"_l3_cache_size_kb"},{"name":"_level"},{"name":"_logical_cores_count"},{"name":"_manufacturer"},{"name":"_max_clock_speed_mhz"},{"name":"_min_clock_speed_mhz"},{"name":"_model_number"},{"name":"_op_modes"},{"name":"_physical_cores_count"},{"name":"_processor_id"},{"name":"_processor_type"},{"name":"_revision"},{"name":"_socket_designation"},{"name":"_sockets"},{"name":"_status"},{"name":"_stepping"},{"name":"_threads_per_physical_core_count"},{"name":"_unique_id"},{"name":"_upgrade_method"},{"name":"_version"},{"name":"_virtualization"},{"name":"_voltage_capabilities"}]},{"name":"Chassis","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"type"},{"name":"lock_present","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"lockPresent","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"manufacturer","proto3Optional":true},{"name":"security_status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"securityStatus","proto3Optional":true},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"asset_tag","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"assetTag","proto3Optional":true},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"version","proto3Optional":true},{"name":"bootup_state","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"bootupState","proto3Optional":true}],"oneofDecl":[{"name":"_lock_present"},{"name":"_manufacturer"},{"name":"_security_status"},{"name":"_serial_number"},{"name":"_asset_tag"},{"name":"_version"},{"name":"_bootup_state"}]},{"name":"Motherboard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"config_options","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"configOptions"},{"name":"is_hosting_board","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"isHostingBoard","proto3Optional":true},{"name":"is_powered_on","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"isPoweredOn","proto3Optional":true},{"name":"location","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"serialNumber","proto3Optional":true},{"name":"tag","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"tag","proto3Optional":true},{"name":"type","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"type","proto3Optional":true},{"name":"version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"version","proto3Optional":true},{"name":"device","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MotherboardDevice","jsonName":"device"}],"oneofDecl":[{"name":"_is_hosting_board"},{"name":"_is_powered_on"},{"name":"_location"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_tag"},{"name":"_type"},{"name":"_version"}]},{"name":"MotherboardDevice","field":[{"name":"description","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"description","proto3Optional":true},{"name":"enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"enabled","proto3Optional":true},{"name":"tag","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"tag","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_description"},{"name":"_enabled"},{"name":"_tag"},{"name":"_type"}]},{"name":"Memory","field":[{"name":"installed_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"installedSize"},{"name":"physical_memory","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PhysicalMemory","jsonName":"physicalMemory"},{"name":"memory_array","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MemoryArray","jsonName":"memoryArray"}]},{"name":"PhysicalMemory","field":[{"name":"size","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"size","proto3Optional":true},{"name":"bank_locator","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"bankLocator","proto3Optional":true},{"name":"configured_clock_speed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"configuredClockSpeed","proto3Optional":true},{"name":"configured_voltage","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"configuredVoltage","proto3Optional":true},{"name":"data_width","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_locator","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"deviceLocator","proto3Optional":true},{"name":"form_factor","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"formFactor","proto3Optional":true},{"name":"interleave_data_depth","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"interleaveDataDepth","proto3Optional":true},{"name":"interleave_position","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"interleavePosition","proto3Optional":true},{"name":"manufacturer","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"name","proto3Optional":true},{"name":"part_number","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"partNumber","proto3Optional":true},{"name":"position_in_row","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"positionInRow","proto3Optional":true},{"name":"serial_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"serialNumber","proto3Optional":true},{"name":"set","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"set","proto3Optional":true},{"name":"sku","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"sku","proto3Optional":true},{"name":"speed","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"speed","proto3Optional":true},{"name":"state","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"state","proto3Optional":true},{"name":"total_width","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"totalWidth","proto3Optional":true},{"name":"type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":19,"jsonName":"type","proto3Optional":true},{"name":"type_detail","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":20,"jsonName":"typeDetail","proto3Optional":true}],"oneofDecl":[{"name":"_size"},{"name":"_bank_locator"},{"name":"_configured_clock_speed"},{"name":"_configured_voltage"},{"name":"_data_width"},{"name":"_device_locator"},{"name":"_form_factor"},{"name":"_interleave_data_depth"},{"name":"_interleave_position"},{"name":"_manufacturer"},{"name":"_name"},{"name":"_part_number"},{"name":"_position_in_row"},{"name":"_serial_number"},{"name":"_set"},{"name":"_sku"},{"name":"_speed"},{"name":"_state"},{"name":"_total_width"},{"name":"_type"},{"name":"_type_detail"}]},{"name":"MemoryArray","field":[{"name":"max_capacity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"maxCapacity","proto3Optional":true},{"name":"location","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"location","proto3Optional":true},{"name":"memory_devices","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"memoryDevices","proto3Optional":true},{"name":"memory_error_correction","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"memoryErrorCorrection","proto3Optional":true},{"name":"tag","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"tag","proto3Optional":true},{"name":"use","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"use","proto3Optional":true}],"oneofDecl":[{"name":"_max_capacity"},{"name":"_location"},{"name":"_memory_devices"},{"name":"_memory_error_correction"},{"name":"_tag"},{"name":"_use"}]},{"name":"MappedValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"name":"MonitorInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"monitor","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Monitor","jsonName":"monitor"}]},{"name":"Monitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"model_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"modelName"},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"manufacturer_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"manufacturerDate"},{"name":"windows","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsMonitorInfo","oneofIndex":0,"jsonName":"windows"},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":4,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_monitor","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","oneofIndex":5,"jsonName":"catalogMonitor","proto3Optional":true}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_serial_number"},{"name":"_catalog_brand"},{"name":"_catalog_monitor"}]},{"name":"WindowsMonitorInfo","field":[{"name":"model","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"pnp_device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"serial_number","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"serial_hex","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serialHex","proto3Optional":true},{"name":"vesa_manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vesaManufacturer","proto3Optional":true},{"name":"key_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"keyManufacturer","proto3Optional":true},{"name":"manufacturer_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"manufacturerDate","proto3Optional":true},{"name":"device_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"deviceId","proto3Optional":true}],"oneofDecl":[{"name":"_pnp_device_id"},{"name":"_serial_number"},{"name":"_serial_hex"},{"name":"_vesa_manufacturer"},{"name":"_key_manufacturer"},{"name":"_manufacturer_date"},{"name":"_device_id"}]},{"name":"SoftwareInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"software","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","jsonName":"software"}]},{"name":"Software","field":[{"name":"rank","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"rank","proto3Optional":true},{"name":"type_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"typeId","proto3Optional":true},{"name":"cat_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"catId","proto3Optional":true},{"name":"make_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"makeId","proto3Optional":true},{"name":"sw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"swId","proto3Optional":true},{"name":"parent_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"type_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"cat_name","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"catName","proto3Optional":true},{"name":"make_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"makeName","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"version","proto3Optional":true},{"name":"market_ver","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"marketVer","proto3Optional":true},{"name":"edition","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"edition","proto3Optional":true},{"name":"build","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"build","proto3Optional":true},{"name":"arch","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"arch","proto3Optional":true},{"name":"lang","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"lang","proto3Optional":true},{"name":"cpe","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"cpe","proto3Optional":true},{"name":"raw","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawSoftware","jsonName":"raw"},{"name":"raw_hash","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"rawHash","proto3Optional":true},{"name":"nre_hash","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"nreHash","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":19,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_software","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":20,"jsonName":"catalogSoftware","proto3Optional":true},{"name":"catalog_parent","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":21,"jsonName":"catalogParent","proto3Optional":true}],"oneofDecl":[{"name":"_rank"},{"name":"_type_id"},{"name":"_cat_id"},{"name":"_make_id"},{"name":"_sw_id"},{"name":"_parent_id"},{"name":"_type_name"},{"name":"_cat_name"},{"name":"_make_name"},{"name":"_name"},{"name":"_version"},{"name":"_market_ver"},{"name":"_edition"},{"name":"_build"},{"name":"_arch"},{"name":"_lang"},{"name":"_cpe"},{"name":"_raw_hash"},{"name":"_nre_hash"},{"name":"_catalog_brand"},{"name":"_catalog_software"},{"name":"_catalog_parent"}]},{"name":"RawSoftware","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"vendor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"version","proto3Optional":true},{"name":"info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"exe_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"exePath","proto3Optional":true},{"name":"arch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"arch","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"installDate","proto3Optional":true},{"name":"source_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sourceType","proto3Optional":true},{"name":"sw_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"swId","proto3Optional":true},{"name":"is_current_user","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isCurrentUser","proto3Optional":true}],"oneofDecl":[{"name":"_vendor"},{"name":"_version"},{"name":"_info"},{"name":"_exe_path"},{"name":"_arch"},{"name":"_install_date"},{"name":"_source_type"},{"name":"_sw_id"},{"name":"_is_current_user"}]},{"name":"CatalogBrand","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"parent_id","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"parentId","proto3Optional":true},{"name":"last_update_time","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"country_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryCode","proto3Optional":true},{"name":"logo_image_url","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"twitterAccount","proto3Optional":true},{"name":"warranty_url","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"warrantyUrl","proto3Optional":true},{"name":"warranty_direct_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"warrantyDirectUrl","proto3Optional":true},{"name":"community_url","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"communityUrl","proto3Optional":true},{"name":"linkedin_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"linkedinAccount","proto3Optional":true},{"name":"instagram_account","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"instagramAccount","proto3Optional":true},{"name":"youtube_account","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"youtubeAccount","proto3Optional":true},{"name":"pinterest_account","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pinterestAccount","proto3Optional":true},{"name":"tiktok_account","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"tiktokAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":25,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":26,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_parent_id"},{"name":"_last_update_time"},{"name":"_country_code"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_warranty_url"},{"name":"_warranty_direct_url"},{"name":"_community_url"},{"name":"_linkedin_account"},{"name":"_instagram_account"},{"name":"_youtube_account"},{"name":"_pinterest_account"},{"name":"_tiktok_account"},{"name":"_class_hardware"},{"name":"_class_software"},{"name":"_class_consumer"},{"name":"_class_enterprise"},{"name":"_class_industrial"},{"name":"_class_individual"},{"name":"_match_score"}]},{"name":"CatalogModel","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"makeId"},{"name":"device_model","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceModel"},{"name":"device_type_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"deviceTypeId","proto3Optional":true},{"name":"device_model_code","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"deviceModelCode"},{"name":"family_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isFamily","proto3Optional":true},{"name":"manual_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manualUrl","proto3Optional":true},{"name":"faq_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"faqUrl","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eosDate","proto3Optional":true},{"name":"lifecyle_confidence","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"price_class","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"priceClass","proto3Optional":true},{"name":"product_class","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"productClass","proto3Optional":true},{"name":"sh_ifttt_handle","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"shIftttHandle","proto3Optional":true},{"name":"sh_google_ass_langs","number":18,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shGoogleAssLangs"},{"name":"sh_alexa_langs","number":19,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shAlexaLangs"},{"name":"sh_hass_handle","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"shHassHandle","proto3Optional":true},{"name":"sh_apple_home_kit","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"shAppleHomeKit","proto3Optional":true},{"name":"sh_open_hab_handle","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"shOpenHabHandle","proto3Optional":true},{"name":"nist_cpe","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"nistCpe","proto3Optional":true},{"name":"popularity","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"popularity","proto3Optional":true},{"name":"last_update_time","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":17,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_device_type_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_manual_url"},{"name":"_faq_url"},{"name":"_release_date"},{"name":"_disc_date"},{"name":"_eos_date"},{"name":"_lifecyle_confidence"},{"name":"_price_class"},{"name":"_product_class"},{"name":"_sh_ifttt_handle"},{"name":"_sh_hass_handle"},{"name":"_sh_apple_home_kit"},{"name":"_sh_open_hab_handle"},{"name":"_nist_cpe"},{"name":"_popularity"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogOs","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"os_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"osName"},{"name":"os_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"osVersion","proto3Optional":true},{"name":"os_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"osBuild","proto3Optional":true},{"name":"os_version_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"osVersionName","proto3Optional":true},{"name":"override_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":9,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"logo_image_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"twitterAccount","proto3Optional":true},{"name":"nist_cpe","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"nistCpe","proto3Optional":true},{"name":"last_update_time","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":21,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_os_version"},{"name":"_os_build"},{"name":"_os_version_name"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_nist_cpe"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogSoftware","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"sw_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swName"},{"name":"sw_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"swVersion","proto3Optional":true},{"name":"sw_market_ver","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"swMarketVer","proto3Optional":true},{"name":"sw_edition","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"swEdition","proto3Optional":true},{"name":"sw_lang","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"swLang","proto3Optional":true},{"name":"sw_build","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"swBuild","proto3Optional":true},{"name":"make_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"parentId","proto3Optional":true},{"name":"latest_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"latestId","proto3Optional":true},{"name":"sw_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"swType","proto3Optional":true},{"name":"sw_category","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"swCategory","proto3Optional":true},{"name":"release_date","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":10,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":11,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":12,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":13,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"flag_latest","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"flagLatest","proto3Optional":true},{"name":"flag_widespread","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"flagWidespread","proto3Optional":true},{"name":"flag_deprecated","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"flagDeprecated","proto3Optional":true},{"name":"last_update_time","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":18,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_sw_version"},{"name":"_sw_market_ver"},{"name":"_sw_edition"},{"name":"_sw_lang"},{"name":"_sw_build"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_latest_id"},{"name":"_sw_type"},{"name":"_sw_category"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_flag_latest"},{"name":"_flag_widespread"},{"name":"_flag_deprecated"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogMonitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"model","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"vendor_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendorId","proto3Optional":true},{"name":"make_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"family_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isFamily","proto3Optional":true},{"name":"official_page","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"officialPage","proto3Optional":true},{"name":"support_page","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"supportPage","proto3Optional":true},{"name":"size_inch","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":6,"jsonName":"sizeInch","proto3Optional":true},{"name":"max_resolution","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"maxResolution","proto3Optional":true},{"name":"aspect_ratio","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"aspectRatio","proto3Optional":true},{"name":"response_time_ms","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":9,"jsonName":"responseTimeMs","proto3Optional":true},{"name":"hd_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hdType","proto3Optional":true},{"name":"display_tech","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"displayTech","proto3Optional":true},{"name":"refresh_rate","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"refreshRate","proto3Optional":true},{"name":"panel","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"panel","proto3Optional":true},{"name":"height_cm","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":14,"jsonName":"heightCm","proto3Optional":true},{"name":"width_cm","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":15,"jsonName":"widthCm","proto3Optional":true},{"name":"diagonal_cm","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":16,"jsonName":"diagonalCm","proto3Optional":true},{"name":"usb_upstream","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"usbUpstream","proto3Optional":true},{"name":"nr_usb_upstream","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"nrUsbUpstream","proto3Optional":true},{"name":"nr_usb_type_a_downstream","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"nrUsbTypeADownstream","proto3Optional":true},{"name":"nr_hdmi","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"nrHdmi","proto3Optional":true},{"name":"nr_vga","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"nrVga","proto3Optional":true},{"name":"nr_dvi","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"nrDvi","proto3Optional":true},{"name":"hdmi_version","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":23,"jsonName":"hdmiVersion","proto3Optional":true},{"name":"nr_display_ports","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":24,"jsonName":"nrDisplayPorts","proto3Optional":true},{"name":"display_port_version","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":25,"jsonName":"displayPortVersion","proto3Optional":true},{"name":"energy_class","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"energyClass","proto3Optional":true},{"name":"sdr_per_1000_u","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":27,"jsonName":"sdrPer1000U","proto3Optional":true},{"name":"average_watt_usage","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":28,"jsonName":"averageWattUsage","proto3Optional":true},{"name":"max_watt_usage","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":29,"jsonName":"maxWattUsage","proto3Optional":true},{"name":"watt_usage_standby","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":30,"jsonName":"wattUsageStandby","proto3Optional":true},{"name":"watt_power_save","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":31,"jsonName":"wattPowerSave","proto3Optional":true},{"name":"ac_voltage","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":32,"jsonName":"acVoltage","proto3Optional":true},{"name":"ac_freq_hz","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"acFreqHz","proto3Optional":true},{"name":"current_a","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":34,"jsonName":"currentA","proto3Optional":true},{"name":"feature_aio","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":35,"jsonName":"featureAio","proto3Optional":true},{"name":"feature_camera","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":36,"jsonName":"featureCamera","proto3Optional":true},{"name":"feature_speakers","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":37,"jsonName":"featureSpeakers","proto3Optional":true},{"name":"feature_hdmi","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":38,"jsonName":"featureHdmi","proto3Optional":true},{"name":"feature_eth","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":39,"jsonName":"featureEth","proto3Optional":true},{"name":"feature_portrait","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":40,"jsonName":"featurePortrait","proto3Optional":true},{"name":"feature_curved","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":41,"jsonName":"featureCurved","proto3Optional":true},{"name":"last_update_time","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":42,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":43,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_vendor_id"},{"name":"_make_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_official_page"},{"name":"_support_page"},{"name":"_size_inch"},{"name":"_max_resolution"},{"name":"_aspect_ratio"},{"name":"_response_time_ms"},{"name":"_hd_type"},{"name":"_display_tech"},{"name":"_refresh_rate"},{"name":"_panel"},{"name":"_height_cm"},{"name":"_width_cm"},{"name":"_diagonal_cm"},{"name":"_usb_upstream"},{"name":"_nr_usb_upstream"},{"name":"_nr_usb_type_a_downstream"},{"name":"_nr_hdmi"},{"name":"_nr_vga"},{"name":"_nr_dvi"},{"name":"_hdmi_version"},{"name":"_nr_display_ports"},{"name":"_display_port_version"},{"name":"_energy_class"},{"name":"_sdr_per_1000_u"},{"name":"_average_watt_usage"},{"name":"_max_watt_usage"},{"name":"_watt_usage_standby"},{"name":"_watt_power_save"},{"name":"_ac_voltage"},{"name":"_ac_freq_hz"},{"name":"_current_a"},{"name":"_feature_aio"},{"name":"_feature_camera"},{"name":"_feature_speakers"},{"name":"_feature_hdmi"},{"name":"_feature_eth"},{"name":"_feature_portrait"},{"name":"_feature_curved"},{"name":"_last_update_time"},{"name":"_match_score"}]}],"service":[{"name":"DataCoreOutboundService","method":[{"name":"GetEntity","inputType":".com.lansweeper.dp.outbound.v1.GetEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.GetEntityResponse","options":{}},{"name":"ListEntities","inputType":".com.lansweeper.dp.outbound.v1.ListEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.ListEntityResponse","options":{},"serverStreaming":true},{"name":"CatalogLookup","inputType":".com.lansweeper.dp.outbound.v1.CatalogLookupRequest","outputType":".com.lansweeper.dp.outbound.v1.CatalogLookupResponse","options":{}}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,952,1]},{"path":[12],"span":[7,0,18],"leadingComments":"\n Copyright Lansweeper (c)\n\n This files contains the Data Access API and the definition of outbound model\n\n N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc\n"},{"path":[2],"span":[8,0,38]},{"path":[8],"span":[10,0,37]},{"path":[8,11],"span":[10,0,37]},{"path":[8],"span":[11,0,34]},{"path":[8,10],"span":[11,0,34]},{"path":[3,0],"span":[13,0,41]},{"path":[3,1],"span":[14,0,35]},{"path":[6,0],"span":[23,0,33,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[23,8,31]},{"path":[6,0,2,0],"span":[26,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[26,6,15]},{"path":[6,0,2,0,2],"span":[26,17,33]},{"path":[6,0,2,0,3],"span":[26,44,61]},{"path":[6,0,2,1],"span":[29,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[29,6,18]},{"path":[6,0,2,1,2],"span":[29,19,36]},{"path":[6,0,2,1,6],"span":[29,47,53]},{"path":[6,0,2,1,3],"span":[29,54,72]},{"path":[6,0,2,2],"span":[32,2,77],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,2,1],"span":[32,6,19]},{"path":[6,0,2,2,2],"span":[32,21,41]},{"path":[6,0,2,2,3],"span":[32,52,73]},{"path":[4,0],"span":[38,0,41,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[38,8,24]},{"path":[4,0,2,0],"span":[39,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[39,2,12]},{"path":[4,0,2,0,1],"span":[39,13,24]},{"path":[4,0,2,0,3],"span":[39,27,28]},{"path":[4,1],"span":[43,0,49,1]},{"path":[4,1,1],"span":[43,8,25]},{"path":[4,1,2,0],"span":[44,2,19]},{"path":[4,1,2,0,5],"span":[44,2,6]},{"path":[4,1,2,0,1],"span":[44,7,14]},{"path":[4,1,2,0,3],"span":[44,17,18]},{"path":[4,1,2,1],"span":[45,2,40]},{"path":[4,1,2,1,4],"span":[45,2,10]},{"path":[4,1,2,1,5],"span":[45,11,17]},{"path":[4,1,2,1,1],"span":[45,18,35]},{"path":[4,1,2,1,3],"span":[45,38,39]},{"path":[4,1,2,2],"span":[47,2,29]},{"path":[4,1,2,2,4],"span":[47,2,10]},{"path":[4,1,2,2,6],"span":[47,11,17]},{"path":[4,1,2,2,1],"span":[47,18,24]},{"path":[4,1,2,2,3],"span":[47,27,28]},{"path":[4,1,2,3],"span":[48,2,30]},{"path":[4,1,2,3,4],"span":[48,2,10]},{"path":[4,1,2,3,6],"span":[48,11,17]},{"path":[4,1,2,3,1],"span":[48,18,25]},{"path":[4,1,2,3,3],"span":[48,28,29]},{"path":[4,2],"span":[51,0,53,1]},{"path":[4,2,1],"span":[51,8,25]},{"path":[4,2,2,0],"span":[52,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[52,2,12]},{"path":[4,2,2,0,1],"span":[52,13,19]},{"path":[4,2,2,0,3],"span":[52,22,23]},{"path":[4,3],"span":[55,0,58,1]},{"path":[4,3,1],"span":[55,8,26]},{"path":[4,3,2,0],"span":[56,2,20]},{"path":[4,3,2,0,6],"span":[56,2,8]},{"path":[4,3,2,0,1],"span":[56,9,15]},{"path":[4,3,2,0,3],"span":[56,18,19]},{"path":[4,3,2,1],"span":[57,2,30]},{"path":[4,3,2,1,4],"span":[57,2,10]},{"path":[4,3,2,1,6],"span":[57,11,17]},{"path":[4,3,2,1,1],"span":[57,18,25]},{"path":[4,3,2,1,3],"span":[57,28,29]},{"path":[4,4],"span":[60,0,68,1]},{"path":[4,4,1],"span":[60,8,28]},{"path":[4,4,2,0],"span":[61,2,30]},{"path":[4,4,2,0,4],"span":[61,2,10]},{"path":[4,4,2,0,5],"span":[61,11,16]},{"path":[4,4,2,0,1],"span":[61,17,25]},{"path":[4,4,2,0,3],"span":[61,28,29]},{"path":[4,4,2,1],"span":[62,2,30]},{"path":[4,4,2,1,4],"span":[62,2,10]},{"path":[4,4,2,1,5],"span":[62,11,16]},{"path":[4,4,2,1,1],"span":[62,17,25]},{"path":[4,4,2,1,3],"span":[62,28,29]},{"path":[4,4,2,2],"span":[63,2,27]},{"path":[4,4,2,2,4],"span":[63,2,10]},{"path":[4,4,2,2,5],"span":[63,11,16]},{"path":[4,4,2,2,1],"span":[63,17,22]},{"path":[4,4,2,2,3],"span":[63,25,26]},{"path":[4,4,2,3],"span":[64,2,27]},{"path":[4,4,2,3,4],"span":[64,2,10]},{"path":[4,4,2,3,5],"span":[64,11,16]},{"path":[4,4,2,3,1],"span":[64,17,22]},{"path":[4,4,2,3,3],"span":[64,25,26]},{"path":[4,4,2,4],"span":[65,2,32]},{"path":[4,4,2,4,4],"span":[65,2,10]},{"path":[4,4,2,4,5],"span":[65,11,16]},{"path":[4,4,2,4,1],"span":[65,17,27]},{"path":[4,4,2,4,3],"span":[65,30,31]},{"path":[4,4,2,5],"span":[67,2,36],"trailingComments":" false by default: to avoid to get full path\n"},{"path":[4,4,2,5,4],"span":[67,2,10]},{"path":[4,4,2,5,5],"span":[67,11,15]},{"path":[4,4,2,5,1],"span":[67,16,30]},{"path":[4,4,2,5,3],"span":[67,33,35]},{"path":[4,5],"span":[70,0,76,1]},{"path":[4,5,1],"span":[70,8,29]},{"path":[4,5,2,0],"span":[71,2,34]},{"path":[4,5,2,0,4],"span":[71,2,10]},{"path":[4,5,2,0,6],"span":[71,11,23]},{"path":[4,5,2,0,1],"span":[71,24,29]},{"path":[4,5,2,0,3],"span":[71,32,33]},{"path":[4,5,2,1],"span":[72,2,34]},{"path":[4,5,2,1,4],"span":[72,2,10]},{"path":[4,5,2,1,6],"span":[72,11,23]},{"path":[4,5,2,1,1],"span":[72,24,29]},{"path":[4,5,2,1,3],"span":[72,32,33]},{"path":[4,5,2,2],"span":[73,2,28]},{"path":[4,5,2,2,4],"span":[73,2,10]},{"path":[4,5,2,2,6],"span":[73,11,20]},{"path":[4,5,2,2,1],"span":[73,21,23]},{"path":[4,5,2,2,3],"span":[73,26,27]},{"path":[4,5,2,3],"span":[74,2,34]},{"path":[4,5,2,3,4],"span":[74,2,10]},{"path":[4,5,2,3,6],"span":[74,11,26]},{"path":[4,5,2,3,1],"span":[74,27,29]},{"path":[4,5,2,3,3],"span":[74,32,33]},{"path":[4,5,2,4],"span":[75,2,38]},{"path":[4,5,2,4,4],"span":[75,2,10]},{"path":[4,5,2,4,6],"span":[75,11,25]},{"path":[4,5,2,4,1],"span":[75,26,33]},{"path":[4,5,2,4,3],"span":[75,36,37]},{"path":[4,6],"span":[80,0,86,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[80,8,18]},{"path":[4,6,2,0],"span":[81,2,21]},{"path":[4,6,2,0,5],"span":[81,2,8]},{"path":[4,6,2,0,1],"span":[81,9,16]},{"path":[4,6,2,0,3],"span":[81,19,20]},{"path":[4,6,2,1],"span":[82,2,32]},{"path":[4,6,2,1,4],"span":[82,2,10]},{"path":[4,6,2,1,5],"span":[82,11,17]},{"path":[4,6,2,1,1],"span":[82,18,27]},{"path":[4,6,2,1,3],"span":[82,30,31]},{"path":[4,6,2,2],"span":[83,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[83,2,10]},{"path":[4,6,2,2,5],"span":[83,11,17]},{"path":[4,6,2,2,1],"span":[83,18,29]},{"path":[4,6,2,2,3],"span":[83,32,33]},{"path":[4,6,2,3],"span":[84,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[84,2,10]},{"path":[4,6,2,3,5],"span":[84,11,17]},{"path":[4,6,2,3,1],"span":[84,18,29]},{"path":[4,6,2,3,3],"span":[84,32,33]},{"path":[4,6,2,4],"span":[85,2,32]},{"path":[4,6,2,4,4],"span":[85,2,10]},{"path":[4,6,2,4,5],"span":[85,11,17]},{"path":[4,6,2,4,1],"span":[85,18,27]},{"path":[4,6,2,4,3],"span":[85,30,31]},{"path":[4,7],"span":[89,0,95,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[89,8,14]},{"path":[4,7,8,0],"span":[90,2,94,3]},{"path":[4,7,8,0,1],"span":[90,8,14]},{"path":[4,7,2,0],"span":[91,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[91,4,9]},{"path":[4,7,2,0,1],"span":[91,10,15]},{"path":[4,7,2,0,3],"span":[91,18,19]},{"path":[4,8],"span":[98,0,142,1],"leadingComments":" Asset object: IT/OT/CDR... CDK? "},{"path":[4,8,1],"span":[98,8,13]},{"path":[4,8,2,0],"span":[100,2,20]},{"path":[4,8,2,0,6],"span":[100,2,12]},{"path":[4,8,2,0,1],"span":[100,13,15]},{"path":[4,8,2,0,3],"span":[100,18,19]},{"path":[4,8,2,1],"span":[102,2,44]},{"path":[4,8,2,1,6],"span":[102,2,27]},{"path":[4,8,2,1,1],"span":[102,28,39]},{"path":[4,8,2,1,3],"span":[102,42,43]},{"path":[4,8,2,2],"span":[103,2,43]},{"path":[4,8,2,2,6],"span":[103,2,27]},{"path":[4,8,2,2,1],"span":[103,28,38]},{"path":[4,8,2,2,3],"span":[103,41,42]},{"path":[4,8,2,3],"span":[104,2,45]},{"path":[4,8,2,3,6],"span":[104,2,27]},{"path":[4,8,2,3,1],"span":[104,28,40]},{"path":[4,8,2,3,3],"span":[104,43,44]},{"path":[4,8,2,4],"span":[105,2,46]},{"path":[4,8,2,4,6],"span":[105,2,27]},{"path":[4,8,2,4,1],"span":[105,28,41]},{"path":[4,8,2,4,3],"span":[105,44,45]},{"path":[4,8,2,5],"span":[108,2,34],"leadingComments":" this is unique and source of UUID asset_id. Kept also in verbose key format for debug/future use.\n"},{"path":[4,8,2,5,4],"span":[108,2,10]},{"path":[4,8,2,5,5],"span":[108,11,17]},{"path":[4,8,2,5,1],"span":[108,18,28]},{"path":[4,8,2,5,3],"span":[108,31,33]},{"path":[4,8,2,6],"span":[110,2,24]},{"path":[4,8,2,6,4],"span":[110,2,10]},{"path":[4,8,2,6,6],"span":[110,11,14]},{"path":[4,8,2,6,1],"span":[110,15,18]},{"path":[4,8,2,6,3],"span":[110,21,23]},{"path":[4,8,2,7],"span":[111,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,8,2,7,4],"span":[111,2,10]},{"path":[4,8,2,7,6],"span":[111,11,19]},{"path":[4,8,2,7,1],"span":[111,20,28]},{"path":[4,8,2,7,3],"span":[111,31,33]},{"path":[4,8,2,8],"span":[113,2,22]},{"path":[4,8,2,8,6],"span":[113,2,12]},{"path":[4,8,2,8,1],"span":[113,13,17]},{"path":[4,8,2,8,3],"span":[113,20,21]},{"path":[4,8,2,9],"span":[115,2,31]},{"path":[4,8,2,9,4],"span":[115,2,10]},{"path":[4,8,2,9,6],"span":[115,11,23]},{"path":[4,8,2,9,1],"span":[115,24,26]},{"path":[4,8,2,9,3],"span":[115,29,30]},{"path":[4,8,2,10],"span":[116,2,59]},{"path":[4,8,2,10,4],"span":[116,2,10]},{"path":[4,8,2,10,6],"span":[116,11,40]},{"path":[4,8,2,10,1],"span":[116,41,54]},{"path":[4,8,2,10,3],"span":[116,57,58]},{"path":[4,8,2,11],"span":[117,2,35]},{"path":[4,8,2,11,4],"span":[117,2,10]},{"path":[4,8,2,11,6],"span":[117,11,26]},{"path":[4,8,2,11,1],"span":[117,27,29]},{"path":[4,8,2,11,3],"span":[117,32,34]},{"path":[4,8,2,12],"span":[118,2,52]},{"path":[4,8,2,12,4],"span":[118,2,10]},{"path":[4,8,2,12,6],"span":[118,11,28]},{"path":[4,8,2,12,1],"span":[118,29,47]},{"path":[4,8,2,12,3],"span":[118,50,51]},{"path":[4,8,2,13],"span":[120,2,51]},{"path":[4,8,2,13,4],"span":[120,2,10]},{"path":[4,8,2,13,6],"span":[120,11,27]},{"path":[4,8,2,13,1],"span":[120,28,45]},{"path":[4,8,2,13,3],"span":[120,48,50]},{"path":[4,8,2,14],"span":[122,2,53]},{"path":[4,8,2,14,4],"span":[122,2,10]},{"path":[4,8,2,14,6],"span":[122,11,28]},{"path":[4,8,2,14,1],"span":[122,29,47]},{"path":[4,8,2,14,3],"span":[122,50,52]},{"path":[4,8,2,15],"span":[124,2,46]},{"path":[4,8,2,15,4],"span":[124,2,10]},{"path":[4,8,2,15,6],"span":[124,11,31]},{"path":[4,8,2,15,1],"span":[124,32,40]},{"path":[4,8,2,15,3],"span":[124,43,45]},{"path":[4,8,2,16],"span":[126,2,36]},{"path":[4,8,2,16,4],"span":[126,2,10]},{"path":[4,8,2,16,6],"span":[126,11,20]},{"path":[4,8,2,16,1],"span":[126,21,30]},{"path":[4,8,2,16,3],"span":[126,33,35]},{"path":[4,8,2,17],"span":[127,2,32]},{"path":[4,8,2,17,4],"span":[127,2,10]},{"path":[4,8,2,17,6],"span":[127,11,18]},{"path":[4,8,2,17,1],"span":[127,19,26]},{"path":[4,8,2,17,3],"span":[127,29,31]},{"path":[4,8,2,18],"span":[128,2,30]},{"path":[4,8,2,18,4],"span":[128,2,10]},{"path":[4,8,2,18,6],"span":[128,11,17]},{"path":[4,8,2,18,1],"span":[128,18,24]},{"path":[4,8,2,18,3],"span":[128,27,29]},{"path":[4,8,2,19],"span":[129,2,40]},{"path":[4,8,2,19,4],"span":[129,2,10]},{"path":[4,8,2,19,6],"span":[129,11,22]},{"path":[4,8,2,19,1],"span":[129,23,34]},{"path":[4,8,2,19,3],"span":[129,37,39]},{"path":[4,8,2,20],"span":[131,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,20,4],"span":[131,2,10]},{"path":[4,8,2,20,6],"span":[131,11,19]},{"path":[4,8,2,20,1],"span":[131,20,29]},{"path":[4,8,2,20,3],"span":[131,32,34]},{"path":[4,8,2,21],"span":[133,2,34]},{"path":[4,8,2,21,4],"span":[133,2,10]},{"path":[4,8,2,21,6],"span":[133,11,22]},{"path":[4,8,2,21,1],"span":[133,23,28]},{"path":[4,8,2,21,3],"span":[133,31,33]},{"path":[4,9],"span":[160,0,163,1],"leadingComments":"\n A key/value tag, also known as a key-value pair or simply a tag: a key and a corresponding value.\n It is used to associate metadata or additional information with an entity or data element.\n The key represents the identifier or name of the tag, while the value contains the associated data or information.\n The key serves as a unique label or reference that can be used to retrieve or manipulate the value associated with it.\n In this context, the key can be thought of as a variable name or a dictionary key, and the value can be any data type or object.\n\n Among other things we also use this to mark the Source.\n * E.g.: Source: LS/IT/CDR\n * E.g.: Source: LS/IT/Scan-WMI\n * E.g.: Source: LS/IT/Scan-MAC\n * E.g.: Source: LS/IT/Scan-Linux\n * E.g.: Source: LS/IT/OT (OT like this?)\n * E.g.: Source: LS/CDK (cloud discovery?)\n * E.g.: Source: LS/DataCore (reconciliation)\n"},{"path":[4,9,1],"span":[160,8,11]},{"path":[4,9,2,0],"span":[161,2,17]},{"path":[4,9,2,0,5],"span":[161,2,8]},{"path":[4,9,2,0,1],"span":[161,9,12]},{"path":[4,9,2,0,3],"span":[161,15,16]},{"path":[4,9,2,1],"span":[162,2,28]},{"path":[4,9,2,1,4],"span":[162,2,10]},{"path":[4,9,2,1,5],"span":[162,11,17]},{"path":[4,9,2,1,1],"span":[162,18,23]},{"path":[4,9,2,1,3],"span":[162,26,27]},{"path":[4,10],"span":[170,0,177,1],"leadingComments":"\n A relation between two entities refers to the connection, association, or interaction that exists between them.\n It signifies the way in which these entities are related or linked to each other based on certain characteristics,\n attributes, behaviors, dependencies, or roles they share.\n"},{"path":[4,10,1],"span":[170,8,16]},{"path":[4,10,2,0],"span":[171,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,0,4],"span":[171,2,10]},{"path":[4,10,2,0,6],"span":[171,11,21]},{"path":[4,10,2,0,1],"span":[171,22,26]},{"path":[4,10,2,0,3],"span":[171,29,30]},{"path":[4,10,2,1],"span":[172,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,1,4],"span":[172,2,10]},{"path":[4,10,2,1,6],"span":[172,11,21]},{"path":[4,10,2,1,1],"span":[172,22,24]},{"path":[4,10,2,1,3],"span":[172,27,28]},{"path":[4,10,2,2],"span":[173,2,38]},{"path":[4,10,2,2,6],"span":[173,2,27]},{"path":[4,10,2,2,1],"span":[173,28,33]},{"path":[4,10,2,2,3],"span":[173,36,37]},{"path":[4,10,2,3],"span":[174,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,10,2,3,4],"span":[174,2,10]},{"path":[4,10,2,3,6],"span":[174,11,36]},{"path":[4,10,2,3,1],"span":[174,37,40]},{"path":[4,10,2,3,3],"span":[174,43,44]},{"path":[4,10,2,4],"span":[175,2,18]},{"path":[4,10,2,4,5],"span":[175,2,8]},{"path":[4,10,2,4,1],"span":[175,9,13]},{"path":[4,10,2,4,3],"span":[175,16,17]},{"path":[4,10,2,5],"span":[176,2,23]},{"path":[4,10,2,5,4],"span":[176,2,10]},{"path":[4,10,2,5,6],"span":[176,11,14]},{"path":[4,10,2,5,1],"span":[176,15,18]},{"path":[4,10,2,5,3],"span":[176,21,22]},{"path":[4,11],"span":[187,0,189,1],"leadingComments":"\n Cloud entity coming from CDK scanner.\n This could be extended later on to become more than a carrier of opaque info.\n I.e. the any object contains objects as defined in discovery_cloud.proto\n Only objects needing to be mapped into common/core asset fields are handled\n the rest is fast-forwarded ahead to the chain to allow us to avoid useless\n early heavy mapping and post-pone it only where/when it's needed.\n"},{"path":[4,11,1],"span":[187,8,19]},{"path":[4,11,2,0],"span":[188,2,31]},{"path":[4,11,2,0,6],"span":[188,2,21]},{"path":[4,11,2,0,1],"span":[188,22,26]},{"path":[4,11,2,0,3],"span":[188,29,30]},{"path":[4,12],"span":[199,0,213,1],"leadingComments":"\n OT module/card specific info.\n Information about belonging rack and:\n - if it's main module, reference to all sub-modules\n - if it's sub-module, reference to parent main\n HW info: in HW standard section.\n OS info: in OS standard section.\n"},{"path":[4,12,1],"span":[199,8,16]},{"path":[4,12,2,0],"span":[200,2,24]},{"path":[4,12,2,0,5],"span":[200,2,7]},{"path":[4,12,2,0,1],"span":[200,8,19]},{"path":[4,12,2,0,3],"span":[200,22,23]},{"path":[4,12,2,1],"span":[201,2,23]},{"path":[4,12,2,1,5],"span":[201,2,8]},{"path":[4,12,2,1,1],"span":[201,9,18]},{"path":[4,12,2,1,3],"span":[201,21,22]},{"path":[4,12,2,2],"span":[202,2,22]},{"path":[4,12,2,2,5],"span":[202,2,7]},{"path":[4,12,2,2,1],"span":[202,8,17]},{"path":[4,12,2,2,3],"span":[202,20,21]},{"path":[4,12,2,3],"span":[203,2,17]},{"path":[4,12,2,3,5],"span":[203,2,7]},{"path":[4,12,2,3,1],"span":[203,8,12]},{"path":[4,12,2,3,3],"span":[203,15,16]},{"path":[4,12,2,4],"span":[204,2,23]},{"path":[4,12,2,4,5],"span":[204,2,7]},{"path":[4,12,2,4,1],"span":[204,8,18]},{"path":[4,12,2,4,3],"span":[204,21,22]},{"path":[4,12,2,5],"span":[206,2,26]},{"path":[4,12,2,5,5],"span":[206,2,6]},{"path":[4,12,2,5,1],"span":[206,7,21]},{"path":[4,12,2,5,3],"span":[206,24,25]},{"path":[4,12,2,6],"span":[208,2,37]},{"path":[4,12,2,6,4],"span":[208,2,10]},{"path":[4,12,2,6,5],"span":[208,11,17]},{"path":[4,12,2,6,1],"span":[208,18,32]},{"path":[4,12,2,6,3],"span":[208,35,36]},{"path":[4,12,2,7],"span":[210,2,34]},{"path":[4,12,2,7,4],"span":[210,2,10]},{"path":[4,12,2,7,5],"span":[210,11,17]},{"path":[4,12,2,7,1],"span":[210,18,29]},{"path":[4,12,2,7,3],"span":[210,32,33]},{"path":[4,12,2,8],"span":[212,2,40]},{"path":[4,12,2,8,4],"span":[212,2,10]},{"path":[4,12,2,8,6],"span":[212,11,26]},{"path":[4,12,2,8,1],"span":[212,27,35]},{"path":[4,12,2,8,3],"span":[212,38,39]},{"path":[4,13],"span":[215,0,218,1]},{"path":[4,13,1],"span":[215,8,23]},{"path":[4,13,2,0],"span":[216,2,17]},{"path":[4,13,2,0,5],"span":[216,2,8]},{"path":[4,13,2,0,1],"span":[216,9,12]},{"path":[4,13,2,0,3],"span":[216,15,16]},{"path":[4,13,2,1],"span":[217,2,19]},{"path":[4,13,2,1,5],"span":[217,2,8]},{"path":[4,13,2,1,1],"span":[217,9,14]},{"path":[4,13,2,1,3],"span":[217,17,18]},{"path":[4,14],"span":[224,0,233,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,14,1],"span":[224,8,17]},{"path":[4,14,2,0],"span":[226,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,14,2,0,5],"span":[226,2,8]},{"path":[4,14,2,0,1],"span":[226,9,16]},{"path":[4,14,2,0,3],"span":[226,19,20]},{"path":[4,14,2,1],"span":[228,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,14,2,1,5],"span":[228,2,7]},{"path":[4,14,2,1,1],"span":[228,8,13]},{"path":[4,14,2,1,3],"span":[228,16,17]},{"path":[4,14,2,2],"span":[230,2,32],"leadingComments":" Fing Type\n"},{"path":[4,14,2,2,4],"span":[230,2,10]},{"path":[4,14,2,2,5],"span":[230,11,17]},{"path":[4,14,2,2,1],"span":[230,18,27]},{"path":[4,14,2,2,3],"span":[230,30,31]},{"path":[4,14,2,3],"span":[232,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,14,2,3,4],"span":[232,2,10]},{"path":[4,14,2,3,5],"span":[232,11,17]},{"path":[4,14,2,3,1],"span":[232,18,26]},{"path":[4,14,2,3,3],"span":[232,29,30]},{"path":[4,15],"span":[238,0,247,1],"leadingComments":"\n\n"},{"path":[4,15,1],"span":[238,8,18]},{"path":[4,15,2,0],"span":[239,2,21]},{"path":[4,15,2,0,6],"span":[239,2,11]},{"path":[4,15,2,0,1],"span":[239,12,16]},{"path":[4,15,2,0,3],"span":[239,19,20]},{"path":[4,15,2,1],"span":[240,2,18]},{"path":[4,15,2,1,5],"span":[240,2,8]},{"path":[4,15,2,1,1],"span":[240,9,13]},{"path":[4,15,2,1,3],"span":[240,16,17]},{"path":[4,15,2,2],"span":[241,2,29]},{"path":[4,15,2,2,4],"span":[241,2,10]},{"path":[4,15,2,2,5],"span":[241,11,17]},{"path":[4,15,2,2,1],"span":[241,18,24]},{"path":[4,15,2,2,3],"span":[241,27,28]},{"path":[4,15,2,3],"span":[242,2,33]},{"path":[4,15,2,3,4],"span":[242,2,10]},{"path":[4,15,2,3,5],"span":[242,11,17]},{"path":[4,15,2,3,1],"span":[242,18,28]},{"path":[4,15,2,3,3],"span":[242,31,32]},{"path":[4,15,2,4],"span":[243,2,29]},{"path":[4,15,2,4,4],"span":[243,2,10]},{"path":[4,15,2,4,5],"span":[243,11,17]},{"path":[4,15,2,4,1],"span":[243,18,24]},{"path":[4,15,2,4,3],"span":[243,27,28]},{"path":[4,15,2,5],"span":[244,2,26]},{"path":[4,15,2,5,4],"span":[244,2,10]},{"path":[4,15,2,5,5],"span":[244,11,17]},{"path":[4,15,2,5,1],"span":[244,18,21]},{"path":[4,15,2,5,3],"span":[244,24,25]},{"path":[4,15,2,6],"span":[245,2,33]},{"path":[4,15,2,6,4],"span":[245,2,10]},{"path":[4,15,2,6,5],"span":[245,11,17]},{"path":[4,15,2,6,1],"span":[245,18,28]},{"path":[4,15,2,6,3],"span":[245,31,32]},{"path":[4,15,2,7],"span":[246,2,32]},{"path":[4,15,2,7,4],"span":[246,2,10]},{"path":[4,15,2,7,5],"span":[246,11,17]},{"path":[4,15,2,7,1],"span":[246,18,27]},{"path":[4,15,2,7,3],"span":[246,30,31]},{"path":[4,16],"span":[249,0,279,1]},{"path":[4,16,1],"span":[249,8,20]},{"path":[4,16,2,0],"span":[250,2,29]},{"path":[4,16,2,0,4],"span":[250,2,10]},{"path":[4,16,2,0,5],"span":[250,11,16]},{"path":[4,16,2,0,1],"span":[250,17,24]},{"path":[4,16,2,0,3],"span":[250,27,28]},{"path":[4,16,2,1],"span":[253,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,16,2,1,4],"span":[253,2,10]},{"path":[4,16,2,1,5],"span":[253,11,16]},{"path":[4,16,2,1,1],"span":[253,17,24]},{"path":[4,16,2,1,3],"span":[253,27,28]},{"path":[4,16,2,2],"span":[256,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,16,2,2,4],"span":[256,2,10]},{"path":[4,16,2,2,5],"span":[256,11,16]},{"path":[4,16,2,2,1],"span":[256,17,25]},{"path":[4,16,2,2,3],"span":[256,28,29]},{"path":[4,16,2,3],"span":[259,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,16,2,3,4],"span":[259,2,10]},{"path":[4,16,2,3,5],"span":[259,11,16]},{"path":[4,16,2,3,1],"span":[259,17,26]},{"path":[4,16,2,3,3],"span":[259,29,30]},{"path":[4,16,2,4],"span":[261,2,30]},{"path":[4,16,2,4,4],"span":[261,2,10]},{"path":[4,16,2,4,5],"span":[261,11,15]},{"path":[4,16,2,4,1],"span":[261,16,25]},{"path":[4,16,2,4,3],"span":[261,28,29]},{"path":[4,16,2,5],"span":[262,2,29]},{"path":[4,16,2,5,4],"span":[262,2,10]},{"path":[4,16,2,5,5],"span":[262,11,17]},{"path":[4,16,2,5,1],"span":[262,18,24]},{"path":[4,16,2,5,3],"span":[262,27,28]},{"path":[4,16,2,6],"span":[263,2,33]},{"path":[4,16,2,6,4],"span":[263,2,10]},{"path":[4,16,2,6,5],"span":[263,11,17]},{"path":[4,16,2,6,1],"span":[263,18,27]},{"path":[4,16,2,6,3],"span":[263,30,32]},{"path":[4,16,2,7],"span":[264,2,33]},{"path":[4,16,2,7,4],"span":[264,2,10]},{"path":[4,16,2,7,5],"span":[264,11,17]},{"path":[4,16,2,7,1],"span":[264,18,27]},{"path":[4,16,2,7,3],"span":[264,30,32]},{"path":[4,16,2,8],"span":[265,2,34]},{"path":[4,16,2,8,4],"span":[265,2,10]},{"path":[4,16,2,8,5],"span":[265,11,17]},{"path":[4,16,2,8,1],"span":[265,18,28]},{"path":[4,16,2,8,3],"span":[265,31,33]},{"path":[4,16,2,9],"span":[266,2,35]},{"path":[4,16,2,9,4],"span":[266,2,10]},{"path":[4,16,2,9,5],"span":[266,11,17]},{"path":[4,16,2,9,1],"span":[266,18,29]},{"path":[4,16,2,9,3],"span":[266,32,34]},{"path":[4,16,2,10],"span":[268,2,27]},{"path":[4,16,2,10,4],"span":[268,2,10]},{"path":[4,16,2,10,5],"span":[268,11,17]},{"path":[4,16,2,10,1],"span":[268,18,21]},{"path":[4,16,2,10,3],"span":[268,24,26]},{"path":[4,16,2,11],"span":[269,2,27]},{"path":[4,16,2,11,4],"span":[269,2,10]},{"path":[4,16,2,11,5],"span":[269,11,16]},{"path":[4,16,2,11,1],"span":[269,17,21]},{"path":[4,16,2,11,3],"span":[269,24,26]},{"path":[4,16,2,12],"span":[271,2,38]},{"path":[4,16,2,12,4],"span":[271,2,10]},{"path":[4,16,2,12,6],"span":[271,11,27]},{"path":[4,16,2,12,1],"span":[271,28,32]},{"path":[4,16,2,12,3],"span":[271,35,37]},{"path":[4,16,2,13],"span":[274,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,13,4],"span":[274,2,10]},{"path":[4,16,2,13,6],"span":[274,11,23]},{"path":[4,16,2,13,1],"span":[274,24,37]},{"path":[4,16,2,13,3],"span":[274,40,42]},{"path":[4,16,2,14],"span":[276,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,14,4],"span":[276,2,10]},{"path":[4,16,2,14,6],"span":[276,11,23]},{"path":[4,16,2,14,1],"span":[276,24,37]},{"path":[4,16,2,14,3],"span":[276,40,42]},{"path":[4,16,2,15],"span":[278,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,15,4],"span":[278,2,10]},{"path":[4,16,2,15,6],"span":[278,11,23]},{"path":[4,16,2,15,1],"span":[278,24,38]},{"path":[4,16,2,15,3],"span":[278,41,43]},{"path":[4,17],"span":[281,0,286,1]},{"path":[4,17,1],"span":[281,8,24]},{"path":[4,17,2,0],"span":[282,2,35]},{"path":[4,17,2,0,4],"span":[282,2,10]},{"path":[4,17,2,0,5],"span":[282,11,17]},{"path":[4,17,2,0,1],"span":[282,18,30]},{"path":[4,17,2,0,3],"span":[282,33,34]},{"path":[4,17,2,1],"span":[283,2,28]},{"path":[4,17,2,1,4],"span":[283,2,10]},{"path":[4,17,2,1,5],"span":[283,11,17]},{"path":[4,17,2,1,1],"span":[283,18,23]},{"path":[4,17,2,1,3],"span":[283,26,27]},{"path":[4,17,2,2],"span":[284,2,35]},{"path":[4,17,2,2,4],"span":[284,2,10]},{"path":[4,17,2,2,5],"span":[284,11,17]},{"path":[4,17,2,2,1],"span":[284,18,30]},{"path":[4,17,2,2,3],"span":[284,33,34]},{"path":[4,17,2,3],"span":[285,2,36]},{"path":[4,17,2,3,4],"span":[285,2,10]},{"path":[4,17,2,3,5],"span":[285,11,17]},{"path":[4,17,2,3,1],"span":[285,18,31]},{"path":[4,17,2,3,3],"span":[285,34,35]},{"path":[4,18],"span":[288,0,315,1]},{"path":[4,18,1],"span":[288,8,33]},{"path":[4,18,2,0],"span":[290,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,18,2,0,4],"span":[290,2,10]},{"path":[4,18,2,0,5],"span":[290,11,16]},{"path":[4,18,2,0,1],"span":[290,17,19]},{"path":[4,18,2,0,3],"span":[290,22,23]},{"path":[4,18,2,1],"span":[292,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,18,2,1,4],"span":[292,2,10]},{"path":[4,18,2,1,5],"span":[292,11,16]},{"path":[4,18,2,1,1],"span":[292,17,24]},{"path":[4,18,2,1,3],"span":[292,27,28]},{"path":[4,18,2,2],"span":[294,2,27],"leadingComments":" normalized name\n"},{"path":[4,18,2,2,4],"span":[294,2,10]},{"path":[4,18,2,2,5],"span":[294,11,17]},{"path":[4,18,2,2,1],"span":[294,18,22]},{"path":[4,18,2,2,3],"span":[294,25,26]},{"path":[4,18,2,3],"span":[296,2,30],"leadingComments":" normalized version\n"},{"path":[4,18,2,3,4],"span":[296,2,10]},{"path":[4,18,2,3,5],"span":[296,11,17]},{"path":[4,18,2,3,1],"span":[296,18,25]},{"path":[4,18,2,3,3],"span":[296,28,29]},{"path":[4,18,2,4],"span":[298,2,28],"leadingComments":" normalized build\n"},{"path":[4,18,2,4,4],"span":[298,2,10]},{"path":[4,18,2,4,5],"span":[298,11,17]},{"path":[4,18,2,4,1],"span":[298,18,23]},{"path":[4,18,2,4,3],"span":[298,26,27]},{"path":[4,18,2,5],"span":[300,2,33],"leadingComments":" normalized firmware version\n"},{"path":[4,18,2,5,4],"span":[300,2,10]},{"path":[4,18,2,5,5],"span":[300,11,17]},{"path":[4,18,2,5,1],"span":[300,18,28]},{"path":[4,18,2,5,3],"span":[300,31,32]},{"path":[4,18,2,6],"span":[302,2,26],"leadingComments":" normalized cpe\n"},{"path":[4,18,2,6,4],"span":[302,2,10]},{"path":[4,18,2,6,5],"span":[302,11,17]},{"path":[4,18,2,6,1],"span":[302,18,21]},{"path":[4,18,2,6,3],"span":[302,24,25]},{"path":[4,18,2,7],"span":[305,2,29],"leadingComments":" normalized firmware cpe\n"},{"path":[4,18,2,7,4],"span":[305,2,10]},{"path":[4,18,2,7,5],"span":[305,11,17]},{"path":[4,18,2,7,1],"span":[305,18,24]},{"path":[4,18,2,7,3],"span":[305,27,28]},{"path":[4,18,2,8],"span":[308,2,26],"leadingComments":" normalized rank of data quality\n"},{"path":[4,18,2,8,4],"span":[308,2,10]},{"path":[4,18,2,8,5],"span":[308,11,16]},{"path":[4,18,2,8,1],"span":[308,17,21]},{"path":[4,18,2,8,3],"span":[308,24,25]},{"path":[4,18,2,9],"span":[311,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,18,2,9,4],"span":[311,2,10]},{"path":[4,18,2,9,6],"span":[311,11,23]},{"path":[4,18,2,9,1],"span":[311,24,37]},{"path":[4,18,2,9,3],"span":[311,40,42]},{"path":[4,18,2,10],"span":[314,2,37],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,18,2,10,4],"span":[314,2,10]},{"path":[4,18,2,10,6],"span":[314,11,20]},{"path":[4,18,2,10,1],"span":[314,21,31]},{"path":[4,18,2,10,3],"span":[314,34,36]},{"path":[4,19],"span":[317,0,356,1]},{"path":[4,19,1],"span":[317,8,23]},{"path":[4,19,2,0],"span":[318,2,52]},{"path":[4,19,2,0,4],"span":[318,2,10]},{"path":[4,19,2,0,6],"span":[318,11,36]},{"path":[4,19,2,0,1],"span":[318,37,47]},{"path":[4,19,2,0,3],"span":[318,50,51]},{"path":[4,19,2,1],"span":[320,2,41],"trailingComments":" \tx64-based PC,x86_64\tWindows, Linux, Mac\n"},{"path":[4,19,2,1,4],"span":[320,2,10]},{"path":[4,19,2,1,5],"span":[320,11,17]},{"path":[4,19,2,1,1],"span":[320,24,36]},{"path":[4,19,2,1,3],"span":[320,39,40]},{"path":[4,19,2,2],"span":[321,2,52],"trailingComments":"\tMultiprocessor Free\tWindows\n"},{"path":[4,19,2,2,4],"span":[321,2,10]},{"path":[4,19,2,2,5],"span":[321,11,17]},{"path":[4,19,2,2,1],"span":[321,24,46]},{"path":[4,19,2,2,3],"span":[321,49,51]},{"path":[4,19,2,3],"span":[322,2,58],"trailingComments":"\t2022-06-20 18:22:59.000\tWindows\n"},{"path":[4,19,2,3,4],"span":[322,2,10]},{"path":[4,19,2,3,6],"span":[322,11,36]},{"path":[4,19,2,3,1],"span":[322,40,52]},{"path":[4,19,2,3,3],"span":[322,55,57]},{"path":[4,19,2,4],"span":[323,2,36],"trailingComments":"\t0\tWindows\n"},{"path":[4,19,2,4,4],"span":[323,2,10]},{"path":[4,19,2,4,5],"span":[323,11,15]},{"path":[4,19,2,4,1],"span":[323,16,30]},{"path":[4,19,2,4,3],"span":[323,33,35]},{"path":[4,19,2,5],"span":[324,2,44],"trailingComments":"\tDarwin 21.4.0,#41-Ubuntu SMP Tue Dec 3 00:27:35 UTC 2019,11.4.0.15.0\tLinux, Mac\n"},{"path":[4,19,2,5,4],"span":[324,2,10]},{"path":[4,19,2,5,5],"span":[324,11,17]},{"path":[4,19,2,5,1],"span":[324,24,38]},{"path":[4,19,2,5,3],"span":[324,41,43]},{"path":[4,19,2,6],"span":[325,2,46],"trailingComments":"Linux,SunOS\tLinux\n"},{"path":[4,19,2,6,4],"span":[325,2,10]},{"path":[4,19,2,6,5],"span":[325,11,17]},{"path":[4,19,2,6,1],"span":[325,24,35]},{"path":[4,19,2,6,3],"span":[325,43,45]},{"path":[4,19,2,7],"span":[326,2,44],"trailingComments":"\t5.0.0-38-generic,5.11\tLinux\n"},{"path":[4,19,2,7,4],"span":[326,2,10]},{"path":[4,19,2,7,5],"span":[326,11,17]},{"path":[4,19,2,7,1],"span":[326,24,38]},{"path":[4,19,2,7,3],"span":[326,41,43]},{"path":[4,19,2,8],"span":[327,2,54],"trailingComments":"0\tWindows\n"},{"path":[4,19,2,8,4],"span":[327,2,10]},{"path":[4,19,2,8,5],"span":[327,11,16]},{"path":[4,19,2,8,1],"span":[327,24,42]},{"path":[4,19,2,8,3],"span":[327,51,53]},{"path":[4,19,2,9],"span":[328,2,54],"trailingComments":"2097024,137438950000,8589934464\tWindows\n"},{"path":[4,19,2,9,4],"span":[328,2,10]},{"path":[4,19,2,9,5],"span":[328,11,16]},{"path":[4,19,2,9,1],"span":[328,24,47]},{"path":[4,19,2,9,3],"span":[328,51,53]},{"path":[4,19,2,10],"span":[329,2,46],"trailingComments":"Lansweeper\tWindows\n"},{"path":[4,19,2,10,4],"span":[329,2,10]},{"path":[4,19,2,10,5],"span":[329,11,17]},{"path":[4,19,2,10,1],"span":[329,24,36]},{"path":[4,19,2,10,3],"span":[329,43,45]},{"path":[4,19,2,11],"span":[330,2,46],"trailingComments":"Windows 10 Enterprise,macOS 12.3.1 (21E258),Ubuntu 20.04.4 LTS\tWindows, Linux, Mac\n"},{"path":[4,19,2,11,4],"span":[330,2,10]},{"path":[4,19,2,11,5],"span":[330,16,22]},{"path":[4,19,2,11,1],"span":[330,24,34]},{"path":[4,19,2,11,3],"span":[330,43,45]},{"path":[4,19,2,12],"span":[331,2,46],"trailingComments":"C:\\Windows\tWindows\n"},{"path":[4,19,2,12,4],"span":[331,2,10]},{"path":[4,19,2,12,5],"span":[331,11,17]},{"path":[4,19,2,12,1],"span":[331,24,36]},{"path":[4,19,2,12,3],"span":[331,43,45]},{"path":[4,19,2,13],"span":[332,2,46],"trailingComments":"C:\tWindows\n"},{"path":[4,19,2,13,4],"span":[332,2,10]},{"path":[4,19,2,13,5],"span":[332,11,17]},{"path":[4,19,2,13,1],"span":[332,24,39]},{"path":[4,19,2,13,3],"span":[332,43,45]},{"path":[4,19,2,14],"span":[333,2,46],"trailingComments":"Pro, Enterprise, Datacenter\tWindows\n"},{"path":[4,19,2,14,4],"span":[333,2,10]},{"path":[4,19,2,14,5],"span":[333,11,17]},{"path":[4,19,2,14,1],"span":[333,24,34]},{"path":[4,19,2,14,3],"span":[333,43,45]},{"path":[4,19,2,15],"span":[334,2,38],"trailingComments":"Windows 7, Windows 10, Windows Server 2019, Windows Server 2022, Ubuntu, Fedora, macOS Catalina, macOS Monterey\tWindows, Linux, Mac\n"},{"path":[4,19,2,15,4],"span":[334,2,10]},{"path":[4,19,2,15,5],"span":[334,11,17]},{"path":[4,19,2,15,1],"span":[334,24,31]},{"path":[4,19,2,15,3],"span":[334,35,37]},{"path":[4,19,2,16],"span":[335,2,54],"trailingComments":"\\Device\\HarddiskVolume3\tWindows\n"},{"path":[4,19,2,16,4],"span":[335,2,10]},{"path":[4,19,2,16,5],"span":[335,11,17]},{"path":[4,19,2,16,1],"span":[335,24,45]},{"path":[4,19,2,16,3],"span":[335,51,53]},{"path":[4,19,2,17],"span":[336,2,38],"trailingComments":"Windows, MacOS, Linux, Unix\tWindows, Linux, Mac\n"},{"path":[4,19,2,17,4],"span":[336,2,10]},{"path":[4,19,2,17,5],"span":[336,11,17]},{"path":[4,19,2,17,1],"span":[336,24,31]},{"path":[4,19,2,17,3],"span":[336,35,37]},{"path":[4,19,2,18],"span":[337,2,46],"trailingComments":"\t00355-62792-31115-AAOEM\tWindows\n"},{"path":[4,19,2,18,4],"span":[337,2,10]},{"path":[4,19,2,18,5],"span":[337,11,17]},{"path":[4,19,2,18,1],"span":[337,24,40]},{"path":[4,19,2,18,3],"span":[337,43,45]},{"path":[4,19,2,19],"span":[338,2,49],"trailingComments":"\tC:\\Windows\\System32\tWindows\n"},{"path":[4,19,2,19,4],"span":[338,2,10]},{"path":[4,19,2,19,5],"span":[338,11,17]},{"path":[4,19,2,19,1],"span":[338,24,43]},{"path":[4,19,2,19,3],"span":[338,46,48]},{"path":[4,19,2,20],"span":[339,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,19,2,20,4],"span":[339,2,10]},{"path":[4,19,2,20,5],"span":[339,11,17]},{"path":[4,19,2,20,1],"span":[339,24,46]},{"path":[4,19,2,20,3],"span":[339,50,52]},{"path":[4,19,2,21],"span":[340,2,46],"trailingComments":"SmallBusinessServer,TerminalServices\tWindows\n"},{"path":[4,19,2,21,4],"span":[340,2,10]},{"path":[4,19,2,21,6],"span":[340,11,22]},{"path":[4,19,2,21,1],"span":[340,23,36]},{"path":[4,19,2,21,3],"span":[340,43,45]},{"path":[4,19,2,22],"span":[341,2,46],"trailingComments":"Andy\tWindows\n"},{"path":[4,19,2,22,4],"span":[341,2,10]},{"path":[4,19,2,22,5],"span":[341,11,17]},{"path":[4,19,2,22,1],"span":[341,24,39]},{"path":[4,19,2,22,3],"span":[341,43,45]},{"path":[4,19,2,23],"span":[342,2,54],"trailingComments":"Service Pack 3\tWindows\n"},{"path":[4,19,2,23,4],"span":[342,2,10]},{"path":[4,19,2,23,5],"span":[342,11,17]},{"path":[4,19,2,23,1],"span":[342,24,41]},{"path":[4,19,2,23,3],"span":[342,51,53]},{"path":[4,19,2,24],"span":[343,2,54],"trailingComments":"3\tWindows\n"},{"path":[4,19,2,24,4],"span":[343,2,10]},{"path":[4,19,2,24,5],"span":[343,11,16]},{"path":[4,19,2,24,1],"span":[343,24,40]},{"path":[4,19,2,24,3],"span":[343,51,53]},{"path":[4,19,2,25],"span":[344,2,46],"trailingComments":"\t0\tWindows\n"},{"path":[4,19,2,25,4],"span":[344,2,10]},{"path":[4,19,2,25,5],"span":[344,11,16]},{"path":[4,19,2,25,1],"span":[344,24,40]},{"path":[4,19,2,25,3],"span":[344,43,45]},{"path":[4,19,2,26],"span":[345,2,46],"trailingComments":"Communications,Datacenter Edition\tWindows\n"},{"path":[4,19,2,26,4],"span":[345,2,10]},{"path":[4,19,2,26,6],"span":[345,11,22]},{"path":[4,19,2,26,1],"span":[345,23,33]},{"path":[4,19,2,26,3],"span":[345,43,45]},{"path":[4,19,2,27],"span":[346,2,40],"trailingComments":"\tworkstation (1), domain controller (2) or server (3)\tWindows\n"},{"path":[4,19,2,27,4],"span":[346,2,10]},{"path":[4,19,2,27,6],"span":[346,11,22]},{"path":[4,19,2,27,1],"span":[346,23,34]},{"path":[4,19,2,27,3],"span":[346,37,39]},{"path":[4,19,2,28],"span":[347,2,34],"trailingComments":"\t241F0742-E4BD-42F9-5B77-D243F25C3188\tWindows, Linux, Mac\n"},{"path":[4,19,2,28,4],"span":[347,2,10]},{"path":[4,19,2,28,5],"span":[347,11,17]},{"path":[4,19,2,28,1],"span":[347,24,28]},{"path":[4,19,2,28,3],"span":[347,31,33]},{"path":[4,19,2,29],"span":[348,2,37],"trailingComments":"\t22H2\tWindows\n"},{"path":[4,19,2,29,4],"span":[348,2,10]},{"path":[4,19,2,29,5],"span":[348,11,17]},{"path":[4,19,2,29,1],"span":[348,24,31]},{"path":[4,19,2,29,3],"span":[348,34,36]},{"path":[4,19,2,30],"span":[349,2,42],"trailingComments":"\tWindows, Mac, Linux examples: 10.0.19045.2965, 12.3.1 (21E258),20.04.4\tWindows\n"},{"path":[4,19,2,30,4],"span":[349,2,10]},{"path":[4,19,2,30,5],"span":[349,11,17]},{"path":[4,19,2,30,1],"span":[349,24,36]},{"path":[4,19,2,30,3],"span":[349,39,41]},{"path":[4,19,2,31],"span":[350,2,43],"trailingComments":"\tWindows, Mac, Linux examples: 10,12,22\tWindows, Linux, Mac\n"},{"path":[4,19,2,31,4],"span":[350,2,10]},{"path":[4,19,2,31,5],"span":[350,11,17]},{"path":[4,19,2,31,1],"span":[350,24,37]},{"path":[4,19,2,31,3],"span":[350,40,42]},{"path":[4,19,2,32],"span":[351,2,43],"trailingComments":"\tWindows, Mac, Linux examples: 0,3,04\tWindows, Linux, Mac\n"},{"path":[4,19,2,32,4],"span":[351,2,10]},{"path":[4,19,2,32,5],"span":[351,11,17]},{"path":[4,19,2,32,1],"span":[351,24,37]},{"path":[4,19,2,32,3],"span":[351,40,42]},{"path":[4,19,2,33],"span":[352,2,52],"trailingComments":"\tWindows, Mac, Linux examples: 19045,1,4\tWindows, Linux, Mac\n"},{"path":[4,19,2,33,4],"span":[352,2,10]},{"path":[4,19,2,33,5],"span":[352,11,17]},{"path":[4,19,2,33,1],"span":[352,24,46]},{"path":[4,19,2,33,3],"span":[352,49,51]},{"path":[4,19,2,34],"span":[353,2,52],"trailingComments":"\tWindows, Mac examples: 2965,21E258\tWindows, Linux, Mac\n"},{"path":[4,19,2,34,4],"span":[353,2,10]},{"path":[4,19,2,34,5],"span":[353,11,17]},{"path":[4,19,2,34,1],"span":[353,24,46]},{"path":[4,19,2,34,3],"span":[353,49,51]},{"path":[4,19,2,35],"span":[354,2,44],"trailingComments":"\t16729456\tWindows\n"},{"path":[4,19,2,35,4],"span":[354,2,10]},{"path":[4,19,2,35,5],"span":[354,11,16]},{"path":[4,19,2,35,1],"span":[354,24,38]},{"path":[4,19,2,35,3],"span":[354,41,43]},{"path":[4,20],"span":[358,0,379,1]},{"path":[4,20,1],"span":[358,8,37]},{"path":[4,20,2,0],"span":[360,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,20,2,0,4],"span":[360,2,10]},{"path":[4,20,2,0,5],"span":[360,11,16]},{"path":[4,20,2,0,1],"span":[360,17,19]},{"path":[4,20,2,0,3],"span":[360,22,23]},{"path":[4,20,2,1],"span":[363,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,20,2,1,4],"span":[363,2,10]},{"path":[4,20,2,1,5],"span":[363,11,16]},{"path":[4,20,2,1,1],"span":[363,17,24]},{"path":[4,20,2,1,3],"span":[363,27,29]},{"path":[4,20,2,2],"span":[365,2,27]},{"path":[4,20,2,2,4],"span":[365,2,10]},{"path":[4,20,2,2,5],"span":[365,11,17]},{"path":[4,20,2,2,1],"span":[365,18,22]},{"path":[4,20,2,2,3],"span":[365,25,26]},{"path":[4,20,2,3],"span":[366,2,30]},{"path":[4,20,2,3,4],"span":[366,2,10]},{"path":[4,20,2,3,5],"span":[366,11,17]},{"path":[4,20,2,3,1],"span":[366,18,25]},{"path":[4,20,2,3,3],"span":[366,28,29]},{"path":[4,20,2,4],"span":[367,2,28]},{"path":[4,20,2,4,4],"span":[367,2,10]},{"path":[4,20,2,4,5],"span":[367,11,17]},{"path":[4,20,2,4,1],"span":[367,18,23]},{"path":[4,20,2,4,3],"span":[367,26,27]},{"path":[4,20,2,5],"span":[369,2,33]},{"path":[4,20,2,5,4],"span":[369,2,10]},{"path":[4,20,2,5,5],"span":[369,11,17]},{"path":[4,20,2,5,1],"span":[369,18,28]},{"path":[4,20,2,5,3],"span":[369,31,32]},{"path":[4,20,2,6],"span":[371,2,26]},{"path":[4,20,2,6,4],"span":[371,2,10]},{"path":[4,20,2,6,5],"span":[371,11,17]},{"path":[4,20,2,6,1],"span":[371,18,21]},{"path":[4,20,2,6,3],"span":[371,24,25]},{"path":[4,20,2,7],"span":[372,2,29]},{"path":[4,20,2,7,4],"span":[372,2,10]},{"path":[4,20,2,7,5],"span":[372,11,17]},{"path":[4,20,2,7,1],"span":[372,18,24]},{"path":[4,20,2,7,3],"span":[372,27,28]},{"path":[4,20,2,8],"span":[374,2,26]},{"path":[4,20,2,8,4],"span":[374,2,10]},{"path":[4,20,2,8,5],"span":[374,11,16]},{"path":[4,20,2,8,1],"span":[374,17,21]},{"path":[4,20,2,8,3],"span":[374,24,25]},{"path":[4,20,8,0],"span":[376,2,378,3]},{"path":[4,20,8,0,1],"span":[376,8,12]},{"path":[4,20,2,9],"span":[377,4,54]},{"path":[4,20,2,9,6],"span":[377,4,40]},{"path":[4,20,2,9,1],"span":[377,41,48]},{"path":[4,20,2,9,3],"span":[377,51,53]},{"path":[4,21],"span":[383,0,399,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,21,1],"span":[383,8,28]},{"path":[4,21,2,0],"span":[385,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,21,2,0,5],"span":[385,2,8]},{"path":[4,21,2,0,1],"span":[385,9,11]},{"path":[4,21,2,0,3],"span":[385,14,15]},{"path":[4,21,2,1],"span":[388,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,21,2,1,4],"span":[388,2,10]},{"path":[4,21,2,1,5],"span":[388,11,17]},{"path":[4,21,2,1,1],"span":[388,18,22]},{"path":[4,21,2,1,3],"span":[388,25,26]},{"path":[4,21,2,2],"span":[390,2,54]},{"path":[4,21,2,2,4],"span":[390,2,10]},{"path":[4,21,2,2,6],"span":[390,11,36]},{"path":[4,21,2,2,1],"span":[390,37,49]},{"path":[4,21,2,2,3],"span":[390,52,53]},{"path":[4,21,2,3],"span":[393,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,21,2,3,4],"span":[393,2,10]},{"path":[4,21,2,3,5],"span":[393,11,17]},{"path":[4,21,2,3,1],"span":[393,18,28]},{"path":[4,21,2,3,3],"span":[393,31,32]},{"path":[4,21,2,4],"span":[395,2,31]},{"path":[4,21,2,4,4],"span":[395,2,10]},{"path":[4,21,2,4,5],"span":[395,11,17]},{"path":[4,21,2,4,1],"span":[395,18,26]},{"path":[4,21,2,4,3],"span":[395,29,30]},{"path":[4,21,2,5],"span":[397,2,43]},{"path":[4,21,2,5,4],"span":[397,2,10]},{"path":[4,21,2,5,5],"span":[397,11,17]},{"path":[4,21,2,5,1],"span":[397,18,38]},{"path":[4,21,2,5,3],"span":[397,41,42]},{"path":[4,22],"span":[402,0,455,1],"leadingComments":" deprecated\n"},{"path":[4,22,1],"span":[402,8,44]},{"path":[4,22,2,0],"span":[403,2,30]},{"path":[4,22,2,0,4],"span":[403,2,10]},{"path":[4,22,2,0,5],"span":[403,11,17]},{"path":[4,22,2,0,1],"span":[403,18,25]},{"path":[4,22,2,0,3],"span":[403,28,29]},{"path":[4,22,2,1],"span":[404,2,34]},{"path":[4,22,2,1,4],"span":[404,2,10]},{"path":[4,22,2,1,5],"span":[404,11,16]},{"path":[4,22,2,1,1],"span":[404,17,29]},{"path":[4,22,2,1,3],"span":[404,32,33]},{"path":[4,22,2,2],"span":[405,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,22,2,2,4],"span":[405,2,10]},{"path":[4,22,2,2,5],"span":[405,11,17]},{"path":[4,22,2,2,1],"span":[405,18,23]},{"path":[4,22,2,2,3],"span":[405,26,27]},{"path":[4,22,2,3],"span":[406,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,22,2,3,4],"span":[406,2,10]},{"path":[4,22,2,3,5],"span":[406,11,17]},{"path":[4,22,2,3,1],"span":[406,18,30]},{"path":[4,22,2,3,3],"span":[406,33,34]},{"path":[4,22,2,4],"span":[407,2,41]},{"path":[4,22,2,4,4],"span":[407,2,10]},{"path":[4,22,2,4,5],"span":[407,11,15]},{"path":[4,22,2,4,1],"span":[407,16,36]},{"path":[4,22,2,4,3],"span":[407,39,40]},{"path":[4,22,2,5],"span":[408,2,35]},{"path":[4,22,2,5,4],"span":[408,2,10]},{"path":[4,22,2,5,5],"span":[408,11,15]},{"path":[4,22,2,5,1],"span":[408,16,30]},{"path":[4,22,2,5,3],"span":[408,33,34]},{"path":[4,22,2,6],"span":[409,2,39]},{"path":[4,22,2,6,4],"span":[409,2,10]},{"path":[4,22,2,6,5],"span":[409,11,15]},{"path":[4,22,2,6,1],"span":[409,16,34]},{"path":[4,22,2,6,3],"span":[409,37,38]},{"path":[4,22,2,7],"span":[411,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,22,2,7,4],"span":[411,2,10]},{"path":[4,22,2,7,5],"span":[411,11,17]},{"path":[4,22,2,7,1],"span":[411,18,25]},{"path":[4,22,2,7,3],"span":[411,28,30]},{"path":[4,22,2,8],"span":[413,2,35]},{"path":[4,22,2,8,4],"span":[413,2,10]},{"path":[4,22,2,8,5],"span":[413,11,17]},{"path":[4,22,2,8,1],"span":[413,18,29]},{"path":[4,22,2,8,3],"span":[413,32,34]},{"path":[4,22,2,9],"span":[414,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,22,2,9,4],"span":[414,2,10]},{"path":[4,22,2,9,5],"span":[414,11,17]},{"path":[4,22,2,9,1],"span":[414,18,30]},{"path":[4,22,2,9,3],"span":[414,33,35]},{"path":[4,22,2,10],"span":[415,2,34]},{"path":[4,22,2,10,4],"span":[415,2,10]},{"path":[4,22,2,10,5],"span":[415,11,17]},{"path":[4,22,2,10,1],"span":[415,18,28]},{"path":[4,22,2,10,3],"span":[415,31,33]},{"path":[4,22,2,11],"span":[416,2,31]},{"path":[4,22,2,11,4],"span":[416,2,10]},{"path":[4,22,2,11,5],"span":[416,11,17]},{"path":[4,22,2,11,1],"span":[416,18,25]},{"path":[4,22,2,11,3],"span":[416,28,30]},{"path":[4,22,2,12],"span":[417,2,32]},{"path":[4,22,2,12,4],"span":[417,2,10]},{"path":[4,22,2,12,5],"span":[417,11,17]},{"path":[4,22,2,12,1],"span":[417,18,26]},{"path":[4,22,2,12,3],"span":[417,29,31]},{"path":[4,22,2,13],"span":[418,2,36]},{"path":[4,22,2,13,4],"span":[418,2,10]},{"path":[4,22,2,13,5],"span":[418,11,17]},{"path":[4,22,2,13,1],"span":[418,18,30]},{"path":[4,22,2,13,3],"span":[418,33,35]},{"path":[4,22,2,14],"span":[419,2,35]},{"path":[4,22,2,14,4],"span":[419,2,10]},{"path":[4,22,2,14,5],"span":[419,11,17]},{"path":[4,22,2,14,1],"span":[419,18,29]},{"path":[4,22,2,14,3],"span":[419,32,34]},{"path":[4,22,2,15],"span":[420,2,39]},{"path":[4,22,2,15,4],"span":[420,2,10]},{"path":[4,22,2,15,5],"span":[420,11,16]},{"path":[4,22,2,15,1],"span":[420,17,33]},{"path":[4,22,2,15,3],"span":[420,36,38]},{"path":[4,22,2,16],"span":[421,2,27]},{"path":[4,22,2,16,4],"span":[421,2,10]},{"path":[4,22,2,16,5],"span":[421,11,15]},{"path":[4,22,2,16,1],"span":[421,16,21]},{"path":[4,22,2,16,3],"span":[421,24,26]},{"path":[4,22,2,17],"span":[422,2,35]},{"path":[4,22,2,17,4],"span":[422,2,10]},{"path":[4,22,2,17,5],"span":[422,11,17]},{"path":[4,22,2,17,1],"span":[422,18,29]},{"path":[4,22,2,17,3],"span":[422,32,34]},{"path":[4,22,2,18],"span":[423,2,52]},{"path":[4,22,2,18,4],"span":[423,2,10]},{"path":[4,22,2,18,5],"span":[423,11,17]},{"path":[4,22,2,18,1],"span":[423,18,46]},{"path":[4,22,2,18,3],"span":[423,49,51]},{"path":[4,22,2,19],"span":[424,2,55]},{"path":[4,22,2,19,4],"span":[424,2,10]},{"path":[4,22,2,19,6],"span":[424,11,36]},{"path":[4,22,2,19,1],"span":[424,37,49]},{"path":[4,22,2,19,3],"span":[424,52,54]},{"path":[4,22,2,20],"span":[425,2,47]},{"path":[4,22,2,20,4],"span":[425,2,10]},{"path":[4,22,2,20,5],"span":[425,11,17]},{"path":[4,22,2,20,1],"span":[425,18,41]},{"path":[4,22,2,20,3],"span":[425,44,46]},{"path":[4,22,2,21],"span":[426,2,48]},{"path":[4,22,2,21,4],"span":[426,2,10]},{"path":[4,22,2,21,5],"span":[426,11,17]},{"path":[4,22,2,21,1],"span":[426,18,42]},{"path":[4,22,2,21,3],"span":[426,45,47]},{"path":[4,22,2,22],"span":[427,2,36]},{"path":[4,22,2,22,4],"span":[427,2,10]},{"path":[4,22,2,22,5],"span":[427,11,17]},{"path":[4,22,2,22,1],"span":[427,18,30]},{"path":[4,22,2,22,3],"span":[427,33,35]},{"path":[4,22,2,23],"span":[428,2,40]},{"path":[4,22,2,23,4],"span":[428,2,10]},{"path":[4,22,2,23,6],"span":[428,11,22]},{"path":[4,22,2,23,1],"span":[428,23,34]},{"path":[4,22,2,23,3],"span":[428,37,39]},{"path":[4,22,2,24],"span":[429,2,45]},{"path":[4,22,2,24,4],"span":[429,2,10]},{"path":[4,22,2,24,6],"span":[429,11,22]},{"path":[4,22,2,24,1],"span":[429,23,39]},{"path":[4,22,2,24,3],"span":[429,42,44]},{"path":[4,22,2,25],"span":[430,2,36]},{"path":[4,22,2,25,4],"span":[430,2,10]},{"path":[4,22,2,25,6],"span":[430,11,22]},{"path":[4,22,2,25,1],"span":[430,23,30]},{"path":[4,22,2,25,3],"span":[430,33,35]},{"path":[4,22,2,26],"span":[431,2,39]},{"path":[4,22,2,26,4],"span":[431,2,10]},{"path":[4,22,2,26,5],"span":[431,11,17]},{"path":[4,22,2,26,1],"span":[431,18,33]},{"path":[4,22,2,26,3],"span":[431,36,38]},{"path":[4,22,2,27],"span":[432,2,43]},{"path":[4,22,2,27,4],"span":[432,2,10]},{"path":[4,22,2,27,5],"span":[432,11,17]},{"path":[4,22,2,27,1],"span":[432,18,37]},{"path":[4,22,2,27,3],"span":[432,40,42]},{"path":[4,22,2,28],"span":[433,2,39]},{"path":[4,22,2,28,4],"span":[433,2,10]},{"path":[4,22,2,28,5],"span":[433,11,17]},{"path":[4,22,2,28,1],"span":[433,18,33]},{"path":[4,22,2,28,3],"span":[433,36,38]},{"path":[4,22,2,29],"span":[434,2,37]},{"path":[4,22,2,29,4],"span":[434,2,10]},{"path":[4,22,2,29,5],"span":[434,11,17]},{"path":[4,22,2,29,1],"span":[434,18,31]},{"path":[4,22,2,29,3],"span":[434,34,36]},{"path":[4,22,2,30],"span":[435,2,50]},{"path":[4,22,2,30,4],"span":[435,2,10]},{"path":[4,22,2,30,5],"span":[435,11,17]},{"path":[4,22,2,30,1],"span":[435,18,44]},{"path":[4,22,2,30,3],"span":[435,47,49]},{"path":[4,22,2,31],"span":[436,2,50]},{"path":[4,22,2,31,4],"span":[436,2,10]},{"path":[4,22,2,31,5],"span":[436,11,17]},{"path":[4,22,2,31,1],"span":[436,18,44]},{"path":[4,22,2,31,3],"span":[436,47,49]},{"path":[4,22,2,32],"span":[437,2,51]},{"path":[4,22,2,32,4],"span":[437,2,10]},{"path":[4,22,2,32,5],"span":[437,11,17]},{"path":[4,22,2,32,1],"span":[437,18,45]},{"path":[4,22,2,32,3],"span":[437,48,50]},{"path":[4,22,2,33],"span":[438,2,30]},{"path":[4,22,2,33,4],"span":[438,2,10]},{"path":[4,22,2,33,5],"span":[438,11,17]},{"path":[4,22,2,33,1],"span":[438,18,24]},{"path":[4,22,2,33,3],"span":[438,27,29]},{"path":[4,22,2,34],"span":[439,2,37]},{"path":[4,22,2,34,4],"span":[439,2,10]},{"path":[4,22,2,34,5],"span":[439,11,17]},{"path":[4,22,2,34,1],"span":[439,18,31]},{"path":[4,22,2,34,3],"span":[439,34,36]},{"path":[4,22,2,35],"span":[440,2,40]},{"path":[4,22,2,35,4],"span":[440,2,10]},{"path":[4,22,2,35,5],"span":[440,11,17]},{"path":[4,22,2,35,1],"span":[440,18,34]},{"path":[4,22,2,35,3],"span":[440,37,39]},{"path":[4,22,2,36],"span":[441,2,49]},{"path":[4,22,2,36,4],"span":[441,2,10]},{"path":[4,22,2,36,5],"span":[441,11,17]},{"path":[4,22,2,36,1],"span":[441,18,43]},{"path":[4,22,2,36,3],"span":[441,46,48]},{"path":[4,22,2,37],"span":[442,2,49]},{"path":[4,22,2,37,4],"span":[442,2,10]},{"path":[4,22,2,37,5],"span":[442,11,17]},{"path":[4,22,2,37,1],"span":[442,18,43]},{"path":[4,22,2,37,3],"span":[442,46,48]},{"path":[4,22,2,38],"span":[443,2,41]},{"path":[4,22,2,38,4],"span":[443,2,10]},{"path":[4,22,2,38,5],"span":[443,11,17]},{"path":[4,22,2,38,1],"span":[443,18,35]},{"path":[4,22,2,38,3],"span":[443,38,40]},{"path":[4,22,2,39],"span":[444,2,45]},{"path":[4,22,2,39,4],"span":[444,2,10]},{"path":[4,22,2,39,5],"span":[444,11,17]},{"path":[4,22,2,39,1],"span":[444,18,39]},{"path":[4,22,2,39,3],"span":[444,42,44]},{"path":[4,22,2,40],"span":[445,2,42]},{"path":[4,22,2,40,4],"span":[445,2,10]},{"path":[4,22,2,40,5],"span":[445,11,17]},{"path":[4,22,2,40,1],"span":[445,18,36]},{"path":[4,22,2,40,3],"span":[445,39,41]},{"path":[4,22,2,41],"span":[446,2,46]},{"path":[4,22,2,41,4],"span":[446,2,10]},{"path":[4,22,2,41,5],"span":[446,11,17]},{"path":[4,22,2,41,1],"span":[446,18,40]},{"path":[4,22,2,41,3],"span":[446,43,45]},{"path":[4,22,2,42],"span":[447,2,41]},{"path":[4,22,2,42,4],"span":[447,2,10]},{"path":[4,22,2,42,6],"span":[447,11,22]},{"path":[4,22,2,42,1],"span":[447,23,35]},{"path":[4,22,2,42,3],"span":[447,38,40]},{"path":[4,22,2,43],"span":[448,2,34]},{"path":[4,22,2,43,4],"span":[448,2,10]},{"path":[4,22,2,43,5],"span":[448,11,17]},{"path":[4,22,2,43,1],"span":[448,18,28]},{"path":[4,22,2,43,3],"span":[448,31,33]},{"path":[4,22,2,44],"span":[449,2,36]},{"path":[4,22,2,44,4],"span":[449,2,10]},{"path":[4,22,2,44,5],"span":[449,11,17]},{"path":[4,22,2,44,1],"span":[449,18,30]},{"path":[4,22,2,44,3],"span":[449,33,35]},{"path":[4,22,2,45],"span":[450,2,40]},{"path":[4,22,2,45,4],"span":[450,2,10]},{"path":[4,22,2,45,5],"span":[450,11,17]},{"path":[4,22,2,45,1],"span":[450,18,34]},{"path":[4,22,2,45,3],"span":[450,37,39]},{"path":[4,22,2,46],"span":[451,2,66]},{"path":[4,22,2,46,4],"span":[451,2,10]},{"path":[4,22,2,46,5],"span":[451,11,15]},{"path":[4,22,2,46,1],"span":[451,16,60]},{"path":[4,22,2,46,3],"span":[451,63,65]},{"path":[4,22,2,47],"span":[452,2,60]},{"path":[4,22,2,47,4],"span":[452,2,10]},{"path":[4,22,2,47,5],"span":[452,11,15]},{"path":[4,22,2,47,1],"span":[452,16,54]},{"path":[4,22,2,47,3],"span":[452,57,59]},{"path":[4,22,2,48],"span":[453,2,55]},{"path":[4,22,2,48,4],"span":[453,2,10]},{"path":[4,22,2,48,5],"span":[453,11,15]},{"path":[4,22,2,48,1],"span":[453,16,49]},{"path":[4,22,2,48,3],"span":[453,52,54]},{"path":[4,22,2,49],"span":[454,2,64]},{"path":[4,22,2,49,4],"span":[454,2,10]},{"path":[4,22,2,49,5],"span":[454,11,17]},{"path":[4,22,2,49,1],"span":[454,18,58]},{"path":[4,22,2,49,3],"span":[454,61,63]},{"path":[4,23],"span":[458,0,461,1],"leadingComments":" Network Interface cards "},{"path":[4,23,1],"span":[458,8,25]},{"path":[4,23,2,0],"span":[459,2,42]},{"path":[4,23,2,0,6],"span":[459,2,27]},{"path":[4,23,2,0,1],"span":[459,28,37]},{"path":[4,23,2,0,3],"span":[459,40,41]},{"path":[4,23,2,1],"span":[460,2,42]},{"path":[4,23,2,1,4],"span":[460,2,10]},{"path":[4,23,2,1,6],"span":[460,11,27]},{"path":[4,23,2,1,1],"span":[460,28,37]},{"path":[4,23,2,1,3],"span":[460,40,41]},{"path":[4,24],"span":[463,0,486,1]},{"path":[4,24,1],"span":[463,8,24]},{"path":[4,24,2,0],"span":[464,2,18]},{"path":[4,24,2,0,5],"span":[464,2,8]},{"path":[4,24,2,0,1],"span":[464,9,13]},{"path":[4,24,2,0,3],"span":[464,16,17]},{"path":[4,24,2,1],"span":[465,2,18]},{"path":[4,24,2,1,5],"span":[465,2,8]},{"path":[4,24,2,1,1],"span":[465,9,13]},{"path":[4,24,2,1,3],"span":[465,16,17]},{"path":[4,24,2,2],"span":[466,2,22]},{"path":[4,24,2,2,5],"span":[466,2,8]},{"path":[4,24,2,2,1],"span":[466,9,17]},{"path":[4,24,2,2,3],"span":[466,20,21]},{"path":[4,24,2,3],"span":[468,2,25]},{"path":[4,24,2,3,4],"span":[468,2,10]},{"path":[4,24,2,3,5],"span":[468,11,17]},{"path":[4,24,2,3,1],"span":[468,18,20]},{"path":[4,24,2,3,3],"span":[468,23,24]},{"path":[4,24,2,4],"span":[470,2,26]},{"path":[4,24,2,4,4],"span":[470,2,10]},{"path":[4,24,2,4,5],"span":[470,11,17]},{"path":[4,24,2,4,1],"span":[470,18,21]},{"path":[4,24,2,4,3],"span":[470,24,25]},{"path":[4,24,2,5],"span":[472,2,33]},{"path":[4,24,2,5,4],"span":[472,2,10]},{"path":[4,24,2,5,5],"span":[472,11,15]},{"path":[4,24,2,5,1],"span":[472,16,28]},{"path":[4,24,2,5,3],"span":[472,31,32]},{"path":[4,24,2,6],"span":[473,2,37]},{"path":[4,24,2,6,4],"span":[473,2,10]},{"path":[4,24,2,6,5],"span":[473,11,17]},{"path":[4,24,2,6,1],"span":[473,18,32]},{"path":[4,24,2,6,3],"span":[473,35,36]},{"path":[4,24,2,7],"span":[475,2,31]},{"path":[4,24,2,7,4],"span":[475,2,10]},{"path":[4,24,2,7,6],"span":[475,11,23]},{"path":[4,24,2,7,1],"span":[475,24,26]},{"path":[4,24,2,7,3],"span":[475,29,30]},{"path":[4,24,2,8],"span":[477,2,33]},{"path":[4,24,2,8,4],"span":[477,2,10]},{"path":[4,24,2,8,5],"span":[477,11,17]},{"path":[4,24,2,8,1],"span":[477,18,28]},{"path":[4,24,2,8,3],"span":[477,31,32]},{"path":[4,24,2,9],"span":[478,2,35]},{"path":[4,24,2,9,4],"span":[478,2,10]},{"path":[4,24,2,9,5],"span":[478,11,17]},{"path":[4,24,2,9,1],"span":[478,18,29]},{"path":[4,24,2,9,3],"span":[478,32,34]},{"path":[4,24,2,10],"span":[480,2,34]},{"path":[4,24,2,10,4],"span":[480,2,10]},{"path":[4,24,2,10,5],"span":[480,11,17]},{"path":[4,24,2,10,1],"span":[480,18,28]},{"path":[4,24,2,10,3],"span":[480,31,33]},{"path":[4,24,2,11],"span":[481,2,37]},{"path":[4,24,2,11,4],"span":[481,2,10]},{"path":[4,24,2,11,5],"span":[481,11,17]},{"path":[4,24,2,11,1],"span":[481,18,31]},{"path":[4,24,2,11,3],"span":[481,34,36]},{"path":[4,24,2,12],"span":[482,2,54]},{"path":[4,24,2,12,4],"span":[482,2,10]},{"path":[4,24,2,12,5],"span":[482,11,17]},{"path":[4,24,2,12,1],"span":[482,18,48]},{"path":[4,24,2,12,3],"span":[482,51,53]},{"path":[4,24,2,13],"span":[484,2,36]},{"path":[4,24,2,13,4],"span":[484,2,10]},{"path":[4,24,2,13,5],"span":[484,11,17]},{"path":[4,24,2,13,1],"span":[484,18,30]},{"path":[4,24,2,13,3],"span":[484,33,35]},{"path":[4,24,2,14],"span":[485,2,37]},{"path":[4,24,2,14,4],"span":[485,2,10]},{"path":[4,24,2,14,5],"span":[485,11,17]},{"path":[4,24,2,14,1],"span":[485,18,31]},{"path":[4,24,2,14,3],"span":[485,34,36]},{"path":[4,25],"span":[489,0,492,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,25,1],"span":[489,8,20]},{"path":[4,25,2,0],"span":[490,2,16]},{"path":[4,25,2,0,5],"span":[490,2,8]},{"path":[4,25,2,0,1],"span":[490,9,11]},{"path":[4,25,2,0,3],"span":[490,14,15]},{"path":[4,25,2,1],"span":[491,2,20]},{"path":[4,25,2,1,5],"span":[491,2,8]},{"path":[4,25,2,1,1],"span":[491,9,15]},{"path":[4,25,2,1,3],"span":[491,18,19]},{"path":[4,26],"span":[495,0,536,1],"leadingComments":" Processor *"},{"path":[4,26,1],"span":[495,8,17]},{"path":[4,26,2,0],"span":[496,2,21]},{"path":[4,26,2,0,5],"span":[496,2,8]},{"path":[4,26,2,0,1],"span":[496,10,14]},{"path":[4,26,2,0,3],"span":[496,17,18]},{"path":[4,26,2,1],"span":[497,2,36],"trailingComments":" Linux-only\n"},{"path":[4,26,2,1,4],"span":[497,2,10]},{"path":[4,26,2,1,5],"span":[497,11,17]},{"path":[4,26,2,1,1],"span":[497,18,31]},{"path":[4,26,2,1,3],"span":[497,34,35]},{"path":[4,26,2,2],"span":[498,2,35],"trailingComments":" Windows-only\n"},{"path":[4,26,2,2,4],"span":[498,2,10]},{"path":[4,26,2,2,5],"span":[498,11,16]},{"path":[4,26,2,2,1],"span":[498,17,30]},{"path":[4,26,2,2,3],"span":[498,33,34]},{"path":[4,26,2,3],"span":[499,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,26,2,3,4],"span":[499,2,10]},{"path":[4,26,2,3,6],"span":[499,11,22]},{"path":[4,26,2,3,1],"span":[499,23,35]},{"path":[4,26,2,3,3],"span":[499,38,39]},{"path":[4,26,2,4],"span":[500,2,34],"trailingComments":" Windows-only\n"},{"path":[4,26,2,4,4],"span":[500,2,10]},{"path":[4,26,2,4,5],"span":[500,11,16]},{"path":[4,26,2,4,1],"span":[500,17,29]},{"path":[4,26,2,4,3],"span":[500,32,33]},{"path":[4,26,2,5],"span":[501,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,26,2,5,4],"span":[501,2,10]},{"path":[4,26,2,5,5],"span":[501,11,17]},{"path":[4,26,2,5,1],"span":[501,18,27]},{"path":[4,26,2,5,3],"span":[501,30,31]},{"path":[4,26,2,6],"span":[502,2,33],"trailingComments":" Linux-only\n"},{"path":[4,26,2,6,4],"span":[502,2,10]},{"path":[4,26,2,6,5],"span":[502,11,17]},{"path":[4,26,2,6,1],"span":[502,18,28]},{"path":[4,26,2,6,3],"span":[502,31,32]},{"path":[4,26,2,7],"span":[503,2,30],"trailingComments":" Windows-only\n"},{"path":[4,26,2,7,4],"span":[503,2,10]},{"path":[4,26,2,7,5],"span":[503,11,17]},{"path":[4,26,2,7,1],"span":[503,18,25]},{"path":[4,26,2,7,3],"span":[503,28,29]},{"path":[4,26,2,8],"span":[504,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,26,2,8,4],"span":[504,2,10]},{"path":[4,26,2,8,5],"span":[504,11,16]},{"path":[4,26,2,8,1],"span":[504,17,36]},{"path":[4,26,2,8,3],"span":[504,39,40]},{"path":[4,26,2,9],"span":[505,2,33],"trailingComments":" Windows-only\n"},{"path":[4,26,2,9,4],"span":[505,2,10]},{"path":[4,26,2,9,5],"span":[505,11,16]},{"path":[4,26,2,9,1],"span":[505,17,27]},{"path":[4,26,2,9,3],"span":[505,30,32]},{"path":[4,26,2,10],"span":[506,2,33],"trailingComments":" Windows-only\n"},{"path":[4,26,2,10,4],"span":[506,2,10]},{"path":[4,26,2,10,5],"span":[506,11,17]},{"path":[4,26,2,10,1],"span":[506,18,27]},{"path":[4,26,2,10,3],"span":[506,30,32]},{"path":[4,26,2,11],"span":[507,2,41],"trailingComments":" Windows-only\n"},{"path":[4,26,2,11,4],"span":[507,2,10]},{"path":[4,26,2,11,5],"span":[507,11,16]},{"path":[4,26,2,11,1],"span":[507,17,35]},{"path":[4,26,2,11,3],"span":[507,38,40]},{"path":[4,26,2,12],"span":[508,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,26,2,12,4],"span":[508,2,10]},{"path":[4,26,2,12,6],"span":[508,11,22]},{"path":[4,26,2,12,1],"span":[508,23,29]},{"path":[4,26,2,12,3],"span":[508,32,34]},{"path":[4,26,2,13],"span":[509,2,41],"trailingComments":" Linux-only\n"},{"path":[4,26,2,13,4],"span":[509,2,10]},{"path":[4,26,2,13,5],"span":[509,11,17]},{"path":[4,26,2,13,1],"span":[509,18,35]},{"path":[4,26,2,13,3],"span":[509,38,40]},{"path":[4,26,2,14],"span":[510,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,26,2,14,4],"span":[510,2,10]},{"path":[4,26,2,14,5],"span":[510,11,16]},{"path":[4,26,2,14,1],"span":[510,17,34]},{"path":[4,26,2,14,3],"span":[510,37,39]},{"path":[4,26,2,15],"span":[511,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,26,2,15,4],"span":[511,2,10]},{"path":[4,26,2,15,5],"span":[511,11,16]},{"path":[4,26,2,15,1],"span":[511,17,34]},{"path":[4,26,2,15,3],"span":[511,37,39]},{"path":[4,26,2,16],"span":[512,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,26,2,16,4],"span":[512,2,10]},{"path":[4,26,2,16,5],"span":[512,11,16]},{"path":[4,26,2,16,1],"span":[512,17,33]},{"path":[4,26,2,16,3],"span":[512,36,38]},{"path":[4,26,2,17],"span":[513,2,41],"trailingComments":" Windows-only\n"},{"path":[4,26,2,17,4],"span":[513,2,10]},{"path":[4,26,2,17,5],"span":[513,11,16]},{"path":[4,26,2,17,1],"span":[513,17,35]},{"path":[4,26,2,17,3],"span":[513,38,40]},{"path":[4,26,2,18],"span":[514,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,26,2,18,4],"span":[514,2,10]},{"path":[4,26,2,18,5],"span":[514,11,16]},{"path":[4,26,2,18,1],"span":[514,17,33]},{"path":[4,26,2,18,3],"span":[514,36,38]},{"path":[4,26,2,19],"span":[515,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,26,2,19,4],"span":[515,2,10]},{"path":[4,26,2,19,5],"span":[515,11,16]},{"path":[4,26,2,19,1],"span":[515,17,22]},{"path":[4,26,2,19,3],"span":[515,25,27]},{"path":[4,26,2,20],"span":[516,2,44]},{"path":[4,26,2,20,4],"span":[516,2,10]},{"path":[4,26,2,20,5],"span":[516,11,16]},{"path":[4,26,2,20,1],"span":[516,17,36]},{"path":[4,26,2,20,3],"span":[516,39,41]},{"path":[4,26,2,21],"span":[517,2,38]},{"path":[4,26,2,21,4],"span":[517,2,10]},{"path":[4,26,2,21,5],"span":[517,11,17]},{"path":[4,26,2,21,1],"span":[517,18,30]},{"path":[4,26,2,21,3],"span":[517,33,35]},{"path":[4,26,2,22],"span":[518,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,26,2,22,4],"span":[518,2,10]},{"path":[4,26,2,22,5],"span":[518,11,16]},{"path":[4,26,2,22,1],"span":[518,17,36]},{"path":[4,26,2,22,3],"span":[518,39,41]},{"path":[4,26,2,23],"span":[519,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,26,2,23,4],"span":[519,2,10]},{"path":[4,26,2,23,5],"span":[519,11,16]},{"path":[4,26,2,23,1],"span":[519,17,36]},{"path":[4,26,2,23,3],"span":[519,39,41]},{"path":[4,26,2,24],"span":[520,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,26,2,24,4],"span":[520,2,10]},{"path":[4,26,2,24,5],"span":[520,11,16]},{"path":[4,26,2,24,1],"span":[520,17,29]},{"path":[4,26,2,24,3],"span":[520,32,34]},{"path":[4,26,2,25],"span":[521,2,32],"trailingComments":" Linux-only\n"},{"path":[4,26,2,25,4],"span":[521,2,10]},{"path":[4,26,2,25,5],"span":[521,11,17]},{"path":[4,26,2,25,1],"span":[521,18,26]},{"path":[4,26,2,25,3],"span":[521,29,31]},{"path":[4,26,2,26],"span":[522,2,45]},{"path":[4,26,2,26,4],"span":[522,2,10]},{"path":[4,26,2,26,5],"span":[522,11,16]},{"path":[4,26,2,26,1],"span":[522,17,37]},{"path":[4,26,2,26,3],"span":[522,40,42]},{"path":[4,26,2,27],"span":[523,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,26,2,27,4],"span":[523,2,10]},{"path":[4,26,2,27,5],"span":[523,11,17]},{"path":[4,26,2,27,1],"span":[523,18,30]},{"path":[4,26,2,27,3],"span":[523,33,35]},{"path":[4,26,2,28],"span":[524,2,43],"trailingComments":" Windows-only\n"},{"path":[4,26,2,28,4],"span":[524,2,10]},{"path":[4,26,2,28,6],"span":[524,11,22]},{"path":[4,26,2,28,1],"span":[524,23,37]},{"path":[4,26,2,28,3],"span":[524,40,42]},{"path":[4,26,2,29],"span":[525,2,31],"trailingComments":" Windows-only\n"},{"path":[4,26,2,29,4],"span":[525,2,10]},{"path":[4,26,2,29,5],"span":[525,11,16]},{"path":[4,26,2,29,1],"span":[525,17,25]},{"path":[4,26,2,29,3],"span":[525,28,30]},{"path":[4,26,2,30],"span":[526,2,42],"trailingComments":" Windows-only\n"},{"path":[4,26,2,30,4],"span":[526,2,10]},{"path":[4,26,2,30,5],"span":[526,11,17]},{"path":[4,26,2,30,1],"span":[526,18,36]},{"path":[4,26,2,30,3],"span":[526,39,41]},{"path":[4,26,2,31],"span":[527,2,31],"trailingComments":" Linux-only\n"},{"path":[4,26,2,31,4],"span":[527,2,10]},{"path":[4,26,2,31,5],"span":[527,11,16]},{"path":[4,26,2,31,1],"span":[527,18,25]},{"path":[4,26,2,31,3],"span":[527,28,30]},{"path":[4,26,2,32],"span":[528,2,35],"trailingComments":" Windows-only\n"},{"path":[4,26,2,32,4],"span":[528,2,10]},{"path":[4,26,2,32,6],"span":[528,11,22]},{"path":[4,26,2,32,1],"span":[528,23,29]},{"path":[4,26,2,32,3],"span":[528,32,34]},{"path":[4,26,2,33],"span":[529,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,26,2,33,4],"span":[529,2,10]},{"path":[4,26,2,33,5],"span":[529,11,16]},{"path":[4,26,2,33,1],"span":[529,17,25]},{"path":[4,26,2,33,3],"span":[529,28,30]},{"path":[4,26,2,34],"span":[530,2,54],"trailingComments":" Linux-only\n"},{"path":[4,26,2,34,4],"span":[530,2,10]},{"path":[4,26,2,34,5],"span":[530,11,16]},{"path":[4,26,2,34,1],"span":[530,17,48]},{"path":[4,26,2,34,3],"span":[530,51,53]},{"path":[4,26,2,35],"span":[531,2,33],"trailingComments":" Windows-only\n"},{"path":[4,26,2,35,4],"span":[531,2,10]},{"path":[4,26,2,35,5],"span":[531,11,17]},{"path":[4,26,2,35,1],"span":[531,18,27]},{"path":[4,26,2,35,3],"span":[531,30,32]},{"path":[4,26,2,36],"span":[532,2,43],"trailingComments":" Windows-only\n"},{"path":[4,26,2,36,4],"span":[532,2,10]},{"path":[4,26,2,36,6],"span":[532,11,22]},{"path":[4,26,2,36,1],"span":[532,23,37]},{"path":[4,26,2,36,3],"span":[532,40,42]},{"path":[4,26,2,37],"span":[533,2,31],"trailingComments":" Windows-only\n"},{"path":[4,26,2,37,4],"span":[533,2,10]},{"path":[4,26,2,37,5],"span":[533,11,17]},{"path":[4,26,2,37,1],"span":[533,18,25]},{"path":[4,26,2,37,3],"span":[533,28,30]},{"path":[4,26,2,38],"span":[534,2,38],"trailingComments":" Linux-only\n"},{"path":[4,26,2,38,4],"span":[534,2,10]},{"path":[4,26,2,38,5],"span":[534,11,17]},{"path":[4,26,2,38,1],"span":[534,18,32]},{"path":[4,26,2,38,3],"span":[534,35,37]},{"path":[4,26,2,39],"span":[535,2,49],"trailingComments":" Windows-only\n"},{"path":[4,26,2,39,4],"span":[535,2,10]},{"path":[4,26,2,39,6],"span":[535,11,22]},{"path":[4,26,2,39,1],"span":[535,23,43]},{"path":[4,26,2,39,3],"span":[535,46,48]},{"path":[4,27],"span":[539,0,549,1],"leadingComments":" Chassis *"},{"path":[4,27,1],"span":[539,8,15]},{"path":[4,27,2,0],"span":[541,2,25]},{"path":[4,27,2,0,6],"span":[541,2,13]},{"path":[4,27,2,0,1],"span":[541,16,20]},{"path":[4,27,2,0,3],"span":[541,23,24]},{"path":[4,27,2,1],"span":[542,2,33]},{"path":[4,27,2,1,4],"span":[542,2,10]},{"path":[4,27,2,1,5],"span":[542,11,15]},{"path":[4,27,2,1,1],"span":[542,16,28]},{"path":[4,27,2,1,3],"span":[542,31,32]},{"path":[4,27,2,2],"span":[543,2,41]},{"path":[4,27,2,2,4],"span":[543,2,10]},{"path":[4,27,2,2,5],"span":[543,11,17]},{"path":[4,27,2,2,1],"span":[543,24,36]},{"path":[4,27,2,2,3],"span":[543,39,40]},{"path":[4,27,2,3],"span":[544,2,43]},{"path":[4,27,2,3,4],"span":[544,2,10]},{"path":[4,27,2,3,6],"span":[544,11,22]},{"path":[4,27,2,3,1],"span":[544,23,38]},{"path":[4,27,2,3,3],"span":[544,41,42]},{"path":[4,27,2,4],"span":[545,2,42]},{"path":[4,27,2,4,4],"span":[545,2,10]},{"path":[4,27,2,4,5],"span":[545,11,17]},{"path":[4,27,2,4,1],"span":[545,24,37]},{"path":[4,27,2,4,3],"span":[545,40,41]},{"path":[4,27,2,5],"span":[546,2,38]},{"path":[4,27,2,5,4],"span":[546,2,10]},{"path":[4,27,2,5,5],"span":[546,11,17]},{"path":[4,27,2,5,1],"span":[546,24,33]},{"path":[4,27,2,5,3],"span":[546,36,37]},{"path":[4,27,2,6],"span":[547,2,36]},{"path":[4,27,2,6,4],"span":[547,2,10]},{"path":[4,27,2,6,5],"span":[547,11,17]},{"path":[4,27,2,6,1],"span":[547,24,31]},{"path":[4,27,2,6,3],"span":[547,34,35]},{"path":[4,27,2,7],"span":[548,2,40]},{"path":[4,27,2,7,4],"span":[548,2,10]},{"path":[4,27,2,7,6],"span":[548,11,22]},{"path":[4,27,2,7,1],"span":[548,23,35]},{"path":[4,27,2,7,3],"span":[548,38,39]},{"path":[4,28],"span":[554,0,567,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,28,1],"span":[554,8,19]},{"path":[4,28,2,0],"span":[555,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,28,2,0,5],"span":[555,2,8]},{"path":[4,28,2,0,1],"span":[555,9,13]},{"path":[4,28,2,0,3],"span":[555,16,17]},{"path":[4,28,2,1],"span":[556,2,43],"trailingComments":" Windows\n"},{"path":[4,28,2,1,4],"span":[556,2,10]},{"path":[4,28,2,1,5],"span":[556,11,17]},{"path":[4,28,2,1,1],"span":[556,24,38]},{"path":[4,28,2,1,3],"span":[556,41,42]},{"path":[4,28,2,2],"span":[557,2,37],"trailingComments":" Windows\n"},{"path":[4,28,2,2,4],"span":[557,2,10]},{"path":[4,28,2,2,5],"span":[557,11,15]},{"path":[4,28,2,2,1],"span":[557,16,32]},{"path":[4,28,2,2,3],"span":[557,35,36]},{"path":[4,28,2,3],"span":[558,2,34],"trailingComments":" Windows\n"},{"path":[4,28,2,3,4],"span":[558,2,10]},{"path":[4,28,2,3,5],"span":[558,11,15]},{"path":[4,28,2,3,1],"span":[558,16,29]},{"path":[4,28,2,3,3],"span":[558,32,33]},{"path":[4,28,2,4],"span":[559,2,37],"trailingComments":" Linux\n"},{"path":[4,28,2,4,4],"span":[559,2,10]},{"path":[4,28,2,4,5],"span":[559,11,17]},{"path":[4,28,2,4,1],"span":[559,24,32]},{"path":[4,28,2,4,3],"span":[559,35,36]},{"path":[4,28,2,5],"span":[560,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,28,2,5,4],"span":[560,2,10]},{"path":[4,28,2,5,5],"span":[560,11,17]},{"path":[4,28,2,5,1],"span":[560,24,36]},{"path":[4,28,2,5,3],"span":[560,39,40]},{"path":[4,28,2,6],"span":[561,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,28,2,6,4],"span":[561,2,10]},{"path":[4,28,2,6,5],"span":[561,11,17]},{"path":[4,28,2,6,1],"span":[561,24,37]},{"path":[4,28,2,6,3],"span":[561,40,41]},{"path":[4,28,2,7],"span":[562,2,32],"trailingComments":" Windows\n"},{"path":[4,28,2,7,4],"span":[562,2,10]},{"path":[4,28,2,7,5],"span":[562,11,17]},{"path":[4,28,2,7,1],"span":[562,24,27]},{"path":[4,28,2,7,3],"span":[562,30,31]},{"path":[4,28,2,8],"span":[563,2,33],"trailingComments":" Linux\n"},{"path":[4,28,2,8,4],"span":[563,2,10]},{"path":[4,28,2,8,5],"span":[563,11,17]},{"path":[4,28,2,8,1],"span":[563,24,28]},{"path":[4,28,2,8,3],"span":[563,31,32]},{"path":[4,28,2,9],"span":[564,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,28,2,9,4],"span":[564,2,10]},{"path":[4,28,2,9,5],"span":[564,11,17]},{"path":[4,28,2,9,1],"span":[564,24,31]},{"path":[4,28,2,9,3],"span":[564,34,36]},{"path":[4,28,2,10],"span":[566,2,41]},{"path":[4,28,2,10,4],"span":[566,2,10]},{"path":[4,28,2,10,6],"span":[566,11,28]},{"path":[4,28,2,10,1],"span":[566,29,35]},{"path":[4,28,2,10,3],"span":[566,38,40]},{"path":[4,29],"span":[572,0,577,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,29,1],"span":[572,8,25]},{"path":[4,29,2,0],"span":[573,2,40]},{"path":[4,29,2,0,4],"span":[573,2,10]},{"path":[4,29,2,0,5],"span":[573,11,17]},{"path":[4,29,2,0,1],"span":[573,24,35]},{"path":[4,29,2,0,3],"span":[573,38,39]},{"path":[4,29,2,1],"span":[574,2,28]},{"path":[4,29,2,1,4],"span":[574,2,10]},{"path":[4,29,2,1,5],"span":[574,11,15]},{"path":[4,29,2,1,1],"span":[574,16,23]},{"path":[4,29,2,1,3],"span":[574,26,27]},{"path":[4,29,2,2],"span":[575,2,32]},{"path":[4,29,2,2,4],"span":[575,2,10]},{"path":[4,29,2,2,5],"span":[575,11,17]},{"path":[4,29,2,2,1],"span":[575,24,27]},{"path":[4,29,2,2,3],"span":[575,30,31]},{"path":[4,29,2,3],"span":[576,2,32]},{"path":[4,29,2,3,4],"span":[576,2,10]},{"path":[4,29,2,3,6],"span":[576,11,22]},{"path":[4,29,2,3,1],"span":[576,23,27]},{"path":[4,29,2,3,3],"span":[576,30,31]},{"path":[4,30],"span":[582,0,586,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,30,1],"span":[582,8,14]},{"path":[4,30,2,0],"span":[583,4,29]},{"path":[4,30,2,0,5],"span":[583,4,9]},{"path":[4,30,2,0,1],"span":[583,10,24]},{"path":[4,30,2,0,3],"span":[583,27,28]},{"path":[4,30,2,1],"span":[584,4,48]},{"path":[4,30,2,1,4],"span":[584,4,12]},{"path":[4,30,2,1,6],"span":[584,13,27]},{"path":[4,30,2,1,1],"span":[584,28,43]},{"path":[4,30,2,1,3],"span":[584,46,47]},{"path":[4,30,2,2],"span":[585,4,42]},{"path":[4,30,2,2,4],"span":[585,4,12]},{"path":[4,30,2,2,6],"span":[585,13,24]},{"path":[4,30,2,2,1],"span":[585,25,37]},{"path":[4,30,2,2,3],"span":[585,40,41]},{"path":[4,31],"span":[589,0,612,1],"leadingComments":" MemoryEntry *"},{"path":[4,31,1],"span":[589,8,22]},{"path":[4,31,2,0],"span":[591,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,31,2,0,4],"span":[591,4,12]},{"path":[4,31,2,0,5],"span":[591,14,19]},{"path":[4,31,2,0,1],"span":[591,20,24]},{"path":[4,31,2,0,3],"span":[591,27,29]},{"path":[4,31,2,1],"span":[592,4,40],"trailingComments":"\tLinux\n"},{"path":[4,31,2,1,4],"span":[592,4,12]},{"path":[4,31,2,1,5],"span":[592,13,19]},{"path":[4,31,2,1,1],"span":[592,24,36]},{"path":[4,31,2,1,3],"span":[592,38,39]},{"path":[4,31,2,2],"span":[593,4,51],"trailingComments":"\tWindows\n"},{"path":[4,31,2,2,4],"span":[593,4,12]},{"path":[4,31,2,2,5],"span":[593,13,18]},{"path":[4,31,2,2,1],"span":[593,24,46]},{"path":[4,31,2,2,3],"span":[593,49,50]},{"path":[4,31,2,3],"span":[594,4,46],"trailingComments":"\tWindows\n"},{"path":[4,31,2,3,4],"span":[594,4,12]},{"path":[4,31,2,3,5],"span":[594,13,18]},{"path":[4,31,2,3,1],"span":[594,24,42]},{"path":[4,31,2,3,3],"span":[594,44,45]},{"path":[4,31,2,4],"span":[595,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,31,2,4,4],"span":[595,4,12]},{"path":[4,31,2,4,5],"span":[595,13,18]},{"path":[4,31,2,4,1],"span":[595,24,34]},{"path":[4,31,2,4,3],"span":[595,36,37]},{"path":[4,31,2,5],"span":[596,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,31,2,5,4],"span":[596,4,12]},{"path":[4,31,2,5,5],"span":[596,13,19]},{"path":[4,31,2,5,1],"span":[596,24,38]},{"path":[4,31,2,5,3],"span":[596,40,41]},{"path":[4,31,2,6],"span":[597,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,31,2,6,4],"span":[597,4,12]},{"path":[4,31,2,6,6],"span":[597,13,24]},{"path":[4,31,2,6,1],"span":[597,32,43]},{"path":[4,31,2,6,3],"span":[597,45,46]},{"path":[4,31,2,7],"span":[598,4,49],"trailingComments":"\tWindows\n"},{"path":[4,31,2,7,4],"span":[598,4,12]},{"path":[4,31,2,7,5],"span":[598,13,18]},{"path":[4,31,2,7,1],"span":[598,24,45]},{"path":[4,31,2,7,3],"span":[598,47,48]},{"path":[4,31,2,8],"span":[599,4,55],"trailingComments":"\tWindows\n"},{"path":[4,31,2,8,4],"span":[599,4,12]},{"path":[4,31,2,8,6],"span":[599,13,24]},{"path":[4,31,2,8,1],"span":[599,32,51]},{"path":[4,31,2,8,3],"span":[599,53,54]},{"path":[4,31,2,9],"span":[600,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,31,2,9,4],"span":[600,4,12]},{"path":[4,31,2,9,5],"span":[600,13,19]},{"path":[4,31,2,9,1],"span":[600,24,36]},{"path":[4,31,2,9,3],"span":[600,38,39]},{"path":[4,31,2,10],"span":[601,4,33],"trailingComments":"\tMac\n"},{"path":[4,31,2,10,4],"span":[601,4,12]},{"path":[4,31,2,10,5],"span":[601,13,19]},{"path":[4,31,2,10,1],"span":[601,24,28]},{"path":[4,31,2,10,3],"span":[601,30,32]},{"path":[4,31,2,11],"span":[602,4,40],"trailingComments":"\tWindows\n"},{"path":[4,31,2,11,4],"span":[602,4,12]},{"path":[4,31,2,11,5],"span":[602,13,19]},{"path":[4,31,2,11,1],"span":[602,24,35]},{"path":[4,31,2,11,3],"span":[602,37,39]},{"path":[4,31,2,12],"span":[603,4,44],"trailingComments":"\tWindows\n"},{"path":[4,31,2,12,4],"span":[603,4,12]},{"path":[4,31,2,12,5],"span":[603,13,18]},{"path":[4,31,2,12,1],"span":[603,24,39]},{"path":[4,31,2,12,3],"span":[603,41,43]},{"path":[4,31,2,13],"span":[604,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,31,2,13,4],"span":[604,4,12]},{"path":[4,31,2,13,5],"span":[604,13,19]},{"path":[4,31,2,13,1],"span":[604,24,37]},{"path":[4,31,2,13,3],"span":[604,39,41]},{"path":[4,31,2,14],"span":[605,4,32],"trailingComments":"\tLinux\n"},{"path":[4,31,2,14,4],"span":[605,4,12]},{"path":[4,31,2,14,5],"span":[605,13,19]},{"path":[4,31,2,14,1],"span":[605,24,27]},{"path":[4,31,2,14,3],"span":[605,29,31]},{"path":[4,31,2,15],"span":[606,4,32],"trailingComments":"\tWindows\n"},{"path":[4,31,2,15,4],"span":[606,4,12]},{"path":[4,31,2,15,5],"span":[606,13,19]},{"path":[4,31,2,15,1],"span":[606,24,27]},{"path":[4,31,2,15,3],"span":[606,29,31]},{"path":[4,31,2,16],"span":[607,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,31,2,16,4],"span":[607,4,12]},{"path":[4,31,2,16,5],"span":[607,13,18]},{"path":[4,31,2,16,1],"span":[607,24,29]},{"path":[4,31,2,16,3],"span":[607,31,33]},{"path":[4,31,2,17],"span":[608,4,34],"trailingComments":"\tMac\n"},{"path":[4,31,2,17,4],"span":[608,4,12]},{"path":[4,31,2,17,5],"span":[608,13,19]},{"path":[4,31,2,17,1],"span":[608,24,29]},{"path":[4,31,2,17,3],"span":[608,31,33]},{"path":[4,31,2,18],"span":[609,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,31,2,18,4],"span":[609,4,12]},{"path":[4,31,2,18,5],"span":[609,13,18]},{"path":[4,31,2,18,1],"span":[609,24,35]},{"path":[4,31,2,18,3],"span":[609,37,39]},{"path":[4,31,2,19],"span":[610,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,31,2,19,4],"span":[610,4,12]},{"path":[4,31,2,19,6],"span":[610,13,24]},{"path":[4,31,2,19,1],"span":[610,32,36]},{"path":[4,31,2,19,3],"span":[610,38,40]},{"path":[4,31,2,20],"span":[611,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,31,2,20,4],"span":[611,4,12]},{"path":[4,31,2,20,6],"span":[611,13,24]},{"path":[4,31,2,20,1],"span":[611,32,43]},{"path":[4,31,2,20,3],"span":[611,45,47]},{"path":[4,32],"span":[616,0,623,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,32,1],"span":[616,8,19]},{"path":[4,32,2,0],"span":[617,2,40],"trailingComments":"\tWindows\n"},{"path":[4,32,2,0,4],"span":[617,2,10]},{"path":[4,32,2,0,5],"span":[617,11,16]},{"path":[4,32,2,0,1],"span":[617,24,36]},{"path":[4,32,2,0,3],"span":[617,38,39]},{"path":[4,32,2,1],"span":[618,2,36],"trailingComments":"\tWindows\n"},{"path":[4,32,2,1,4],"span":[618,2,10]},{"path":[4,32,2,1,6],"span":[618,11,22]},{"path":[4,32,2,1,1],"span":[618,24,32]},{"path":[4,32,2,1,3],"span":[618,34,35]},{"path":[4,32,2,2],"span":[619,2,42],"trailingComments":"\tWindows\n"},{"path":[4,32,2,2,4],"span":[619,2,10]},{"path":[4,32,2,2,5],"span":[619,11,16]},{"path":[4,32,2,2,1],"span":[619,24,38]},{"path":[4,32,2,2,3],"span":[619,40,41]},{"path":[4,32,2,3],"span":[620,2,51],"trailingComments":"\tWindows\n"},{"path":[4,32,2,3,4],"span":[620,2,10]},{"path":[4,32,2,3,6],"span":[620,11,22]},{"path":[4,32,2,3,1],"span":[620,24,47]},{"path":[4,32,2,3,3],"span":[620,49,50]},{"path":[4,32,2,4],"span":[621,2,31],"trailingComments":"\tWindows\n"},{"path":[4,32,2,4,4],"span":[621,2,10]},{"path":[4,32,2,4,5],"span":[621,11,17]},{"path":[4,32,2,4,1],"span":[621,24,27]},{"path":[4,32,2,4,3],"span":[621,29,30]},{"path":[4,32,2,5],"span":[622,2,31],"trailingComments":"\tWindows\n"},{"path":[4,32,2,5,4],"span":[622,2,10]},{"path":[4,32,2,5,6],"span":[622,11,22]},{"path":[4,32,2,5,1],"span":[622,24,27]},{"path":[4,32,2,5,3],"span":[622,29,30]},{"path":[4,33],"span":[629,0,632,1],"leadingComments":"\n A Mapped value is a numeric field that can optionally have a text looked up value.\n Typical in WMI fields.\n"},{"path":[4,33,1],"span":[629,8,19]},{"path":[4,33,2,0],"span":[630,2,18]},{"path":[4,33,2,0,5],"span":[630,2,7]},{"path":[4,33,2,0,1],"span":[630,8,13]},{"path":[4,33,2,0,3],"span":[630,16,17]},{"path":[4,33,2,1],"span":[631,2,27]},{"path":[4,33,2,1,4],"span":[631,2,10]},{"path":[4,33,2,1,5],"span":[631,11,17]},{"path":[4,33,2,1,1],"span":[631,18,22]},{"path":[4,33,2,1,3],"span":[631,25,26]},{"path":[4,34],"span":[635,0,638,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,34,1],"span":[635,8,24]},{"path":[4,34,2,0],"span":[636,2,42]},{"path":[4,34,2,0,6],"span":[636,2,27]},{"path":[4,34,2,0,1],"span":[636,28,37]},{"path":[4,34,2,0,3],"span":[636,40,41]},{"path":[4,34,2,1],"span":[637,2,31]},{"path":[4,34,2,1,4],"span":[637,2,10]},{"path":[4,34,2,1,6],"span":[637,11,18]},{"path":[4,34,2,1,1],"span":[637,19,26]},{"path":[4,34,2,1,3],"span":[637,29,30]},{"path":[4,35],"span":[642,0,663,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,35,1],"span":[642,8,15]},{"path":[4,35,2,0],"span":[644,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,35,2,0,4],"span":[644,2,10]},{"path":[4,35,2,0,5],"span":[644,11,16]},{"path":[4,35,2,0,1],"span":[644,17,19]},{"path":[4,35,2,0,3],"span":[644,22,23]},{"path":[4,35,2,1],"span":[647,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,35,2,1,4],"span":[647,2,10]},{"path":[4,35,2,1,5],"span":[647,11,16]},{"path":[4,35,2,1,1],"span":[647,17,24]},{"path":[4,35,2,1,3],"span":[647,27,28]},{"path":[4,35,2,2],"span":[649,2,23]},{"path":[4,35,2,2,5],"span":[649,2,8]},{"path":[4,35,2,2,1],"span":[649,9,18]},{"path":[4,35,2,2,3],"span":[649,21,22]},{"path":[4,35,2,3],"span":[650,2,24]},{"path":[4,35,2,3,5],"span":[650,2,8]},{"path":[4,35,2,3,1],"span":[650,9,19]},{"path":[4,35,2,3,3],"span":[650,22,23]},{"path":[4,35,2,4],"span":[652,2,36]},{"path":[4,35,2,4,4],"span":[652,2,10]},{"path":[4,35,2,4,5],"span":[652,11,17]},{"path":[4,35,2,4,1],"span":[652,18,31]},{"path":[4,35,2,4,3],"span":[652,34,35]},{"path":[4,35,2,5],"span":[653,2,50]},{"path":[4,35,2,5,6],"span":[653,2,27]},{"path":[4,35,2,5,1],"span":[653,28,45]},{"path":[4,35,2,5,3],"span":[653,48,49]},{"path":[4,35,8,0],"span":[655,2,657,3]},{"path":[4,35,8,0,1],"span":[655,8,12]},{"path":[4,35,2,6],"span":[656,4,36]},{"path":[4,35,2,6,6],"span":[656,4,22]},{"path":[4,35,2,6,1],"span":[656,23,30]},{"path":[4,35,2,6,3],"span":[656,33,35]},{"path":[4,35,2,7],"span":[660,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,35,2,7,4],"span":[660,2,10]},{"path":[4,35,2,7,6],"span":[660,11,23]},{"path":[4,35,2,7,1],"span":[660,24,37]},{"path":[4,35,2,7,3],"span":[660,40,42]},{"path":[4,35,2,8],"span":[662,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,35,2,8,4],"span":[662,2,10]},{"path":[4,35,2,8,6],"span":[662,11,25]},{"path":[4,35,2,8,1],"span":[662,26,41]},{"path":[4,35,2,8,3],"span":[662,44,46]},{"path":[4,36],"span":[665,0,674,1]},{"path":[4,36,1],"span":[665,8,26]},{"path":[4,36,2,0],"span":[666,2,19]},{"path":[4,36,2,0,5],"span":[666,2,8]},{"path":[4,36,2,0,1],"span":[666,9,14]},{"path":[4,36,2,0,3],"span":[666,17,18]},{"path":[4,36,2,1],"span":[667,2,36]},{"path":[4,36,2,1,4],"span":[667,2,10]},{"path":[4,36,2,1,5],"span":[667,11,17]},{"path":[4,36,2,1,1],"span":[667,18,31]},{"path":[4,36,2,1,3],"span":[667,34,35]},{"path":[4,36,2,2],"span":[668,2,36]},{"path":[4,36,2,2,4],"span":[668,2,10]},{"path":[4,36,2,2,5],"span":[668,11,17]},{"path":[4,36,2,2,1],"span":[668,18,31]},{"path":[4,36,2,2,3],"span":[668,34,35]},{"path":[4,36,2,3],"span":[669,2,33]},{"path":[4,36,2,3,4],"span":[669,2,10]},{"path":[4,36,2,3,5],"span":[669,11,17]},{"path":[4,36,2,3,1],"span":[669,18,28]},{"path":[4,36,2,3,3],"span":[669,31,32]},{"path":[4,36,2,4],"span":[670,2,40]},{"path":[4,36,2,4,4],"span":[670,2,10]},{"path":[4,36,2,4,5],"span":[670,11,17]},{"path":[4,36,2,4,1],"span":[670,18,35]},{"path":[4,36,2,4,3],"span":[670,38,39]},{"path":[4,36,2,5],"span":[671,2,39]},{"path":[4,36,2,5,4],"span":[671,2,10]},{"path":[4,36,2,5,5],"span":[671,11,17]},{"path":[4,36,2,5,1],"span":[671,18,34]},{"path":[4,36,2,5,3],"span":[671,37,38]},{"path":[4,36,2,6],"span":[672,2,59]},{"path":[4,36,2,6,4],"span":[672,2,10]},{"path":[4,36,2,6,6],"span":[672,11,36]},{"path":[4,36,2,6,1],"span":[672,37,54]},{"path":[4,36,2,6,3],"span":[672,57,58]},{"path":[4,36,2,7],"span":[673,2,32]},{"path":[4,36,2,7,4],"span":[673,2,10]},{"path":[4,36,2,7,5],"span":[673,11,17]},{"path":[4,36,2,7,1],"span":[673,18,27]},{"path":[4,36,2,7,3],"span":[673,30,31]},{"path":[4,37],"span":[683,0,686,1],"leadingComments":"\n Software Inventory with list of installed SW.\n Sources:\n - com.lansweeper.discovery.sensor.windows.v1.WindowsSoftwareInfo: section on Windows WMI/Local/SCCM\n - com.lansweeper.discovery.sensor.mac.v1.MacSoftware: section on Mac via SSH or local\n - com.lansweeper.discovery.sensor.unix.v1.Software: section Linux/Unix via SSH or local\n"},{"path":[4,37,1],"span":[683,8,25]},{"path":[4,37,2,0],"span":[684,2,42]},{"path":[4,37,2,0,6],"span":[684,2,27]},{"path":[4,37,2,0,1],"span":[684,28,37]},{"path":[4,37,2,0,3],"span":[684,40,41]},{"path":[4,37,2,1],"span":[685,2,33]},{"path":[4,37,2,1,4],"span":[685,2,10]},{"path":[4,37,2,1,6],"span":[685,11,19]},{"path":[4,37,2,1,1],"span":[685,20,28]},{"path":[4,37,2,1,3],"span":[685,31,32]},{"path":[4,38],"span":[695,0,733,1],"leadingComments":"\n Software definition: normalized and with link to raw.\n Translated and enriched from:\n - com.lansweeper.discovery.sensor.windows.v1.SoftwareInfo\n - com.lansweeper.discovery.sensor.mac.v1.Software\n - com.lansweeper.discovery.sensor.unix.v1.SoftwareEntry\n"},{"path":[4,38,1],"span":[695,8,16]},{"path":[4,38,2,0],"span":[697,2,26]},{"path":[4,38,2,0,4],"span":[697,2,10]},{"path":[4,38,2,0,5],"span":[697,11,16]},{"path":[4,38,2,0,1],"span":[697,17,21]},{"path":[4,38,2,0,3],"span":[697,24,25]},{"path":[4,38,2,1],"span":[698,2,29]},{"path":[4,38,2,1,4],"span":[698,2,10]},{"path":[4,38,2,1,5],"span":[698,11,16]},{"path":[4,38,2,1,1],"span":[698,17,24]},{"path":[4,38,2,1,3],"span":[698,27,28]},{"path":[4,38,2,2],"span":[699,2,28]},{"path":[4,38,2,2,4],"span":[699,2,10]},{"path":[4,38,2,2,5],"span":[699,11,16]},{"path":[4,38,2,2,1],"span":[699,17,23]},{"path":[4,38,2,2,3],"span":[699,26,27]},{"path":[4,38,2,3],"span":[702,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,38,2,3,4],"span":[702,2,10]},{"path":[4,38,2,3,5],"span":[702,11,16]},{"path":[4,38,2,3,1],"span":[702,17,24]},{"path":[4,38,2,3,3],"span":[702,27,28]},{"path":[4,38,2,4],"span":[705,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,38,2,4,4],"span":[705,2,10]},{"path":[4,38,2,4,5],"span":[705,11,16]},{"path":[4,38,2,4,1],"span":[705,17,22]},{"path":[4,38,2,4,3],"span":[705,25,26]},{"path":[4,38,2,5],"span":[708,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,38,2,5,4],"span":[708,2,10]},{"path":[4,38,2,5,5],"span":[708,11,16]},{"path":[4,38,2,5,1],"span":[708,17,26]},{"path":[4,38,2,5,3],"span":[708,29,30]},{"path":[4,38,2,6],"span":[710,2,32]},{"path":[4,38,2,6,4],"span":[710,2,10]},{"path":[4,38,2,6,5],"span":[710,11,17]},{"path":[4,38,2,6,1],"span":[710,18,27]},{"path":[4,38,2,6,3],"span":[710,30,31]},{"path":[4,38,2,7],"span":[711,2,31]},{"path":[4,38,2,7,4],"span":[711,2,10]},{"path":[4,38,2,7,5],"span":[711,11,17]},{"path":[4,38,2,7,1],"span":[711,18,26]},{"path":[4,38,2,7,3],"span":[711,29,30]},{"path":[4,38,2,8],"span":[712,2,32]},{"path":[4,38,2,8,4],"span":[712,2,10]},{"path":[4,38,2,8,5],"span":[712,11,17]},{"path":[4,38,2,8,1],"span":[712,18,27]},{"path":[4,38,2,8,3],"span":[712,30,31]},{"path":[4,38,2,9],"span":[713,2,28]},{"path":[4,38,2,9,4],"span":[713,2,10]},{"path":[4,38,2,9,5],"span":[713,11,17]},{"path":[4,38,2,9,1],"span":[713,18,22]},{"path":[4,38,2,9,3],"span":[713,25,27]},{"path":[4,38,2,10],"span":[714,2,31]},{"path":[4,38,2,10,4],"span":[714,2,10]},{"path":[4,38,2,10,5],"span":[714,11,17]},{"path":[4,38,2,10,1],"span":[714,18,25]},{"path":[4,38,2,10,3],"span":[714,28,30]},{"path":[4,38,2,11],"span":[715,2,34]},{"path":[4,38,2,11,4],"span":[715,2,10]},{"path":[4,38,2,11,5],"span":[715,11,17]},{"path":[4,38,2,11,1],"span":[715,18,28]},{"path":[4,38,2,11,3],"span":[715,31,33]},{"path":[4,38,2,12],"span":[716,2,31]},{"path":[4,38,2,12,4],"span":[716,2,10]},{"path":[4,38,2,12,5],"span":[716,11,17]},{"path":[4,38,2,12,1],"span":[716,18,25]},{"path":[4,38,2,12,3],"span":[716,28,30]},{"path":[4,38,2,13],"span":[717,2,29]},{"path":[4,38,2,13,4],"span":[717,2,10]},{"path":[4,38,2,13,5],"span":[717,11,17]},{"path":[4,38,2,13,1],"span":[717,18,23]},{"path":[4,38,2,13,3],"span":[717,26,28]},{"path":[4,38,2,14],"span":[718,2,28]},{"path":[4,38,2,14,4],"span":[718,2,10]},{"path":[4,38,2,14,5],"span":[718,11,17]},{"path":[4,38,2,14,1],"span":[718,18,22]},{"path":[4,38,2,14,3],"span":[718,25,27]},{"path":[4,38,2,15],"span":[719,2,28]},{"path":[4,38,2,15,4],"span":[719,2,10]},{"path":[4,38,2,15,5],"span":[719,11,17]},{"path":[4,38,2,15,1],"span":[719,18,22]},{"path":[4,38,2,15,3],"span":[719,25,27]},{"path":[4,38,2,16],"span":[721,2,27]},{"path":[4,38,2,16,4],"span":[721,2,10]},{"path":[4,38,2,16,5],"span":[721,11,17]},{"path":[4,38,2,16,1],"span":[721,18,21]},{"path":[4,38,2,16,3],"span":[721,24,26]},{"path":[4,38,2,17],"span":[723,2,23]},{"path":[4,38,2,17,6],"span":[723,2,13]},{"path":[4,38,2,17,1],"span":[723,14,17]},{"path":[4,38,2,17,3],"span":[723,20,22]},{"path":[4,38,2,18],"span":[724,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,38,2,18,4],"span":[724,2,10]},{"path":[4,38,2,18,5],"span":[724,11,17]},{"path":[4,38,2,18,1],"span":[724,18,26]},{"path":[4,38,2,18,3],"span":[724,29,31]},{"path":[4,38,2,19],"span":[725,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,38,2,19,4],"span":[725,2,10]},{"path":[4,38,2,19,5],"span":[725,11,17]},{"path":[4,38,2,19,1],"span":[725,18,26]},{"path":[4,38,2,19,3],"span":[725,29,31]},{"path":[4,38,2,20],"span":[728,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,38,2,20,4],"span":[728,2,10]},{"path":[4,38,2,20,6],"span":[728,11,23]},{"path":[4,38,2,20,1],"span":[728,24,37]},{"path":[4,38,2,20,3],"span":[728,40,42]},{"path":[4,38,2,21],"span":[730,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,38,2,21,4],"span":[730,2,10]},{"path":[4,38,2,21,6],"span":[730,11,26]},{"path":[4,38,2,21,1],"span":[730,27,43]},{"path":[4,38,2,21,3],"span":[730,46,48]},{"path":[4,38,2,22],"span":[732,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,38,2,22,4],"span":[732,2,10]},{"path":[4,38,2,22,6],"span":[732,11,26]},{"path":[4,38,2,22,1],"span":[732,27,41]},{"path":[4,38,2,22,3],"span":[732,44,46]},{"path":[4,39],"span":[738,0,752,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,39,1],"span":[738,8,19]},{"path":[4,39,2,0],"span":[739,2,18]},{"path":[4,39,2,0,5],"span":[739,2,8]},{"path":[4,39,2,0,1],"span":[739,9,13]},{"path":[4,39,2,0,3],"span":[739,16,17]},{"path":[4,39,2,1],"span":[741,2,29]},{"path":[4,39,2,1,4],"span":[741,2,10]},{"path":[4,39,2,1,5],"span":[741,11,17]},{"path":[4,39,2,1,1],"span":[741,18,24]},{"path":[4,39,2,1,3],"span":[741,27,28]},{"path":[4,39,2,2],"span":[742,2,30]},{"path":[4,39,2,2,4],"span":[742,2,10]},{"path":[4,39,2,2,5],"span":[742,11,17]},{"path":[4,39,2,2,1],"span":[742,18,25]},{"path":[4,39,2,2,3],"span":[742,28,29]},{"path":[4,39,2,3],"span":[743,2,27]},{"path":[4,39,2,3,4],"span":[743,2,10]},{"path":[4,39,2,3,5],"span":[743,11,17]},{"path":[4,39,2,3,1],"span":[743,18,22]},{"path":[4,39,2,3,3],"span":[743,25,26]},{"path":[4,39,2,4],"span":[744,2,31]},{"path":[4,39,2,4,4],"span":[744,2,10]},{"path":[4,39,2,4,5],"span":[744,11,17]},{"path":[4,39,2,4,1],"span":[744,18,26]},{"path":[4,39,2,4,3],"span":[744,29,30]},{"path":[4,39,2,5],"span":[745,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,39,2,5,4],"span":[745,2,10]},{"path":[4,39,2,5,5],"span":[745,11,17]},{"path":[4,39,2,5,1],"span":[745,18,22]},{"path":[4,39,2,5,3],"span":[745,25,26]},{"path":[4,39,2,6],"span":[746,2,54]},{"path":[4,39,2,6,4],"span":[746,2,10]},{"path":[4,39,2,6,6],"span":[746,11,36]},{"path":[4,39,2,6,1],"span":[746,37,49]},{"path":[4,39,2,6,3],"span":[746,52,53]},{"path":[4,39,2,7],"span":[747,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,39,2,7,4],"span":[747,2,10]},{"path":[4,39,2,7,5],"span":[747,11,17]},{"path":[4,39,2,7,1],"span":[747,18,29]},{"path":[4,39,2,7,3],"span":[747,32,33]},{"path":[4,39,2,8],"span":[749,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,39,2,8,4],"span":[749,2,10]},{"path":[4,39,2,8,5],"span":[749,11,17]},{"path":[4,39,2,8,1],"span":[749,18,23]},{"path":[4,39,2,8,3],"span":[749,26,27]},{"path":[4,39,2,9],"span":[751,2,37]},{"path":[4,39,2,9,4],"span":[751,2,10]},{"path":[4,39,2,9,5],"span":[751,11,15]},{"path":[4,39,2,9,1],"span":[751,16,31]},{"path":[4,39,2,9,3],"span":[751,34,36]},{"path":[4,40],"span":[756,0,790,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,40,1],"span":[756,8,20]},{"path":[4,40,2,0],"span":[757,2,16]},{"path":[4,40,2,0,5],"span":[757,2,7]},{"path":[4,40,2,0,1],"span":[757,9,11]},{"path":[4,40,2,0,3],"span":[757,14,15]},{"path":[4,40,2,1],"span":[758,2,23]},{"path":[4,40,2,1,5],"span":[758,2,8]},{"path":[4,40,2,1,1],"span":[758,9,18]},{"path":[4,40,2,1,3],"span":[758,21,22]},{"path":[4,40,2,2],"span":[760,2,32]},{"path":[4,40,2,2,4],"span":[760,2,10]},{"path":[4,40,2,2,5],"span":[760,11,16]},{"path":[4,40,2,2,1],"span":[760,17,26]},{"path":[4,40,2,2,3],"span":[760,29,31]},{"path":[4,40,2,3],"span":[761,2,58]},{"path":[4,40,2,3,4],"span":[761,2,10]},{"path":[4,40,2,3,6],"span":[761,11,36]},{"path":[4,40,2,3,1],"span":[761,37,53]},{"path":[4,40,2,3,3],"span":[761,56,57]},{"path":[4,40,2,4],"span":[763,2,35]},{"path":[4,40,2,4,4],"span":[763,2,10]},{"path":[4,40,2,4,5],"span":[763,11,17]},{"path":[4,40,2,4,1],"span":[763,18,30]},{"path":[4,40,2,4,3],"span":[763,33,34]},{"path":[4,40,2,5],"span":[764,2,37]},{"path":[4,40,2,5,4],"span":[764,2,10]},{"path":[4,40,2,5,5],"span":[764,11,17]},{"path":[4,40,2,5,1],"span":[764,18,32]},{"path":[4,40,2,5,3],"span":[764,35,36]},{"path":[4,40,2,6],"span":[765,2,39]},{"path":[4,40,2,6,4],"span":[765,2,10]},{"path":[4,40,2,6,5],"span":[765,11,17]},{"path":[4,40,2,6,1],"span":[765,18,34]},{"path":[4,40,2,6,3],"span":[765,37,38]},{"path":[4,40,2,7],"span":[766,2,35]},{"path":[4,40,2,7,4],"span":[766,2,10]},{"path":[4,40,2,7,5],"span":[766,11,17]},{"path":[4,40,2,7,1],"span":[766,18,30]},{"path":[4,40,2,7,3],"span":[766,33,34]},{"path":[4,40,2,8],"span":[767,2,43]},{"path":[4,40,2,8,4],"span":[767,2,10]},{"path":[4,40,2,8,5],"span":[767,11,17]},{"path":[4,40,2,8,1],"span":[767,18,37]},{"path":[4,40,2,8,3],"span":[767,40,42]},{"path":[4,40,2,9],"span":[768,2,35]},{"path":[4,40,2,9,4],"span":[768,2,10]},{"path":[4,40,2,9,5],"span":[768,11,17]},{"path":[4,40,2,9,1],"span":[768,18,29]},{"path":[4,40,2,9,3],"span":[768,32,34]},{"path":[4,40,2,10],"span":[769,2,35]},{"path":[4,40,2,10,4],"span":[769,2,10]},{"path":[4,40,2,10,5],"span":[769,11,17]},{"path":[4,40,2,10,1],"span":[769,18,29]},{"path":[4,40,2,10,3],"span":[769,32,34]},{"path":[4,40,2,11],"span":[770,2,37]},{"path":[4,40,2,11,4],"span":[770,2,10]},{"path":[4,40,2,11,5],"span":[770,11,17]},{"path":[4,40,2,11,1],"span":[770,18,31]},{"path":[4,40,2,11,3],"span":[770,34,36]},{"path":[4,40,2,12],"span":[771,2,40]},{"path":[4,40,2,12,4],"span":[771,2,10]},{"path":[4,40,2,12,5],"span":[771,11,17]},{"path":[4,40,2,12,1],"span":[771,18,34]},{"path":[4,40,2,12,3],"span":[771,37,39]},{"path":[4,40,2,13],"span":[772,2,39]},{"path":[4,40,2,13,4],"span":[772,2,10]},{"path":[4,40,2,13,5],"span":[772,11,17]},{"path":[4,40,2,13,1],"span":[772,18,33]},{"path":[4,40,2,13,3],"span":[772,36,38]},{"path":[4,40,2,14],"span":[773,2,36]},{"path":[4,40,2,14,4],"span":[773,2,10]},{"path":[4,40,2,14,5],"span":[773,11,17]},{"path":[4,40,2,14,1],"span":[773,18,30]},{"path":[4,40,2,14,3],"span":[773,33,35]},{"path":[4,40,2,15],"span":[774,2,43]},{"path":[4,40,2,15,4],"span":[774,2,10]},{"path":[4,40,2,15,5],"span":[774,11,17]},{"path":[4,40,2,15,1],"span":[774,18,37]},{"path":[4,40,2,15,3],"span":[774,40,42]},{"path":[4,40,2,16],"span":[775,2,37]},{"path":[4,40,2,16,4],"span":[775,2,10]},{"path":[4,40,2,16,5],"span":[775,11,17]},{"path":[4,40,2,16,1],"span":[775,18,31]},{"path":[4,40,2,16,3],"span":[775,34,36]},{"path":[4,40,2,17],"span":[776,2,40]},{"path":[4,40,2,17,4],"span":[776,2,10]},{"path":[4,40,2,17,5],"span":[776,11,17]},{"path":[4,40,2,17,1],"span":[776,18,34]},{"path":[4,40,2,17,3],"span":[776,37,39]},{"path":[4,40,2,18],"span":[777,2,41]},{"path":[4,40,2,18,4],"span":[777,2,10]},{"path":[4,40,2,18,5],"span":[777,11,17]},{"path":[4,40,2,18,1],"span":[777,18,35]},{"path":[4,40,2,18,3],"span":[777,38,40]},{"path":[4,40,2,19],"span":[778,2,39]},{"path":[4,40,2,19,4],"span":[778,2,10]},{"path":[4,40,2,19,5],"span":[778,11,17]},{"path":[4,40,2,19,1],"span":[778,18,33]},{"path":[4,40,2,19,3],"span":[778,36,38]},{"path":[4,40,2,20],"span":[779,2,41]},{"path":[4,40,2,20,4],"span":[779,2,10]},{"path":[4,40,2,20,5],"span":[779,11,17]},{"path":[4,40,2,20,1],"span":[779,18,35]},{"path":[4,40,2,20,3],"span":[779,38,40]},{"path":[4,40,2,21],"span":[780,2,38]},{"path":[4,40,2,21,4],"span":[780,2,10]},{"path":[4,40,2,21,5],"span":[780,11,17]},{"path":[4,40,2,21,1],"span":[780,18,32]},{"path":[4,40,2,21,3],"span":[780,35,37]},{"path":[4,40,2,22],"span":[782,2,36]},{"path":[4,40,2,22,4],"span":[782,2,10]},{"path":[4,40,2,22,5],"span":[782,11,15]},{"path":[4,40,2,22,1],"span":[782,16,30]},{"path":[4,40,2,22,3],"span":[782,33,35]},{"path":[4,40,2,23],"span":[783,2,36]},{"path":[4,40,2,23,4],"span":[783,2,10]},{"path":[4,40,2,23,5],"span":[783,11,15]},{"path":[4,40,2,23,1],"span":[783,16,30]},{"path":[4,40,2,23,3],"span":[783,33,35]},{"path":[4,40,2,24],"span":[784,2,36]},{"path":[4,40,2,24,4],"span":[784,2,10]},{"path":[4,40,2,24,5],"span":[784,11,15]},{"path":[4,40,2,24,1],"span":[784,16,30]},{"path":[4,40,2,24,3],"span":[784,33,35]},{"path":[4,40,2,25],"span":[785,2,38]},{"path":[4,40,2,25,4],"span":[785,2,10]},{"path":[4,40,2,25,5],"span":[785,11,15]},{"path":[4,40,2,25,1],"span":[785,16,32]},{"path":[4,40,2,25,3],"span":[785,35,37]},{"path":[4,40,2,26],"span":[786,2,38]},{"path":[4,40,2,26,4],"span":[786,2,10]},{"path":[4,40,2,26,5],"span":[786,11,15]},{"path":[4,40,2,26,1],"span":[786,16,32]},{"path":[4,40,2,26,3],"span":[786,35,37]},{"path":[4,40,2,27],"span":[787,2,38]},{"path":[4,40,2,27,4],"span":[787,2,10]},{"path":[4,40,2,27,5],"span":[787,11,15]},{"path":[4,40,2,27,1],"span":[787,16,32]},{"path":[4,40,2,27,3],"span":[787,35,37]},{"path":[4,40,2,28],"span":[789,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,40,2,28,4],"span":[789,2,10]},{"path":[4,40,2,28,5],"span":[789,11,16]},{"path":[4,40,2,28,1],"span":[789,17,28]},{"path":[4,40,2,28,3],"span":[789,31,33]},{"path":[4,41],"span":[792,0,827,1]},{"path":[4,41,1],"span":[792,8,20]},{"path":[4,41,2,0],"span":[793,2,15]},{"path":[4,41,2,0,5],"span":[793,2,7]},{"path":[4,41,2,0,1],"span":[793,8,10]},{"path":[4,41,2,0,3],"span":[793,13,14]},{"path":[4,41,2,1],"span":[795,2,20]},{"path":[4,41,2,1,5],"span":[795,2,7]},{"path":[4,41,2,1,1],"span":[795,8,15]},{"path":[4,41,2,1,3],"span":[795,18,19]},{"path":[4,41,2,2],"span":[796,2,26]},{"path":[4,41,2,2,5],"span":[796,2,8]},{"path":[4,41,2,2,1],"span":[796,9,21]},{"path":[4,41,2,2,3],"span":[796,24,25]},{"path":[4,41,2,3],"span":[798,2,36]},{"path":[4,41,2,3,4],"span":[798,2,10]},{"path":[4,41,2,3,5],"span":[798,11,16]},{"path":[4,41,2,3,1],"span":[798,17,31]},{"path":[4,41,2,3,3],"span":[798,34,35]},{"path":[4,41,2,4],"span":[799,2,40]},{"path":[4,41,2,4,4],"span":[799,2,10]},{"path":[4,41,2,4,5],"span":[799,11,17]},{"path":[4,41,2,4,1],"span":[799,18,35]},{"path":[4,41,2,4,3],"span":[799,38,39]},{"path":[4,41,2,5],"span":[801,2,32]},{"path":[4,41,2,5,4],"span":[801,2,10]},{"path":[4,41,2,5,5],"span":[801,11,16]},{"path":[4,41,2,5,1],"span":[801,17,26]},{"path":[4,41,2,5,3],"span":[801,29,31]},{"path":[4,41,2,6],"span":[802,2,31]},{"path":[4,41,2,6,4],"span":[802,2,10]},{"path":[4,41,2,6,5],"span":[802,11,15]},{"path":[4,41,2,6,1],"span":[802,16,25]},{"path":[4,41,2,6,3],"span":[802,28,30]},{"path":[4,41,2,7],"span":[803,2,34]},{"path":[4,41,2,7,4],"span":[803,2,10]},{"path":[4,41,2,7,5],"span":[803,11,17]},{"path":[4,41,2,7,1],"span":[803,18,28]},{"path":[4,41,2,7,3],"span":[803,31,33]},{"path":[4,41,2,8],"span":[804,2,31]},{"path":[4,41,2,8,4],"span":[804,2,10]},{"path":[4,41,2,8,5],"span":[804,11,17]},{"path":[4,41,2,8,1],"span":[804,18,25]},{"path":[4,41,2,8,3],"span":[804,28,30]},{"path":[4,41,2,9],"span":[805,2,55]},{"path":[4,41,2,9,4],"span":[805,2,10]},{"path":[4,41,2,9,6],"span":[805,11,36]},{"path":[4,41,2,9,1],"span":[805,37,49]},{"path":[4,41,2,9,3],"span":[805,52,54]},{"path":[4,41,2,10],"span":[806,2,52]},{"path":[4,41,2,10,4],"span":[806,2,10]},{"path":[4,41,2,10,6],"span":[806,11,36]},{"path":[4,41,2,10,1],"span":[806,37,46]},{"path":[4,41,2,10,3],"span":[806,49,51]},{"path":[4,41,2,11],"span":[807,2,51]},{"path":[4,41,2,11,4],"span":[807,2,10]},{"path":[4,41,2,11,6],"span":[807,11,36]},{"path":[4,41,2,11,1],"span":[807,37,45]},{"path":[4,41,2,11,3],"span":[807,48,50]},{"path":[4,41,2,12],"span":[808,2,43]},{"path":[4,41,2,12,4],"span":[808,2,10]},{"path":[4,41,2,12,5],"span":[808,11,17]},{"path":[4,41,2,12,1],"span":[808,18,37]},{"path":[4,41,2,12,3],"span":[808,40,42]},{"path":[4,41,2,13],"span":[810,2,35]},{"path":[4,41,2,13,4],"span":[810,2,10]},{"path":[4,41,2,13,5],"span":[810,11,17]},{"path":[4,41,2,13,1],"span":[810,18,29]},{"path":[4,41,2,13,3],"span":[810,32,34]},{"path":[4,41,2,14],"span":[811,2,37]},{"path":[4,41,2,14,4],"span":[811,2,10]},{"path":[4,41,2,14,5],"span":[811,11,17]},{"path":[4,41,2,14,1],"span":[811,18,31]},{"path":[4,41,2,14,3],"span":[811,34,36]},{"path":[4,41,2,15],"span":[813,2,39]},{"path":[4,41,2,15,4],"span":[813,2,10]},{"path":[4,41,2,15,5],"span":[813,11,17]},{"path":[4,41,2,15,1],"span":[813,18,33]},{"path":[4,41,2,15,3],"span":[813,36,38]},{"path":[4,41,2,16],"span":[814,2,43]},{"path":[4,41,2,16,4],"span":[814,2,10]},{"path":[4,41,2,16,5],"span":[814,11,17]},{"path":[4,41,2,16,1],"span":[814,18,37]},{"path":[4,41,2,16,3],"span":[814,40,42]},{"path":[4,41,2,17],"span":[815,2,38]},{"path":[4,41,2,17,4],"span":[815,2,10]},{"path":[4,41,2,17,5],"span":[815,11,17]},{"path":[4,41,2,17,1],"span":[815,18,32]},{"path":[4,41,2,17,3],"span":[815,35,37]},{"path":[4,41,2,18],"span":[816,2,38]},{"path":[4,41,2,18,4],"span":[816,2,10]},{"path":[4,41,2,18,5],"span":[816,11,17]},{"path":[4,41,2,18,1],"span":[816,18,32]},{"path":[4,41,2,18,3],"span":[816,35,37]},{"path":[4,41,2,19],"span":[817,2,41]},{"path":[4,41,2,19,4],"span":[817,2,10]},{"path":[4,41,2,19,5],"span":[817,11,15]},{"path":[4,41,2,19,1],"span":[817,18,35]},{"path":[4,41,2,19,3],"span":[817,38,40]},{"path":[4,41,2,20],"span":[818,2,42]},{"path":[4,41,2,20,4],"span":[818,2,10]},{"path":[4,41,2,20,5],"span":[818,11,17]},{"path":[4,41,2,20,1],"span":[818,18,36]},{"path":[4,41,2,20,3],"span":[818,39,41]},{"path":[4,41,2,21],"span":[820,2,32]},{"path":[4,41,2,21,4],"span":[820,2,10]},{"path":[4,41,2,21,5],"span":[820,11,17]},{"path":[4,41,2,21,1],"span":[820,18,26]},{"path":[4,41,2,21,3],"span":[820,29,31]},{"path":[4,41,2,22],"span":[822,2,33]},{"path":[4,41,2,22,4],"span":[822,2,10]},{"path":[4,41,2,22,5],"span":[822,11,16]},{"path":[4,41,2,22,1],"span":[822,17,27]},{"path":[4,41,2,22,3],"span":[822,30,32]},{"path":[4,41,2,23],"span":[824,2,59]},{"path":[4,41,2,23,4],"span":[824,2,10]},{"path":[4,41,2,23,6],"span":[824,11,36]},{"path":[4,41,2,23,1],"span":[824,37,53]},{"path":[4,41,2,23,3],"span":[824,56,58]},{"path":[4,41,2,24],"span":[826,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,41,2,24,4],"span":[826,2,10]},{"path":[4,41,2,24,5],"span":[826,11,16]},{"path":[4,41,2,24,1],"span":[826,17,28]},{"path":[4,41,2,24,3],"span":[826,31,33]},{"path":[4,42],"span":[829,0,862,1]},{"path":[4,42,1],"span":[829,8,17]},{"path":[4,42,2,0],"span":[830,2,15]},{"path":[4,42,2,0,5],"span":[830,2,7]},{"path":[4,42,2,0,1],"span":[830,8,10]},{"path":[4,42,2,0,3],"span":[830,13,14]},{"path":[4,42,2,1],"span":[832,2,21]},{"path":[4,42,2,1,5],"span":[832,2,8]},{"path":[4,42,2,1,1],"span":[832,9,16]},{"path":[4,42,2,1,3],"span":[832,19,20]},{"path":[4,42,2,2],"span":[834,2,33]},{"path":[4,42,2,2,4],"span":[834,2,10]},{"path":[4,42,2,2,5],"span":[834,11,17]},{"path":[4,42,2,2,1],"span":[834,18,28]},{"path":[4,42,2,2,3],"span":[834,31,32]},{"path":[4,42,2,3],"span":[835,2,32]},{"path":[4,42,2,3,4],"span":[835,2,10]},{"path":[4,42,2,3,5],"span":[835,11,17]},{"path":[4,42,2,3,1],"span":[835,18,26]},{"path":[4,42,2,3,3],"span":[835,29,31]},{"path":[4,42,2,4],"span":[836,2,38]},{"path":[4,42,2,4,4],"span":[836,2,10]},{"path":[4,42,2,4,5],"span":[836,11,17]},{"path":[4,42,2,4,1],"span":[836,18,33]},{"path":[4,42,2,4,3],"span":[836,36,37]},{"path":[4,42,2,5],"span":[838,2,33]},{"path":[4,42,2,5,4],"span":[838,2,10]},{"path":[4,42,2,5,5],"span":[838,11,16]},{"path":[4,42,2,5,1],"span":[838,17,28]},{"path":[4,42,2,5,3],"span":[838,31,32]},{"path":[4,42,2,6],"span":[839,2,29]},{"path":[4,42,2,6,4],"span":[839,2,10]},{"path":[4,42,2,6,5],"span":[839,11,16]},{"path":[4,42,2,6,1],"span":[839,17,24]},{"path":[4,42,2,6,3],"span":[839,27,28]},{"path":[4,42,2,7],"span":[840,2,31]},{"path":[4,42,2,7,4],"span":[840,2,10]},{"path":[4,42,2,7,5],"span":[840,11,16]},{"path":[4,42,2,7,1],"span":[840,17,26]},{"path":[4,42,2,7,3],"span":[840,29,30]},{"path":[4,42,2,8],"span":[842,2,54]},{"path":[4,42,2,8,4],"span":[842,2,10]},{"path":[4,42,2,8,6],"span":[842,11,36]},{"path":[4,42,2,8,1],"span":[842,37,49]},{"path":[4,42,2,8,3],"span":[842,52,53]},{"path":[4,42,2,9],"span":[843,2,51]},{"path":[4,42,2,9,4],"span":[843,2,10]},{"path":[4,42,2,9,6],"span":[843,11,36]},{"path":[4,42,2,9,1],"span":[843,37,45]},{"path":[4,42,2,9,3],"span":[843,48,50]},{"path":[4,42,2,10],"span":[844,2,51]},{"path":[4,42,2,10,4],"span":[844,2,10]},{"path":[4,42,2,10,6],"span":[844,11,36]},{"path":[4,42,2,10,1],"span":[844,37,45]},{"path":[4,42,2,10,3],"span":[844,48,50]},{"path":[4,42,2,11],"span":[845,2,52]},{"path":[4,42,2,11,4],"span":[845,2,10]},{"path":[4,42,2,11,6],"span":[845,11,36]},{"path":[4,42,2,11,1],"span":[845,37,46]},{"path":[4,42,2,11,3],"span":[845,49,51]},{"path":[4,42,2,12],"span":[846,2,43]},{"path":[4,42,2,12,4],"span":[846,2,10]},{"path":[4,42,2,12,5],"span":[846,11,17]},{"path":[4,42,2,12,1],"span":[846,18,37]},{"path":[4,42,2,12,3],"span":[846,40,42]},{"path":[4,42,2,13],"span":[847,2,38]},{"path":[4,42,2,13,4],"span":[847,2,10]},{"path":[4,42,2,13,5],"span":[847,11,17]},{"path":[4,42,2,13,1],"span":[847,18,32]},{"path":[4,42,2,13,3],"span":[847,35,37]},{"path":[4,42,2,14],"span":[848,2,40]},{"path":[4,42,2,14,4],"span":[848,2,10]},{"path":[4,42,2,14,5],"span":[848,11,17]},{"path":[4,42,2,14,1],"span":[848,18,34]},{"path":[4,42,2,14,3],"span":[848,37,39]},{"path":[4,42,2,15],"span":[849,2,36]},{"path":[4,42,2,15,4],"span":[849,2,10]},{"path":[4,42,2,15,5],"span":[849,11,17]},{"path":[4,42,2,15,1],"span":[849,18,30]},{"path":[4,42,2,15,3],"span":[849,33,35]},{"path":[4,42,2,16],"span":[850,2,43]},{"path":[4,42,2,16,4],"span":[850,2,10]},{"path":[4,42,2,16,5],"span":[850,11,17]},{"path":[4,42,2,16,1],"span":[850,18,37]},{"path":[4,42,2,16,3],"span":[850,40,42]},{"path":[4,42,2,17],"span":[851,2,35]},{"path":[4,42,2,17,4],"span":[851,2,10]},{"path":[4,42,2,17,5],"span":[851,11,17]},{"path":[4,42,2,17,1],"span":[851,18,29]},{"path":[4,42,2,17,3],"span":[851,32,34]},{"path":[4,42,2,18],"span":[852,2,35]},{"path":[4,42,2,18,4],"span":[852,2,10]},{"path":[4,42,2,18,5],"span":[852,11,17]},{"path":[4,42,2,18,1],"span":[852,18,29]},{"path":[4,42,2,18,3],"span":[852,32,34]},{"path":[4,42,2,19],"span":[853,2,37]},{"path":[4,42,2,19,4],"span":[853,2,10]},{"path":[4,42,2,19,5],"span":[853,11,17]},{"path":[4,42,2,19,1],"span":[853,18,31]},{"path":[4,42,2,19,3],"span":[853,34,36]},{"path":[4,42,2,20],"span":[854,2,40]},{"path":[4,42,2,20,4],"span":[854,2,10]},{"path":[4,42,2,20,5],"span":[854,11,17]},{"path":[4,42,2,20,1],"span":[854,18,34]},{"path":[4,42,2,20,3],"span":[854,37,39]},{"path":[4,42,2,21],"span":[855,2,39]},{"path":[4,42,2,21,4],"span":[855,2,10]},{"path":[4,42,2,21,5],"span":[855,11,17]},{"path":[4,42,2,21,1],"span":[855,18,33]},{"path":[4,42,2,21,3],"span":[855,36,38]},{"path":[4,42,2,22],"span":[857,2,32]},{"path":[4,42,2,22,4],"span":[857,2,10]},{"path":[4,42,2,22,5],"span":[857,11,17]},{"path":[4,42,2,22,1],"span":[857,18,26]},{"path":[4,42,2,22,3],"span":[857,29,31]},{"path":[4,42,2,23],"span":[859,2,59]},{"path":[4,42,2,23,4],"span":[859,2,10]},{"path":[4,42,2,23,6],"span":[859,11,36]},{"path":[4,42,2,23,1],"span":[859,37,53]},{"path":[4,42,2,23,3],"span":[859,56,58]},{"path":[4,42,2,24],"span":[861,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,42,2,24,4],"span":[861,2,10]},{"path":[4,42,2,24,5],"span":[861,11,16]},{"path":[4,42,2,24,1],"span":[861,17,28]},{"path":[4,42,2,24,3],"span":[861,31,33]},{"path":[4,43],"span":[864,0,894,1]},{"path":[4,43,1],"span":[864,8,23]},{"path":[4,43,2,0],"span":[865,2,15]},{"path":[4,43,2,0,5],"span":[865,2,7]},{"path":[4,43,2,0,1],"span":[865,8,10]},{"path":[4,43,2,0,3],"span":[865,13,14]},{"path":[4,43,2,1],"span":[866,2,21]},{"path":[4,43,2,1,5],"span":[866,2,8]},{"path":[4,43,2,1,1],"span":[866,9,16]},{"path":[4,43,2,1,3],"span":[866,19,20]},{"path":[4,43,2,2],"span":[868,2,33]},{"path":[4,43,2,2,4],"span":[868,2,10]},{"path":[4,43,2,2,5],"span":[868,11,17]},{"path":[4,43,2,2,1],"span":[868,18,28]},{"path":[4,43,2,2,3],"span":[868,31,32]},{"path":[4,43,2,3],"span":[869,2,36]},{"path":[4,43,2,3,4],"span":[869,2,10]},{"path":[4,43,2,3,5],"span":[869,11,17]},{"path":[4,43,2,3,1],"span":[869,18,31]},{"path":[4,43,2,3,3],"span":[869,34,35]},{"path":[4,43,2,4],"span":[870,2,33]},{"path":[4,43,2,4,4],"span":[870,2,10]},{"path":[4,43,2,4,5],"span":[870,11,17]},{"path":[4,43,2,4,1],"span":[870,18,28]},{"path":[4,43,2,4,3],"span":[870,31,32]},{"path":[4,43,2,5],"span":[871,2,30]},{"path":[4,43,2,5,4],"span":[871,2,10]},{"path":[4,43,2,5,5],"span":[871,11,17]},{"path":[4,43,2,5,1],"span":[871,18,25]},{"path":[4,43,2,5,3],"span":[871,28,29]},{"path":[4,43,2,6],"span":[872,2,31]},{"path":[4,43,2,6,4],"span":[872,2,10]},{"path":[4,43,2,6,5],"span":[872,11,17]},{"path":[4,43,2,6,1],"span":[872,18,26]},{"path":[4,43,2,6,3],"span":[872,29,30]},{"path":[4,43,2,7],"span":[874,2,29]},{"path":[4,43,2,7,4],"span":[874,2,10]},{"path":[4,43,2,7,5],"span":[874,11,16]},{"path":[4,43,2,7,1],"span":[874,17,24]},{"path":[4,43,2,7,3],"span":[874,27,28]},{"path":[4,43,2,8],"span":[875,2,31]},{"path":[4,43,2,8,4],"span":[875,2,10]},{"path":[4,43,2,8,5],"span":[875,11,16]},{"path":[4,43,2,8,1],"span":[875,17,26]},{"path":[4,43,2,8,3],"span":[875,29,30]},{"path":[4,43,2,9],"span":[876,2,32]},{"path":[4,43,2,9,4],"span":[876,2,10]},{"path":[4,43,2,9,5],"span":[876,11,16]},{"path":[4,43,2,9,1],"span":[876,17,26]},{"path":[4,43,2,9,3],"span":[876,29,31]},{"path":[4,43,2,10],"span":[878,2,31]},{"path":[4,43,2,10,4],"span":[878,2,10]},{"path":[4,43,2,10,5],"span":[878,11,17]},{"path":[4,43,2,10,1],"span":[878,18,25]},{"path":[4,43,2,10,3],"span":[878,28,30]},{"path":[4,43,2,11],"span":[879,2,35]},{"path":[4,43,2,11,4],"span":[879,2,10]},{"path":[4,43,2,11,5],"span":[879,11,17]},{"path":[4,43,2,11,1],"span":[879,18,29]},{"path":[4,43,2,11,3],"span":[879,32,34]},{"path":[4,43,2,12],"span":[881,2,55]},{"path":[4,43,2,12,4],"span":[881,2,10]},{"path":[4,43,2,12,6],"span":[881,11,36]},{"path":[4,43,2,12,1],"span":[881,37,49]},{"path":[4,43,2,12,3],"span":[881,52,54]},{"path":[4,43,2,13],"span":[882,2,51]},{"path":[4,43,2,13,4],"span":[882,2,10]},{"path":[4,43,2,13,6],"span":[882,11,36]},{"path":[4,43,2,13,1],"span":[882,37,45]},{"path":[4,43,2,13,3],"span":[882,48,50]},{"path":[4,43,2,14],"span":[883,2,51]},{"path":[4,43,2,14,4],"span":[883,2,10]},{"path":[4,43,2,14,6],"span":[883,11,36]},{"path":[4,43,2,14,1],"span":[883,37,45]},{"path":[4,43,2,14,3],"span":[883,48,50]},{"path":[4,43,2,15],"span":[884,2,52]},{"path":[4,43,2,15,4],"span":[884,2,10]},{"path":[4,43,2,15,6],"span":[884,11,36]},{"path":[4,43,2,15,1],"span":[884,37,46]},{"path":[4,43,2,15,3],"span":[884,49,51]},{"path":[4,43,2,16],"span":[885,2,43]},{"path":[4,43,2,16,4],"span":[885,2,10]},{"path":[4,43,2,16,5],"span":[885,11,17]},{"path":[4,43,2,16,1],"span":[885,18,37]},{"path":[4,43,2,16,3],"span":[885,40,42]},{"path":[4,43,2,17],"span":[887,2,33]},{"path":[4,43,2,17,4],"span":[887,2,10]},{"path":[4,43,2,17,5],"span":[887,11,15]},{"path":[4,43,2,17,1],"span":[887,16,27]},{"path":[4,43,2,17,3],"span":[887,30,32]},{"path":[4,43,2,18],"span":[888,2,37]},{"path":[4,43,2,18,4],"span":[888,2,10]},{"path":[4,43,2,18,5],"span":[888,11,15]},{"path":[4,43,2,18,1],"span":[888,16,31]},{"path":[4,43,2,18,3],"span":[888,34,36]},{"path":[4,43,2,19],"span":[889,2,37]},{"path":[4,43,2,19,4],"span":[889,2,10]},{"path":[4,43,2,19,5],"span":[889,11,15]},{"path":[4,43,2,19,1],"span":[889,16,31]},{"path":[4,43,2,19,3],"span":[889,34,36]},{"path":[4,43,2,20],"span":[891,2,59]},{"path":[4,43,2,20,4],"span":[891,2,10]},{"path":[4,43,2,20,6],"span":[891,11,36]},{"path":[4,43,2,20,1],"span":[891,37,53]},{"path":[4,43,2,20,3],"span":[891,56,58]},{"path":[4,43,2,21],"span":[893,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,43,2,21,4],"span":[893,2,10]},{"path":[4,43,2,21,5],"span":[893,11,16]},{"path":[4,43,2,21,1],"span":[893,17,28]},{"path":[4,43,2,21,3],"span":[893,31,34]},{"path":[4,44],"span":[896,0,952,1]},{"path":[4,44,1],"span":[896,8,22]},{"path":[4,44,2,0],"span":[897,2,16]},{"path":[4,44,2,0,5],"span":[897,2,7]},{"path":[4,44,2,0,1],"span":[897,9,11]},{"path":[4,44,2,0,3],"span":[897,14,15]},{"path":[4,44,2,1],"span":[899,2,19]},{"path":[4,44,2,1,5],"span":[899,2,8]},{"path":[4,44,2,1,1],"span":[899,9,14]},{"path":[4,44,2,1,3],"span":[899,17,18]},{"path":[4,44,2,2],"span":[900,2,32]},{"path":[4,44,2,2,4],"span":[900,2,10]},{"path":[4,44,2,2,5],"span":[900,11,17]},{"path":[4,44,2,2,1],"span":[900,18,27]},{"path":[4,44,2,2,3],"span":[900,30,31]},{"path":[4,44,2,3],"span":[901,2,29]},{"path":[4,44,2,3,4],"span":[901,2,10]},{"path":[4,44,2,3,5],"span":[901,11,16]},{"path":[4,44,2,3,1],"span":[901,17,24]},{"path":[4,44,2,3,3],"span":[901,27,28]},{"path":[4,44,2,4],"span":[903,2,31]},{"path":[4,44,2,4,4],"span":[903,2,10]},{"path":[4,44,2,4,5],"span":[903,11,16]},{"path":[4,44,2,4,1],"span":[903,17,26]},{"path":[4,44,2,4,3],"span":[903,29,30]},{"path":[4,44,2,5],"span":[904,2,30]},{"path":[4,44,2,5,4],"span":[904,2,10]},{"path":[4,44,2,5,5],"span":[904,11,15]},{"path":[4,44,2,5,1],"span":[904,16,25]},{"path":[4,44,2,5,3],"span":[904,28,29]},{"path":[4,44,2,6],"span":[905,2,36]},{"path":[4,44,2,6,4],"span":[905,2,10]},{"path":[4,44,2,6,5],"span":[905,11,17]},{"path":[4,44,2,6,1],"span":[905,18,31]},{"path":[4,44,2,6,3],"span":[905,34,35]},{"path":[4,44,2,7],"span":[906,2,35]},{"path":[4,44,2,7,4],"span":[906,2,10]},{"path":[4,44,2,7,5],"span":[906,11,17]},{"path":[4,44,2,7,1],"span":[906,18,30]},{"path":[4,44,2,7,3],"span":[906,33,34]},{"path":[4,44,2,8],"span":[908,2,33]},{"path":[4,44,2,8,4],"span":[908,2,10]},{"path":[4,44,2,8,5],"span":[908,11,17]},{"path":[4,44,2,8,1],"span":[908,18,27]},{"path":[4,44,2,8,3],"span":[908,30,32]},{"path":[4,44,2,9],"span":[909,2,38]},{"path":[4,44,2,9,4],"span":[909,2,10]},{"path":[4,44,2,9,5],"span":[909,11,17]},{"path":[4,44,2,9,1],"span":[909,18,32]},{"path":[4,44,2,9,3],"span":[909,35,37]},{"path":[4,44,2,10],"span":[910,2,36]},{"path":[4,44,2,10,4],"span":[910,2,10]},{"path":[4,44,2,10,5],"span":[910,11,17]},{"path":[4,44,2,10,1],"span":[910,18,30]},{"path":[4,44,2,10,3],"span":[910,33,35]},{"path":[4,44,2,11],"span":[911,2,40]},{"path":[4,44,2,11,4],"span":[911,2,10]},{"path":[4,44,2,11,5],"span":[911,11,17]},{"path":[4,44,2,11,1],"span":[911,18,34]},{"path":[4,44,2,11,3],"span":[911,37,39]},{"path":[4,44,2,12],"span":[912,2,31]},{"path":[4,44,2,12,4],"span":[912,2,10]},{"path":[4,44,2,12,5],"span":[912,11,17]},{"path":[4,44,2,12,1],"span":[912,18,25]},{"path":[4,44,2,12,3],"span":[912,28,30]},{"path":[4,44,2,13],"span":[913,2,36]},{"path":[4,44,2,13,4],"span":[913,2,10]},{"path":[4,44,2,13,5],"span":[913,11,17]},{"path":[4,44,2,13,1],"span":[913,18,30]},{"path":[4,44,2,13,3],"span":[913,33,35]},{"path":[4,44,2,14],"span":[914,2,35]},{"path":[4,44,2,14,4],"span":[914,2,10]},{"path":[4,44,2,14,5],"span":[914,11,16]},{"path":[4,44,2,14,1],"span":[914,17,29]},{"path":[4,44,2,14,3],"span":[914,32,34]},{"path":[4,44,2,15],"span":[915,2,29]},{"path":[4,44,2,15,4],"span":[915,2,10]},{"path":[4,44,2,15,5],"span":[915,11,17]},{"path":[4,44,2,15,1],"span":[915,18,23]},{"path":[4,44,2,15,3],"span":[915,26,28]},{"path":[4,44,2,16],"span":[916,2,33]},{"path":[4,44,2,16,4],"span":[916,2,10]},{"path":[4,44,2,16,5],"span":[916,11,17]},{"path":[4,44,2,16,1],"span":[916,18,27]},{"path":[4,44,2,16,3],"span":[916,30,32]},{"path":[4,44,2,17],"span":[917,2,32]},{"path":[4,44,2,17,4],"span":[917,2,10]},{"path":[4,44,2,17,5],"span":[917,11,17]},{"path":[4,44,2,17,1],"span":[917,18,26]},{"path":[4,44,2,17,3],"span":[917,29,31]},{"path":[4,44,2,18],"span":[918,2,35]},{"path":[4,44,2,18,4],"span":[918,2,10]},{"path":[4,44,2,18,5],"span":[918,11,17]},{"path":[4,44,2,18,1],"span":[918,18,29]},{"path":[4,44,2,18,3],"span":[918,32,34]},{"path":[4,44,2,19],"span":[920,2,36]},{"path":[4,44,2,19,4],"span":[920,2,10]},{"path":[4,44,2,19,5],"span":[920,11,17]},{"path":[4,44,2,19,1],"span":[920,18,30]},{"path":[4,44,2,19,3],"span":[920,33,35]},{"path":[4,44,2,20],"span":[921,2,38]},{"path":[4,44,2,20,4],"span":[921,2,10]},{"path":[4,44,2,20,5],"span":[921,11,16]},{"path":[4,44,2,20,1],"span":[921,17,32]},{"path":[4,44,2,20,3],"span":[921,35,37]},{"path":[4,44,2,21],"span":[922,2,47]},{"path":[4,44,2,21,4],"span":[922,2,10]},{"path":[4,44,2,21,5],"span":[922,11,16]},{"path":[4,44,2,21,1],"span":[922,17,41]},{"path":[4,44,2,21,3],"span":[922,44,46]},{"path":[4,44,2,22],"span":[923,2,30]},{"path":[4,44,2,22,4],"span":[923,2,10]},{"path":[4,44,2,22,5],"span":[923,11,16]},{"path":[4,44,2,22,1],"span":[923,17,24]},{"path":[4,44,2,22,3],"span":[923,27,29]},{"path":[4,44,2,23],"span":[924,2,29]},{"path":[4,44,2,23,4],"span":[924,2,10]},{"path":[4,44,2,23,5],"span":[924,11,16]},{"path":[4,44,2,23,1],"span":[924,17,23]},{"path":[4,44,2,23,3],"span":[924,26,28]},{"path":[4,44,2,24],"span":[925,2,29]},{"path":[4,44,2,24,4],"span":[925,2,10]},{"path":[4,44,2,24,5],"span":[925,11,16]},{"path":[4,44,2,24,1],"span":[925,17,23]},{"path":[4,44,2,24,3],"span":[925,26,28]},{"path":[4,44,2,25],"span":[926,2,36]},{"path":[4,44,2,25,4],"span":[926,2,10]},{"path":[4,44,2,25,5],"span":[926,11,17]},{"path":[4,44,2,25,1],"span":[926,18,30]},{"path":[4,44,2,25,3],"span":[926,33,35]},{"path":[4,44,2,26],"span":[927,2,39]},{"path":[4,44,2,26,4],"span":[927,2,10]},{"path":[4,44,2,26,5],"span":[927,11,16]},{"path":[4,44,2,26,1],"span":[927,17,33]},{"path":[4,44,2,26,3],"span":[927,36,38]},{"path":[4,44,2,27],"span":[928,2,44]},{"path":[4,44,2,27,4],"span":[928,2,10]},{"path":[4,44,2,27,5],"span":[928,11,17]},{"path":[4,44,2,27,1],"span":[928,18,38]},{"path":[4,44,2,27,3],"span":[928,41,43]},{"path":[4,44,2,28],"span":[930,2,36]},{"path":[4,44,2,28,4],"span":[930,2,10]},{"path":[4,44,2,28,5],"span":[930,11,17]},{"path":[4,44,2,28,1],"span":[930,18,30]},{"path":[4,44,2,28,3],"span":[930,33,35]},{"path":[4,44,2,29],"span":[931,2,37]},{"path":[4,44,2,29,4],"span":[931,2,10]},{"path":[4,44,2,29,5],"span":[931,11,16]},{"path":[4,44,2,29,1],"span":[931,17,31]},{"path":[4,44,2,29,3],"span":[931,34,36]},{"path":[4,44,2,30],"span":[932,2,42]},{"path":[4,44,2,30,4],"span":[932,2,10]},{"path":[4,44,2,30,5],"span":[932,11,17]},{"path":[4,44,2,30,1],"span":[932,18,36]},{"path":[4,44,2,30,3],"span":[932,39,41]},{"path":[4,44,2,31],"span":[933,2,38]},{"path":[4,44,2,31,4],"span":[933,2,10]},{"path":[4,44,2,31,5],"span":[933,11,17]},{"path":[4,44,2,31,1],"span":[933,18,32]},{"path":[4,44,2,31,3],"span":[933,35,37]},{"path":[4,44,2,32],"span":[934,2,42]},{"path":[4,44,2,32,4],"span":[934,2,10]},{"path":[4,44,2,32,5],"span":[934,11,17]},{"path":[4,44,2,32,1],"span":[934,18,36]},{"path":[4,44,2,32,3],"span":[934,39,41]},{"path":[4,44,2,33],"span":[935,2,39]},{"path":[4,44,2,33,4],"span":[935,2,10]},{"path":[4,44,2,33,5],"span":[935,11,17]},{"path":[4,44,2,33,1],"span":[935,18,33]},{"path":[4,44,2,33,3],"span":[935,36,38]},{"path":[4,44,2,34],"span":[936,2,34]},{"path":[4,44,2,34,4],"span":[936,2,10]},{"path":[4,44,2,34,5],"span":[936,11,17]},{"path":[4,44,2,34,1],"span":[936,18,28]},{"path":[4,44,2,34,3],"span":[936,31,33]},{"path":[4,44,2,35],"span":[937,2,34]},{"path":[4,44,2,35,4],"span":[937,2,10]},{"path":[4,44,2,35,5],"span":[937,11,17]},{"path":[4,44,2,35,1],"span":[937,18,28]},{"path":[4,44,2,35,3],"span":[937,31,33]},{"path":[4,44,2,36],"span":[938,2,33]},{"path":[4,44,2,36,4],"span":[938,2,10]},{"path":[4,44,2,36,5],"span":[938,11,17]},{"path":[4,44,2,36,1],"span":[938,18,27]},{"path":[4,44,2,36,3],"span":[938,30,32]},{"path":[4,44,2,37],"span":[940,2,33]},{"path":[4,44,2,37,4],"span":[940,2,10]},{"path":[4,44,2,37,5],"span":[940,11,15]},{"path":[4,44,2,37,1],"span":[940,16,27]},{"path":[4,44,2,37,3],"span":[940,30,32]},{"path":[4,44,2,38],"span":[941,2,36]},{"path":[4,44,2,38,4],"span":[941,2,10]},{"path":[4,44,2,38,5],"span":[941,11,15]},{"path":[4,44,2,38,1],"span":[941,16,30]},{"path":[4,44,2,38,3],"span":[941,33,35]},{"path":[4,44,2,39],"span":[942,2,38]},{"path":[4,44,2,39,4],"span":[942,2,10]},{"path":[4,44,2,39,5],"span":[942,11,15]},{"path":[4,44,2,39,1],"span":[942,16,32]},{"path":[4,44,2,39,3],"span":[942,35,37]},{"path":[4,44,2,40],"span":[943,2,34]},{"path":[4,44,2,40,4],"span":[943,2,10]},{"path":[4,44,2,40,5],"span":[943,11,15]},{"path":[4,44,2,40,1],"span":[943,16,28]},{"path":[4,44,2,40,3],"span":[943,31,33]},{"path":[4,44,2,41],"span":[944,2,33]},{"path":[4,44,2,41,4],"span":[944,2,10]},{"path":[4,44,2,41,5],"span":[944,11,15]},{"path":[4,44,2,41,1],"span":[944,16,27]},{"path":[4,44,2,41,3],"span":[944,30,32]},{"path":[4,44,2,42],"span":[945,2,38]},{"path":[4,44,2,42,4],"span":[945,2,10]},{"path":[4,44,2,42,5],"span":[945,11,15]},{"path":[4,44,2,42,1],"span":[945,16,32]},{"path":[4,44,2,42,3],"span":[945,35,37]},{"path":[4,44,2,43],"span":[946,2,36]},{"path":[4,44,2,43,4],"span":[946,2,10]},{"path":[4,44,2,43,5],"span":[946,11,15]},{"path":[4,44,2,43,1],"span":[946,16,30]},{"path":[4,44,2,43,3],"span":[946,33,35]},{"path":[4,44,2,44],"span":[948,2,59]},{"path":[4,44,2,44,4],"span":[948,2,10]},{"path":[4,44,2,44,6],"span":[948,11,36]},{"path":[4,44,2,44,1],"span":[948,37,53]},{"path":[4,44,2,44,3],"span":[948,56,58]},{"path":[4,44,2,45],"span":[950,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,44,2,45,4],"span":[950,2,10]},{"path":[4,44,2,45,5],"span":[950,11,16]},{"path":[4,44,2,45,1],"span":[950,17,28]},{"path":[4,44,2,45,3],"span":[950,31,34]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|