@lansweeper/data-platform-outbound-grpc 0.1.38 → 0.1.39
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 +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +146 -0
- package/gen-proto/outbound_pb.js +1179 -1
- package/generated-go/outbound.pb.go +2480 -2121
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +31 -0
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":"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":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":2,"jsonName":"os","proto3Optional":true},{"name":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":3,"jsonName":"softwareInventory","proto3Optional":true},{"name":"antivirus","number":26,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AntivirusSoftware","jsonName":"antivirus"},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":4,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":5,"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":6,"jsonName":"chassis","proto3Optional":true},{"name":"memory","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":7,"jsonName":"memory","proto3Optional":true},{"name":"motherboard","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":8,"jsonName":"motherboard","proto3Optional":true},{"name":"optical_drive","number":24,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OpticalDrive","jsonName":"opticalDrive"},{"name":"hard_drive","number":25,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardDrive","jsonName":"hardDrive"},{"name":"graphics_card","number":27,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.GraphicsCard","jsonName":"graphicsCard"},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":9,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":10,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_unique_key"},{"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":"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":"OperatingSystem","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true},{"name":"build","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"rank","proto3Optional":true},{"name":"windows","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"},{"name":"mac","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacOperatingSystemInfo","oneofIndex":0,"jsonName":"mac"},{"name":"linux","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LinuxOperatingSystemInfo","oneofIndex":0,"jsonName":"linux"}],"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":"MacOperatingSystemInfo","field":[{"name":"kernel_caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelCaption","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_caption"}]},{"name":"LinuxOperatingSystemInfo","field":[{"name":"kernel_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelName","proto3Optional":true},{"name":"kernel_release","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"kernelRelease","proto3Optional":true},{"name":"kernel_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"kernelVersion","proto3Optional":true},{"name":"distribution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"distribution","proto3Optional":true},{"name":"os_release","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"osRelease","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_name"},{"name":"_kernel_release"},{"name":"_kernel_version"},{"name":"_distribution"},{"name":"_os_release"}]},{"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":"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":"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":"HardDrive","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"compressed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"compressed","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"drive_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"driveType","proto3Optional":true},{"name":"file_system","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fileSystem","proto3Optional":true},{"name":"free_space","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"freeSpace","proto3Optional":true},{"name":"size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"size","proto3Optional":true},{"name":"volume_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"volumeName","proto3Optional":true},{"name":"serial_number","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"serialNumber","proto3Optional":true},{"name":"mounted_on","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"mountedOn","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_compressed"},{"name":"_description"},{"name":"_device_id"},{"name":"_drive_type"},{"name":"_file_system"},{"name":"_free_space"},{"name":"_size"},{"name":"_volume_name"},{"name":"_serial_number"},{"name":"_mounted_on"}]},{"name":"GraphicsCard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"color_planes_count","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"colorPlanesCount","proto3Optional":true},{"name":"current_bits_per_pixel","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"currentBitsPerPixel","proto3Optional":true},{"name":"current_horizontal_resolution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"currentHorizontalResolution","proto3Optional":true},{"name":"current_number_of_colors","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"currentNumberOfColors","proto3Optional":true},{"name":"current_refresh_rate","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"currentRefreshRate","proto3Optional":true},{"name":"current_scan_mode","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"currentScanMode","proto3Optional":true},{"name":"current_vertical_resolution","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentVerticalResolution","proto3Optional":true},{"name":"device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"deviceId","proto3Optional":true},{"name":"device_specific_pens","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"driver_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"driverVersion","proto3Optional":true},{"name":"inf_filename","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"infFilename","proto3Optional":true},{"name":"inf_section","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"infSection","proto3Optional":true},{"name":"installed_display_drivers","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"installedDisplayDrivers","proto3Optional":true},{"name":"is_monochrome","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"isMonochrome","proto3Optional":true},{"name":"manufacturer","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_refresh_rate","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"maxRefreshRate","proto3Optional":true},{"name":"memory","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"memory","proto3Optional":true},{"name":"memory_type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":18,"jsonName":"memoryType","proto3Optional":true},{"name":"min_refresh_rate","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"minRefreshRate","proto3Optional":true},{"name":"pci_type","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"pciType","proto3Optional":true},{"name":"pnp_device_id","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"state","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":22,"jsonName":"state","proto3Optional":true},{"name":"subsystem_manufacturer","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":23,"jsonName":"subsystemManufacturer","proto3Optional":true},{"name":"subsystem_name","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"subsystemName","proto3Optional":true},{"name":"video_architecture","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"videoArchitecture","proto3Optional":true},{"name":"video_mode","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"videoMode","proto3Optional":true},{"name":"video_processor","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"videoProcessor","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_color_planes_count"},{"name":"_current_bits_per_pixel"},{"name":"_current_horizontal_resolution"},{"name":"_current_number_of_colors"},{"name":"_current_refresh_rate"},{"name":"_current_scan_mode"},{"name":"_current_vertical_resolution"},{"name":"_device_id"},{"name":"_device_specific_pens"},{"name":"_driver_version"},{"name":"_inf_filename"},{"name":"_inf_section"},{"name":"_installed_display_drivers"},{"name":"_is_monochrome"},{"name":"_manufacturer"},{"name":"_max_refresh_rate"},{"name":"_memory"},{"name":"_memory_type"},{"name":"_min_refresh_rate"},{"name":"_pci_type"},{"name":"_pnp_device_id"},{"name":"_state"},{"name":"_subsystem_manufacturer"},{"name":"_subsystem_name"},{"name":"_video_architecture"},{"name":"_video_mode"},{"name":"_video_processor"}]},{"name":"OpticalDrive","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"status","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"status","proto3Optional":true},{"name":"bus","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bus","proto3Optional":true},{"name":"capabilities","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"capabilities"},{"name":"cache_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"cacheSize","proto3Optional":true},{"name":"burn_support","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"burnSupport","proto3Optional":true},{"name":"cd_write","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"cdWrite","proto3Optional":true},{"name":"dvd_write","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dvdWrite","proto3Optional":true},{"name":"read_dvd","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"readDvd","proto3Optional":true},{"name":"drive_path","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"drivePath","proto3Optional":true},{"name":"firmware_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"firmwareVersion","proto3Optional":true},{"name":"connection","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"connection","proto3Optional":true},{"name":"is_underrun_protection_enabled","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"isUnderrunProtectionEnabled","proto3Optional":true},{"name":"manufacturer","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"manufacturer","proto3Optional":true},{"name":"mount_point","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"mountPoint","proto3Optional":true},{"name":"write_strategies","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"writeStrategies","proto3Optional":true},{"name":"scsi_bus","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"scsiBus","proto3Optional":true},{"name":"scsi_logical_unit","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"scsiLogicalUnit","proto3Optional":true},{"name":"scsi_port","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"scsiPort","proto3Optional":true},{"name":"scsi_target_id","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"scsiTargetId","proto3Optional":true},{"name":"media_burn_information","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"mediaBurnInformation","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_status"},{"name":"_bus"},{"name":"_cache_size"},{"name":"_burn_support"},{"name":"_cd_write"},{"name":"_dvd_write"},{"name":"_read_dvd"},{"name":"_drive_path"},{"name":"_firmware_version"},{"name":"_connection"},{"name":"_is_underrun_protection_enabled"},{"name":"_manufacturer"},{"name":"_mount_point"},{"name":"_write_strategies"},{"name":"_scsi_bus"},{"name":"_scsi_logical_unit"},{"name":"_scsi_port"},{"name":"_scsi_target_id"},{"name":"_media_burn_information"}]},{"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":"AntivirusSoftware","field":[{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"guid","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"guid","proto3Optional":true},{"name":"enabled","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"enabled","proto3Optional":true},{"name":"up_to_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"upToDate","proto3Optional":true},{"name":"software","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","oneofIndex":4,"jsonName":"software","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_guid"},{"name":"_enabled"},{"name":"_up_to_date"},{"name":"_software"}]},{"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,989,1]},{"path":[12],"span":[7,0,18],"leadingComments":"\n Copyright Lansweeper (c)\n\n This files contains the Data Access API and the definition of outbound model\n\n N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc\n"},{"path":[2],"span":[8,0,38]},{"path":[8],"span":[10,0,37]},{"path":[8,11],"span":[10,0,37]},{"path":[8],"span":[11,0,34]},{"path":[8,10],"span":[11,0,34]},{"path":[3,0],"span":[13,0,41]},{"path":[3,1],"span":[14,0,35]},{"path":[6,0],"span":[23,0,33,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[23,8,31]},{"path":[6,0,2,0],"span":[26,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[26,6,15]},{"path":[6,0,2,0,2],"span":[26,17,33]},{"path":[6,0,2,0,3],"span":[26,44,61]},{"path":[6,0,2,1],"span":[29,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[29,6,18]},{"path":[6,0,2,1,2],"span":[29,19,36]},{"path":[6,0,2,1,6],"span":[29,47,53]},{"path":[6,0,2,1,3],"span":[29,54,72]},{"path":[6,0,2,2],"span":[32,2,77],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,2,1],"span":[32,6,19]},{"path":[6,0,2,2,2],"span":[32,21,41]},{"path":[6,0,2,2,3],"span":[32,52,73]},{"path":[4,0],"span":[38,0,41,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[38,8,24]},{"path":[4,0,2,0],"span":[39,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[39,2,12]},{"path":[4,0,2,0,1],"span":[39,13,24]},{"path":[4,0,2,0,3],"span":[39,27,28]},{"path":[4,1],"span":[43,0,49,1]},{"path":[4,1,1],"span":[43,8,25]},{"path":[4,1,2,0],"span":[44,2,19]},{"path":[4,1,2,0,5],"span":[44,2,6]},{"path":[4,1,2,0,1],"span":[44,7,14]},{"path":[4,1,2,0,3],"span":[44,17,18]},{"path":[4,1,2,1],"span":[45,2,40]},{"path":[4,1,2,1,4],"span":[45,2,10]},{"path":[4,1,2,1,5],"span":[45,11,17]},{"path":[4,1,2,1,1],"span":[45,18,35]},{"path":[4,1,2,1,3],"span":[45,38,39]},{"path":[4,1,2,2],"span":[47,2,29]},{"path":[4,1,2,2,4],"span":[47,2,10]},{"path":[4,1,2,2,6],"span":[47,11,17]},{"path":[4,1,2,2,1],"span":[47,18,24]},{"path":[4,1,2,2,3],"span":[47,27,28]},{"path":[4,1,2,3],"span":[48,2,30]},{"path":[4,1,2,3,4],"span":[48,2,10]},{"path":[4,1,2,3,6],"span":[48,11,17]},{"path":[4,1,2,3,1],"span":[48,18,25]},{"path":[4,1,2,3,3],"span":[48,28,29]},{"path":[4,2],"span":[51,0,53,1]},{"path":[4,2,1],"span":[51,8,25]},{"path":[4,2,2,0],"span":[52,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[52,2,12]},{"path":[4,2,2,0,1],"span":[52,13,19]},{"path":[4,2,2,0,3],"span":[52,22,23]},{"path":[4,3],"span":[55,0,58,1]},{"path":[4,3,1],"span":[55,8,26]},{"path":[4,3,2,0],"span":[56,2,20]},{"path":[4,3,2,0,6],"span":[56,2,8]},{"path":[4,3,2,0,1],"span":[56,9,15]},{"path":[4,3,2,0,3],"span":[56,18,19]},{"path":[4,3,2,1],"span":[57,2,30]},{"path":[4,3,2,1,4],"span":[57,2,10]},{"path":[4,3,2,1,6],"span":[57,11,17]},{"path":[4,3,2,1,1],"span":[57,18,25]},{"path":[4,3,2,1,3],"span":[57,28,29]},{"path":[4,4],"span":[60,0,68,1]},{"path":[4,4,1],"span":[60,8,28]},{"path":[4,4,2,0],"span":[61,2,30]},{"path":[4,4,2,0,4],"span":[61,2,10]},{"path":[4,4,2,0,5],"span":[61,11,16]},{"path":[4,4,2,0,1],"span":[61,17,25]},{"path":[4,4,2,0,3],"span":[61,28,29]},{"path":[4,4,2,1],"span":[62,2,30]},{"path":[4,4,2,1,4],"span":[62,2,10]},{"path":[4,4,2,1,5],"span":[62,11,16]},{"path":[4,4,2,1,1],"span":[62,17,25]},{"path":[4,4,2,1,3],"span":[62,28,29]},{"path":[4,4,2,2],"span":[63,2,27]},{"path":[4,4,2,2,4],"span":[63,2,10]},{"path":[4,4,2,2,5],"span":[63,11,16]},{"path":[4,4,2,2,1],"span":[63,17,22]},{"path":[4,4,2,2,3],"span":[63,25,26]},{"path":[4,4,2,3],"span":[64,2,27]},{"path":[4,4,2,3,4],"span":[64,2,10]},{"path":[4,4,2,3,5],"span":[64,11,16]},{"path":[4,4,2,3,1],"span":[64,17,22]},{"path":[4,4,2,3,3],"span":[64,25,26]},{"path":[4,4,2,4],"span":[65,2,32]},{"path":[4,4,2,4,4],"span":[65,2,10]},{"path":[4,4,2,4,5],"span":[65,11,16]},{"path":[4,4,2,4,1],"span":[65,17,27]},{"path":[4,4,2,4,3],"span":[65,30,31]},{"path":[4,4,2,5],"span":[67,2,36],"trailingComments":" false by default: to avoid to get full path\n"},{"path":[4,4,2,5,4],"span":[67,2,10]},{"path":[4,4,2,5,5],"span":[67,11,15]},{"path":[4,4,2,5,1],"span":[67,16,30]},{"path":[4,4,2,5,3],"span":[67,33,35]},{"path":[4,5],"span":[70,0,76,1]},{"path":[4,5,1],"span":[70,8,29]},{"path":[4,5,2,0],"span":[71,2,34]},{"path":[4,5,2,0,4],"span":[71,2,10]},{"path":[4,5,2,0,6],"span":[71,11,23]},{"path":[4,5,2,0,1],"span":[71,24,29]},{"path":[4,5,2,0,3],"span":[71,32,33]},{"path":[4,5,2,1],"span":[72,2,34]},{"path":[4,5,2,1,4],"span":[72,2,10]},{"path":[4,5,2,1,6],"span":[72,11,23]},{"path":[4,5,2,1,1],"span":[72,24,29]},{"path":[4,5,2,1,3],"span":[72,32,33]},{"path":[4,5,2,2],"span":[73,2,28]},{"path":[4,5,2,2,4],"span":[73,2,10]},{"path":[4,5,2,2,6],"span":[73,11,20]},{"path":[4,5,2,2,1],"span":[73,21,23]},{"path":[4,5,2,2,3],"span":[73,26,27]},{"path":[4,5,2,3],"span":[74,2,34]},{"path":[4,5,2,3,4],"span":[74,2,10]},{"path":[4,5,2,3,6],"span":[74,11,26]},{"path":[4,5,2,3,1],"span":[74,27,29]},{"path":[4,5,2,3,3],"span":[74,32,33]},{"path":[4,5,2,4],"span":[75,2,38]},{"path":[4,5,2,4,4],"span":[75,2,10]},{"path":[4,5,2,4,6],"span":[75,11,25]},{"path":[4,5,2,4,1],"span":[75,26,33]},{"path":[4,5,2,4,3],"span":[75,36,37]},{"path":[4,6],"span":[80,0,86,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[80,8,18]},{"path":[4,6,2,0],"span":[81,2,21]},{"path":[4,6,2,0,5],"span":[81,2,8]},{"path":[4,6,2,0,1],"span":[81,9,16]},{"path":[4,6,2,0,3],"span":[81,19,20]},{"path":[4,6,2,1],"span":[82,2,32]},{"path":[4,6,2,1,4],"span":[82,2,10]},{"path":[4,6,2,1,5],"span":[82,11,17]},{"path":[4,6,2,1,1],"span":[82,18,27]},{"path":[4,6,2,1,3],"span":[82,30,31]},{"path":[4,6,2,2],"span":[83,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[83,2,10]},{"path":[4,6,2,2,5],"span":[83,11,17]},{"path":[4,6,2,2,1],"span":[83,18,29]},{"path":[4,6,2,2,3],"span":[83,32,33]},{"path":[4,6,2,3],"span":[84,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[84,2,10]},{"path":[4,6,2,3,5],"span":[84,11,17]},{"path":[4,6,2,3,1],"span":[84,18,29]},{"path":[4,6,2,3,3],"span":[84,32,33]},{"path":[4,6,2,4],"span":[85,2,32]},{"path":[4,6,2,4,4],"span":[85,2,10]},{"path":[4,6,2,4,5],"span":[85,11,17]},{"path":[4,6,2,4,1],"span":[85,18,27]},{"path":[4,6,2,4,3],"span":[85,30,31]},{"path":[4,7],"span":[89,0,95,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[89,8,14]},{"path":[4,7,8,0],"span":[90,2,94,3]},{"path":[4,7,8,0,1],"span":[90,8,14]},{"path":[4,7,2,0],"span":[91,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[91,4,9]},{"path":[4,7,2,0,1],"span":[91,10,15]},{"path":[4,7,2,0,3],"span":[91,18,19]},{"path":[4,8],"span":[98,0,146,1],"leadingComments":" Asset object: IT/OT/CDR... CDK? "},{"path":[4,8,1],"span":[98,8,13]},{"path":[4,8,2,0],"span":[100,2,20]},{"path":[4,8,2,0,6],"span":[100,2,12]},{"path":[4,8,2,0,1],"span":[100,13,15]},{"path":[4,8,2,0,3],"span":[100,18,19]},{"path":[4,8,2,1],"span":[102,2,44]},{"path":[4,8,2,1,6],"span":[102,2,27]},{"path":[4,8,2,1,1],"span":[102,28,39]},{"path":[4,8,2,1,3],"span":[102,42,43]},{"path":[4,8,2,2],"span":[103,2,43]},{"path":[4,8,2,2,6],"span":[103,2,27]},{"path":[4,8,2,2,1],"span":[103,28,38]},{"path":[4,8,2,2,3],"span":[103,41,42]},{"path":[4,8,2,3],"span":[104,2,45]},{"path":[4,8,2,3,6],"span":[104,2,27]},{"path":[4,8,2,3,1],"span":[104,28,40]},{"path":[4,8,2,3,3],"span":[104,43,44]},{"path":[4,8,2,4],"span":[105,2,46]},{"path":[4,8,2,4,6],"span":[105,2,27]},{"path":[4,8,2,4,1],"span":[105,28,41]},{"path":[4,8,2,4,3],"span":[105,44,45]},{"path":[4,8,2,5],"span":[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,34]},{"path":[4,8,2,10,4],"span":[116,2,10]},{"path":[4,8,2,10,6],"span":[116,11,26]},{"path":[4,8,2,10,1],"span":[116,27,29]},{"path":[4,8,2,10,3],"span":[116,32,33]},{"path":[4,8,2,11],"span":[118,2,52]},{"path":[4,8,2,11,4],"span":[118,2,10]},{"path":[4,8,2,11,6],"span":[118,11,28]},{"path":[4,8,2,11,1],"span":[118,29,47]},{"path":[4,8,2,11,3],"span":[118,50,51]},{"path":[4,8,2,12],"span":[119,2,44]},{"path":[4,8,2,12,4],"span":[119,2,10]},{"path":[4,8,2,12,6],"span":[119,11,28]},{"path":[4,8,2,12,1],"span":[119,29,38]},{"path":[4,8,2,12,3],"span":[119,41,43]},{"path":[4,8,2,13],"span":[121,2,51]},{"path":[4,8,2,13,4],"span":[121,2,10]},{"path":[4,8,2,13,6],"span":[121,11,27]},{"path":[4,8,2,13,1],"span":[121,28,45]},{"path":[4,8,2,13,3],"span":[121,48,50]},{"path":[4,8,2,14],"span":[123,2,53]},{"path":[4,8,2,14,4],"span":[123,2,10]},{"path":[4,8,2,14,6],"span":[123,11,28]},{"path":[4,8,2,14,1],"span":[123,29,47]},{"path":[4,8,2,14,3],"span":[123,50,52]},{"path":[4,8,2,15],"span":[125,2,46]},{"path":[4,8,2,15,4],"span":[125,2,10]},{"path":[4,8,2,15,6],"span":[125,11,31]},{"path":[4,8,2,15,1],"span":[125,32,40]},{"path":[4,8,2,15,3],"span":[125,43,45]},{"path":[4,8,2,16],"span":[127,2,36]},{"path":[4,8,2,16,4],"span":[127,2,10]},{"path":[4,8,2,16,6],"span":[127,11,20]},{"path":[4,8,2,16,1],"span":[127,21,30]},{"path":[4,8,2,16,3],"span":[127,33,35]},{"path":[4,8,2,17],"span":[128,2,32]},{"path":[4,8,2,17,4],"span":[128,2,10]},{"path":[4,8,2,17,6],"span":[128,11,18]},{"path":[4,8,2,17,1],"span":[128,19,26]},{"path":[4,8,2,17,3],"span":[128,29,31]},{"path":[4,8,2,18],"span":[129,2,30]},{"path":[4,8,2,18,4],"span":[129,2,10]},{"path":[4,8,2,18,6],"span":[129,11,17]},{"path":[4,8,2,18,1],"span":[129,18,24]},{"path":[4,8,2,18,3],"span":[129,27,29]},{"path":[4,8,2,19],"span":[130,2,40]},{"path":[4,8,2,19,4],"span":[130,2,10]},{"path":[4,8,2,19,6],"span":[130,11,22]},{"path":[4,8,2,19,1],"span":[130,23,34]},{"path":[4,8,2,19,3],"span":[130,37,39]},{"path":[4,8,2,20],"span":[131,2,43]},{"path":[4,8,2,20,4],"span":[131,2,10]},{"path":[4,8,2,20,6],"span":[131,11,23]},{"path":[4,8,2,20,1],"span":[131,24,37]},{"path":[4,8,2,20,3],"span":[131,40,42]},{"path":[4,8,2,21],"span":[132,2,37]},{"path":[4,8,2,21,4],"span":[132,2,10]},{"path":[4,8,2,21,6],"span":[132,11,20]},{"path":[4,8,2,21,1],"span":[132,21,31]},{"path":[4,8,2,21,3],"span":[132,34,36]},{"path":[4,8,2,22],"span":[133,2,43]},{"path":[4,8,2,22,4],"span":[133,2,10]},{"path":[4,8,2,22,6],"span":[133,11,23]},{"path":[4,8,2,22,1],"span":[133,24,37]},{"path":[4,8,2,22,3],"span":[133,40,42]},{"path":[4,8,2,23],"span":[135,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,23,4],"span":[135,2,10]},{"path":[4,8,2,23,6],"span":[135,11,19]},{"path":[4,8,2,23,1],"span":[135,20,29]},{"path":[4,8,2,23,3],"span":[135,32,34]},{"path":[4,8,2,24],"span":[137,2,34]},{"path":[4,8,2,24,4],"span":[137,2,10]},{"path":[4,8,2,24,6],"span":[137,11,22]},{"path":[4,8,2,24,1],"span":[137,23,28]},{"path":[4,8,2,24,3],"span":[137,31,33]},{"path":[4,9],"span":[164,0,167,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":[164,8,11]},{"path":[4,9,2,0],"span":[165,2,17]},{"path":[4,9,2,0,5],"span":[165,2,8]},{"path":[4,9,2,0,1],"span":[165,9,12]},{"path":[4,9,2,0,3],"span":[165,15,16]},{"path":[4,9,2,1],"span":[166,2,28]},{"path":[4,9,2,1,4],"span":[166,2,10]},{"path":[4,9,2,1,5],"span":[166,11,17]},{"path":[4,9,2,1,1],"span":[166,18,23]},{"path":[4,9,2,1,3],"span":[166,26,27]},{"path":[4,10],"span":[174,0,181,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":[174,8,16]},{"path":[4,10,2,0],"span":[175,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,0,4],"span":[175,2,10]},{"path":[4,10,2,0,6],"span":[175,11,21]},{"path":[4,10,2,0,1],"span":[175,22,26]},{"path":[4,10,2,0,3],"span":[175,29,30]},{"path":[4,10,2,1],"span":[176,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,1,4],"span":[176,2,10]},{"path":[4,10,2,1,6],"span":[176,11,21]},{"path":[4,10,2,1,1],"span":[176,22,24]},{"path":[4,10,2,1,3],"span":[176,27,28]},{"path":[4,10,2,2],"span":[177,2,38]},{"path":[4,10,2,2,6],"span":[177,2,27]},{"path":[4,10,2,2,1],"span":[177,28,33]},{"path":[4,10,2,2,3],"span":[177,36,37]},{"path":[4,10,2,3],"span":[178,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,10,2,3,4],"span":[178,2,10]},{"path":[4,10,2,3,6],"span":[178,11,36]},{"path":[4,10,2,3,1],"span":[178,37,40]},{"path":[4,10,2,3,3],"span":[178,43,44]},{"path":[4,10,2,4],"span":[179,2,18]},{"path":[4,10,2,4,5],"span":[179,2,8]},{"path":[4,10,2,4,1],"span":[179,9,13]},{"path":[4,10,2,4,3],"span":[179,16,17]},{"path":[4,10,2,5],"span":[180,2,23]},{"path":[4,10,2,5,4],"span":[180,2,10]},{"path":[4,10,2,5,6],"span":[180,11,14]},{"path":[4,10,2,5,1],"span":[180,15,18]},{"path":[4,10,2,5,3],"span":[180,21,22]},{"path":[4,11],"span":[191,0,193,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":[191,8,19]},{"path":[4,11,2,0],"span":[192,2,31]},{"path":[4,11,2,0,6],"span":[192,2,21]},{"path":[4,11,2,0,1],"span":[192,22,26]},{"path":[4,11,2,0,3],"span":[192,29,30]},{"path":[4,12],"span":[203,0,217,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":[203,8,16]},{"path":[4,12,2,0],"span":[204,2,24]},{"path":[4,12,2,0,5],"span":[204,2,7]},{"path":[4,12,2,0,1],"span":[204,8,19]},{"path":[4,12,2,0,3],"span":[204,22,23]},{"path":[4,12,2,1],"span":[205,2,23]},{"path":[4,12,2,1,5],"span":[205,2,8]},{"path":[4,12,2,1,1],"span":[205,9,18]},{"path":[4,12,2,1,3],"span":[205,21,22]},{"path":[4,12,2,2],"span":[206,2,22]},{"path":[4,12,2,2,5],"span":[206,2,7]},{"path":[4,12,2,2,1],"span":[206,8,17]},{"path":[4,12,2,2,3],"span":[206,20,21]},{"path":[4,12,2,3],"span":[207,2,17]},{"path":[4,12,2,3,5],"span":[207,2,7]},{"path":[4,12,2,3,1],"span":[207,8,12]},{"path":[4,12,2,3,3],"span":[207,15,16]},{"path":[4,12,2,4],"span":[208,2,23]},{"path":[4,12,2,4,5],"span":[208,2,7]},{"path":[4,12,2,4,1],"span":[208,8,18]},{"path":[4,12,2,4,3],"span":[208,21,22]},{"path":[4,12,2,5],"span":[210,2,26]},{"path":[4,12,2,5,5],"span":[210,2,6]},{"path":[4,12,2,5,1],"span":[210,7,21]},{"path":[4,12,2,5,3],"span":[210,24,25]},{"path":[4,12,2,6],"span":[212,2,37]},{"path":[4,12,2,6,4],"span":[212,2,10]},{"path":[4,12,2,6,5],"span":[212,11,17]},{"path":[4,12,2,6,1],"span":[212,18,32]},{"path":[4,12,2,6,3],"span":[212,35,36]},{"path":[4,12,2,7],"span":[214,2,34]},{"path":[4,12,2,7,4],"span":[214,2,10]},{"path":[4,12,2,7,5],"span":[214,11,17]},{"path":[4,12,2,7,1],"span":[214,18,29]},{"path":[4,12,2,7,3],"span":[214,32,33]},{"path":[4,12,2,8],"span":[216,2,40]},{"path":[4,12,2,8,4],"span":[216,2,10]},{"path":[4,12,2,8,6],"span":[216,11,26]},{"path":[4,12,2,8,1],"span":[216,27,35]},{"path":[4,12,2,8,3],"span":[216,38,39]},{"path":[4,13],"span":[219,0,222,1]},{"path":[4,13,1],"span":[219,8,23]},{"path":[4,13,2,0],"span":[220,2,17]},{"path":[4,13,2,0,5],"span":[220,2,8]},{"path":[4,13,2,0,1],"span":[220,9,12]},{"path":[4,13,2,0,3],"span":[220,15,16]},{"path":[4,13,2,1],"span":[221,2,19]},{"path":[4,13,2,1,5],"span":[221,2,8]},{"path":[4,13,2,1,1],"span":[221,9,14]},{"path":[4,13,2,1,3],"span":[221,17,18]},{"path":[4,14],"span":[228,0,237,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":[228,8,17]},{"path":[4,14,2,0],"span":[230,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":[230,2,8]},{"path":[4,14,2,0,1],"span":[230,9,16]},{"path":[4,14,2,0,3],"span":[230,19,20]},{"path":[4,14,2,1],"span":[232,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,14,2,1,5],"span":[232,2,7]},{"path":[4,14,2,1,1],"span":[232,8,13]},{"path":[4,14,2,1,3],"span":[232,16,17]},{"path":[4,14,2,2],"span":[234,2,32],"leadingComments":" Fing Type\n"},{"path":[4,14,2,2,4],"span":[234,2,10]},{"path":[4,14,2,2,5],"span":[234,11,17]},{"path":[4,14,2,2,1],"span":[234,18,27]},{"path":[4,14,2,2,3],"span":[234,30,31]},{"path":[4,14,2,3],"span":[236,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,14,2,3,4],"span":[236,2,10]},{"path":[4,14,2,3,5],"span":[236,11,17]},{"path":[4,14,2,3,1],"span":[236,18,26]},{"path":[4,14,2,3,3],"span":[236,29,30]},{"path":[4,15],"span":[242,0,251,1],"leadingComments":"\n\n"},{"path":[4,15,1],"span":[242,8,18]},{"path":[4,15,2,0],"span":[243,2,21]},{"path":[4,15,2,0,6],"span":[243,2,11]},{"path":[4,15,2,0,1],"span":[243,12,16]},{"path":[4,15,2,0,3],"span":[243,19,20]},{"path":[4,15,2,1],"span":[244,2,18]},{"path":[4,15,2,1,5],"span":[244,2,8]},{"path":[4,15,2,1,1],"span":[244,9,13]},{"path":[4,15,2,1,3],"span":[244,16,17]},{"path":[4,15,2,2],"span":[245,2,29]},{"path":[4,15,2,2,4],"span":[245,2,10]},{"path":[4,15,2,2,5],"span":[245,11,17]},{"path":[4,15,2,2,1],"span":[245,18,24]},{"path":[4,15,2,2,3],"span":[245,27,28]},{"path":[4,15,2,3],"span":[246,2,33]},{"path":[4,15,2,3,4],"span":[246,2,10]},{"path":[4,15,2,3,5],"span":[246,11,17]},{"path":[4,15,2,3,1],"span":[246,18,28]},{"path":[4,15,2,3,3],"span":[246,31,32]},{"path":[4,15,2,4],"span":[247,2,29]},{"path":[4,15,2,4,4],"span":[247,2,10]},{"path":[4,15,2,4,5],"span":[247,11,17]},{"path":[4,15,2,4,1],"span":[247,18,24]},{"path":[4,15,2,4,3],"span":[247,27,28]},{"path":[4,15,2,5],"span":[248,2,26]},{"path":[4,15,2,5,4],"span":[248,2,10]},{"path":[4,15,2,5,5],"span":[248,11,17]},{"path":[4,15,2,5,1],"span":[248,18,21]},{"path":[4,15,2,5,3],"span":[248,24,25]},{"path":[4,15,2,6],"span":[249,2,33]},{"path":[4,15,2,6,4],"span":[249,2,10]},{"path":[4,15,2,6,5],"span":[249,11,17]},{"path":[4,15,2,6,1],"span":[249,18,28]},{"path":[4,15,2,6,3],"span":[249,31,32]},{"path":[4,15,2,7],"span":[250,2,32]},{"path":[4,15,2,7,4],"span":[250,2,10]},{"path":[4,15,2,7,5],"span":[250,11,17]},{"path":[4,15,2,7,1],"span":[250,18,27]},{"path":[4,15,2,7,3],"span":[250,30,31]},{"path":[4,16],"span":[253,0,283,1]},{"path":[4,16,1],"span":[253,8,20]},{"path":[4,16,2,0],"span":[254,2,29]},{"path":[4,16,2,0,4],"span":[254,2,10]},{"path":[4,16,2,0,5],"span":[254,11,16]},{"path":[4,16,2,0,1],"span":[254,17,24]},{"path":[4,16,2,0,3],"span":[254,27,28]},{"path":[4,16,2,1],"span":[257,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,16,2,1,4],"span":[257,2,10]},{"path":[4,16,2,1,5],"span":[257,11,16]},{"path":[4,16,2,1,1],"span":[257,17,24]},{"path":[4,16,2,1,3],"span":[257,27,28]},{"path":[4,16,2,2],"span":[260,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,16,2,2,4],"span":[260,2,10]},{"path":[4,16,2,2,5],"span":[260,11,16]},{"path":[4,16,2,2,1],"span":[260,17,25]},{"path":[4,16,2,2,3],"span":[260,28,29]},{"path":[4,16,2,3],"span":[263,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,16,2,3,4],"span":[263,2,10]},{"path":[4,16,2,3,5],"span":[263,11,16]},{"path":[4,16,2,3,1],"span":[263,17,26]},{"path":[4,16,2,3,3],"span":[263,29,30]},{"path":[4,16,2,4],"span":[265,2,30]},{"path":[4,16,2,4,4],"span":[265,2,10]},{"path":[4,16,2,4,5],"span":[265,11,15]},{"path":[4,16,2,4,1],"span":[265,16,25]},{"path":[4,16,2,4,3],"span":[265,28,29]},{"path":[4,16,2,5],"span":[266,2,29]},{"path":[4,16,2,5,4],"span":[266,2,10]},{"path":[4,16,2,5,5],"span":[266,11,17]},{"path":[4,16,2,5,1],"span":[266,18,24]},{"path":[4,16,2,5,3],"span":[266,27,28]},{"path":[4,16,2,6],"span":[267,2,33]},{"path":[4,16,2,6,4],"span":[267,2,10]},{"path":[4,16,2,6,5],"span":[267,11,17]},{"path":[4,16,2,6,1],"span":[267,18,27]},{"path":[4,16,2,6,3],"span":[267,30,32]},{"path":[4,16,2,7],"span":[268,2,33]},{"path":[4,16,2,7,4],"span":[268,2,10]},{"path":[4,16,2,7,5],"span":[268,11,17]},{"path":[4,16,2,7,1],"span":[268,18,27]},{"path":[4,16,2,7,3],"span":[268,30,32]},{"path":[4,16,2,8],"span":[269,2,34]},{"path":[4,16,2,8,4],"span":[269,2,10]},{"path":[4,16,2,8,5],"span":[269,11,17]},{"path":[4,16,2,8,1],"span":[269,18,28]},{"path":[4,16,2,8,3],"span":[269,31,33]},{"path":[4,16,2,9],"span":[270,2,35]},{"path":[4,16,2,9,4],"span":[270,2,10]},{"path":[4,16,2,9,5],"span":[270,11,17]},{"path":[4,16,2,9,1],"span":[270,18,29]},{"path":[4,16,2,9,3],"span":[270,32,34]},{"path":[4,16,2,10],"span":[272,2,27]},{"path":[4,16,2,10,4],"span":[272,2,10]},{"path":[4,16,2,10,5],"span":[272,11,17]},{"path":[4,16,2,10,1],"span":[272,18,21]},{"path":[4,16,2,10,3],"span":[272,24,26]},{"path":[4,16,2,11],"span":[273,2,27]},{"path":[4,16,2,11,4],"span":[273,2,10]},{"path":[4,16,2,11,5],"span":[273,11,16]},{"path":[4,16,2,11,1],"span":[273,17,21]},{"path":[4,16,2,11,3],"span":[273,24,26]},{"path":[4,16,2,12],"span":[275,2,38]},{"path":[4,16,2,12,4],"span":[275,2,10]},{"path":[4,16,2,12,6],"span":[275,11,27]},{"path":[4,16,2,12,1],"span":[275,28,32]},{"path":[4,16,2,12,3],"span":[275,35,37]},{"path":[4,16,2,13],"span":[278,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,13,4],"span":[278,2,10]},{"path":[4,16,2,13,6],"span":[278,11,23]},{"path":[4,16,2,13,1],"span":[278,24,37]},{"path":[4,16,2,13,3],"span":[278,40,42]},{"path":[4,16,2,14],"span":[280,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,14,4],"span":[280,2,10]},{"path":[4,16,2,14,6],"span":[280,11,23]},{"path":[4,16,2,14,1],"span":[280,24,37]},{"path":[4,16,2,14,3],"span":[280,40,42]},{"path":[4,16,2,15],"span":[282,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,15,4],"span":[282,2,10]},{"path":[4,16,2,15,6],"span":[282,11,23]},{"path":[4,16,2,15,1],"span":[282,24,38]},{"path":[4,16,2,15,3],"span":[282,41,43]},{"path":[4,17],"span":[285,0,290,1]},{"path":[4,17,1],"span":[285,8,24]},{"path":[4,17,2,0],"span":[286,2,35]},{"path":[4,17,2,0,4],"span":[286,2,10]},{"path":[4,17,2,0,5],"span":[286,11,17]},{"path":[4,17,2,0,1],"span":[286,18,30]},{"path":[4,17,2,0,3],"span":[286,33,34]},{"path":[4,17,2,1],"span":[287,2,28]},{"path":[4,17,2,1,4],"span":[287,2,10]},{"path":[4,17,2,1,5],"span":[287,11,17]},{"path":[4,17,2,1,1],"span":[287,18,23]},{"path":[4,17,2,1,3],"span":[287,26,27]},{"path":[4,17,2,2],"span":[288,2,35]},{"path":[4,17,2,2,4],"span":[288,2,10]},{"path":[4,17,2,2,5],"span":[288,11,17]},{"path":[4,17,2,2,1],"span":[288,18,30]},{"path":[4,17,2,2,3],"span":[288,33,34]},{"path":[4,17,2,3],"span":[289,2,36]},{"path":[4,17,2,3,4],"span":[289,2,10]},{"path":[4,17,2,3,5],"span":[289,11,17]},{"path":[4,17,2,3,1],"span":[289,18,31]},{"path":[4,17,2,3,3],"span":[289,34,35]},{"path":[4,18],"span":[294,0,317,1]},{"path":[4,18,1],"span":[294,8,23]},{"path":[4,18,2,0],"span":[296,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,18,2,0,4],"span":[296,2,10]},{"path":[4,18,2,0,5],"span":[296,11,16]},{"path":[4,18,2,0,1],"span":[296,17,19]},{"path":[4,18,2,0,3],"span":[296,22,23]},{"path":[4,18,2,1],"span":[299,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,18,2,1,4],"span":[299,2,10]},{"path":[4,18,2,1,5],"span":[299,11,16]},{"path":[4,18,2,1,1],"span":[299,17,24]},{"path":[4,18,2,1,3],"span":[299,27,29]},{"path":[4,18,2,2],"span":[301,2,27]},{"path":[4,18,2,2,4],"span":[301,2,10]},{"path":[4,18,2,2,5],"span":[301,11,17]},{"path":[4,18,2,2,1],"span":[301,18,22]},{"path":[4,18,2,2,3],"span":[301,25,26]},{"path":[4,18,2,3],"span":[302,2,30]},{"path":[4,18,2,3,4],"span":[302,2,10]},{"path":[4,18,2,3,5],"span":[302,11,17]},{"path":[4,18,2,3,1],"span":[302,18,25]},{"path":[4,18,2,3,3],"span":[302,28,29]},{"path":[4,18,2,4],"span":[303,2,28]},{"path":[4,18,2,4,4],"span":[303,2,10]},{"path":[4,18,2,4,5],"span":[303,11,17]},{"path":[4,18,2,4,1],"span":[303,18,23]},{"path":[4,18,2,4,3],"span":[303,26,27]},{"path":[4,18,2,5],"span":[305,2,33]},{"path":[4,18,2,5,4],"span":[305,2,10]},{"path":[4,18,2,5,5],"span":[305,11,17]},{"path":[4,18,2,5,1],"span":[305,18,28]},{"path":[4,18,2,5,3],"span":[305,31,32]},{"path":[4,18,2,6],"span":[307,2,26]},{"path":[4,18,2,6,4],"span":[307,2,10]},{"path":[4,18,2,6,5],"span":[307,11,17]},{"path":[4,18,2,6,1],"span":[307,18,21]},{"path":[4,18,2,6,3],"span":[307,24,25]},{"path":[4,18,2,7],"span":[308,2,29]},{"path":[4,18,2,7,4],"span":[308,2,10]},{"path":[4,18,2,7,5],"span":[308,11,17]},{"path":[4,18,2,7,1],"span":[308,18,24]},{"path":[4,18,2,7,3],"span":[308,27,28]},{"path":[4,18,2,8],"span":[310,2,26]},{"path":[4,18,2,8,4],"span":[310,2,10]},{"path":[4,18,2,8,5],"span":[310,11,16]},{"path":[4,18,2,8,1],"span":[310,17,21]},{"path":[4,18,2,8,3],"span":[310,24,25]},{"path":[4,18,8,0],"span":[312,2,316,3]},{"path":[4,18,8,0,1],"span":[312,8,12]},{"path":[4,18,2,9],"span":[313,4,44]},{"path":[4,18,2,9,6],"span":[313,4,30]},{"path":[4,18,2,9,1],"span":[313,31,38]},{"path":[4,18,2,9,3],"span":[313,41,43]},{"path":[4,18,2,10],"span":[314,4,36]},{"path":[4,18,2,10,6],"span":[314,4,26]},{"path":[4,18,2,10,1],"span":[314,27,30]},{"path":[4,18,2,10,3],"span":[314,33,35]},{"path":[4,18,2,11],"span":[315,4,40]},{"path":[4,18,2,11,6],"span":[315,4,28]},{"path":[4,18,2,11,1],"span":[315,29,34]},{"path":[4,18,2,11,3],"span":[315,37,39]},{"path":[4,19],"span":[319,0,321,1]},{"path":[4,19,1],"span":[319,8,30]},{"path":[4,19,2,0],"span":[320,2,37]},{"path":[4,19,2,0,4],"span":[320,2,10]},{"path":[4,19,2,0,5],"span":[320,11,17]},{"path":[4,19,2,0,1],"span":[320,18,32]},{"path":[4,19,2,0,3],"span":[320,35,36]},{"path":[4,20],"span":[323,0,329,1]},{"path":[4,20,1],"span":[323,8,32]},{"path":[4,20,2,0],"span":[324,2,34]},{"path":[4,20,2,0,4],"span":[324,2,10]},{"path":[4,20,2,0,5],"span":[324,11,17]},{"path":[4,20,2,0,1],"span":[324,18,29]},{"path":[4,20,2,0,3],"span":[324,32,33]},{"path":[4,20,2,1],"span":[325,2,37]},{"path":[4,20,2,1,4],"span":[325,2,10]},{"path":[4,20,2,1,5],"span":[325,11,17]},{"path":[4,20,2,1,1],"span":[325,18,32]},{"path":[4,20,2,1,3],"span":[325,35,36]},{"path":[4,20,2,2],"span":[326,2,37]},{"path":[4,20,2,2,4],"span":[326,2,10]},{"path":[4,20,2,2,5],"span":[326,11,17]},{"path":[4,20,2,2,1],"span":[326,18,32]},{"path":[4,20,2,2,3],"span":[326,35,36]},{"path":[4,20,2,3],"span":[327,2,35]},{"path":[4,20,2,3,4],"span":[327,2,10]},{"path":[4,20,2,3,5],"span":[327,11,17]},{"path":[4,20,2,3,1],"span":[327,18,30]},{"path":[4,20,2,3,3],"span":[327,33,34]},{"path":[4,20,2,4],"span":[328,2,33]},{"path":[4,20,2,4,4],"span":[328,2,10]},{"path":[4,20,2,4,5],"span":[328,11,17]},{"path":[4,20,2,4,1],"span":[328,18,28]},{"path":[4,20,2,4,3],"span":[328,31,32]},{"path":[4,21],"span":[331,0,384,1]},{"path":[4,21,1],"span":[331,8,34]},{"path":[4,21,2,0],"span":[332,2,30]},{"path":[4,21,2,0,4],"span":[332,2,10]},{"path":[4,21,2,0,5],"span":[332,11,17]},{"path":[4,21,2,0,1],"span":[332,18,25]},{"path":[4,21,2,0,3],"span":[332,28,29]},{"path":[4,21,2,1],"span":[333,2,34]},{"path":[4,21,2,1,4],"span":[333,2,10]},{"path":[4,21,2,1,5],"span":[333,11,16]},{"path":[4,21,2,1,1],"span":[333,17,29]},{"path":[4,21,2,1,3],"span":[333,32,33]},{"path":[4,21,2,2],"span":[334,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,21,2,2,4],"span":[334,2,10]},{"path":[4,21,2,2,5],"span":[334,11,17]},{"path":[4,21,2,2,1],"span":[334,18,23]},{"path":[4,21,2,2,3],"span":[334,26,27]},{"path":[4,21,2,3],"span":[335,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,21,2,3,4],"span":[335,2,10]},{"path":[4,21,2,3,5],"span":[335,11,17]},{"path":[4,21,2,3,1],"span":[335,18,30]},{"path":[4,21,2,3,3],"span":[335,33,34]},{"path":[4,21,2,4],"span":[336,2,41]},{"path":[4,21,2,4,4],"span":[336,2,10]},{"path":[4,21,2,4,5],"span":[336,11,15]},{"path":[4,21,2,4,1],"span":[336,16,36]},{"path":[4,21,2,4,3],"span":[336,39,40]},{"path":[4,21,2,5],"span":[337,2,35]},{"path":[4,21,2,5,4],"span":[337,2,10]},{"path":[4,21,2,5,5],"span":[337,11,15]},{"path":[4,21,2,5,1],"span":[337,16,30]},{"path":[4,21,2,5,3],"span":[337,33,34]},{"path":[4,21,2,6],"span":[338,2,39]},{"path":[4,21,2,6,4],"span":[338,2,10]},{"path":[4,21,2,6,5],"span":[338,11,15]},{"path":[4,21,2,6,1],"span":[338,16,34]},{"path":[4,21,2,6,3],"span":[338,37,38]},{"path":[4,21,2,7],"span":[340,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,21,2,7,4],"span":[340,2,10]},{"path":[4,21,2,7,5],"span":[340,11,17]},{"path":[4,21,2,7,1],"span":[340,18,25]},{"path":[4,21,2,7,3],"span":[340,28,30]},{"path":[4,21,2,8],"span":[342,2,35]},{"path":[4,21,2,8,4],"span":[342,2,10]},{"path":[4,21,2,8,5],"span":[342,11,17]},{"path":[4,21,2,8,1],"span":[342,18,29]},{"path":[4,21,2,8,3],"span":[342,32,34]},{"path":[4,21,2,9],"span":[343,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,21,2,9,4],"span":[343,2,10]},{"path":[4,21,2,9,5],"span":[343,11,17]},{"path":[4,21,2,9,1],"span":[343,18,30]},{"path":[4,21,2,9,3],"span":[343,33,35]},{"path":[4,21,2,10],"span":[344,2,34]},{"path":[4,21,2,10,4],"span":[344,2,10]},{"path":[4,21,2,10,5],"span":[344,11,17]},{"path":[4,21,2,10,1],"span":[344,18,28]},{"path":[4,21,2,10,3],"span":[344,31,33]},{"path":[4,21,2,11],"span":[345,2,31]},{"path":[4,21,2,11,4],"span":[345,2,10]},{"path":[4,21,2,11,5],"span":[345,11,17]},{"path":[4,21,2,11,1],"span":[345,18,25]},{"path":[4,21,2,11,3],"span":[345,28,30]},{"path":[4,21,2,12],"span":[346,2,32]},{"path":[4,21,2,12,4],"span":[346,2,10]},{"path":[4,21,2,12,5],"span":[346,11,17]},{"path":[4,21,2,12,1],"span":[346,18,26]},{"path":[4,21,2,12,3],"span":[346,29,31]},{"path":[4,21,2,13],"span":[347,2,36]},{"path":[4,21,2,13,4],"span":[347,2,10]},{"path":[4,21,2,13,5],"span":[347,11,17]},{"path":[4,21,2,13,1],"span":[347,18,30]},{"path":[4,21,2,13,3],"span":[347,33,35]},{"path":[4,21,2,14],"span":[348,2,35]},{"path":[4,21,2,14,4],"span":[348,2,10]},{"path":[4,21,2,14,5],"span":[348,11,17]},{"path":[4,21,2,14,1],"span":[348,18,29]},{"path":[4,21,2,14,3],"span":[348,32,34]},{"path":[4,21,2,15],"span":[349,2,39]},{"path":[4,21,2,15,4],"span":[349,2,10]},{"path":[4,21,2,15,5],"span":[349,11,16]},{"path":[4,21,2,15,1],"span":[349,17,33]},{"path":[4,21,2,15,3],"span":[349,36,38]},{"path":[4,21,2,16],"span":[350,2,27]},{"path":[4,21,2,16,4],"span":[350,2,10]},{"path":[4,21,2,16,5],"span":[350,11,15]},{"path":[4,21,2,16,1],"span":[350,16,21]},{"path":[4,21,2,16,3],"span":[350,24,26]},{"path":[4,21,2,17],"span":[351,2,35]},{"path":[4,21,2,17,4],"span":[351,2,10]},{"path":[4,21,2,17,5],"span":[351,11,17]},{"path":[4,21,2,17,1],"span":[351,18,29]},{"path":[4,21,2,17,3],"span":[351,32,34]},{"path":[4,21,2,18],"span":[352,2,52]},{"path":[4,21,2,18,4],"span":[352,2,10]},{"path":[4,21,2,18,5],"span":[352,11,17]},{"path":[4,21,2,18,1],"span":[352,18,46]},{"path":[4,21,2,18,3],"span":[352,49,51]},{"path":[4,21,2,19],"span":[353,2,55]},{"path":[4,21,2,19,4],"span":[353,2,10]},{"path":[4,21,2,19,6],"span":[353,11,36]},{"path":[4,21,2,19,1],"span":[353,37,49]},{"path":[4,21,2,19,3],"span":[353,52,54]},{"path":[4,21,2,20],"span":[354,2,47]},{"path":[4,21,2,20,4],"span":[354,2,10]},{"path":[4,21,2,20,5],"span":[354,11,17]},{"path":[4,21,2,20,1],"span":[354,18,41]},{"path":[4,21,2,20,3],"span":[354,44,46]},{"path":[4,21,2,21],"span":[355,2,48]},{"path":[4,21,2,21,4],"span":[355,2,10]},{"path":[4,21,2,21,5],"span":[355,11,17]},{"path":[4,21,2,21,1],"span":[355,18,42]},{"path":[4,21,2,21,3],"span":[355,45,47]},{"path":[4,21,2,22],"span":[356,2,36]},{"path":[4,21,2,22,4],"span":[356,2,10]},{"path":[4,21,2,22,5],"span":[356,11,17]},{"path":[4,21,2,22,1],"span":[356,18,30]},{"path":[4,21,2,22,3],"span":[356,33,35]},{"path":[4,21,2,23],"span":[357,2,40]},{"path":[4,21,2,23,4],"span":[357,2,10]},{"path":[4,21,2,23,6],"span":[357,11,22]},{"path":[4,21,2,23,1],"span":[357,23,34]},{"path":[4,21,2,23,3],"span":[357,37,39]},{"path":[4,21,2,24],"span":[358,2,45]},{"path":[4,21,2,24,4],"span":[358,2,10]},{"path":[4,21,2,24,6],"span":[358,11,22]},{"path":[4,21,2,24,1],"span":[358,23,39]},{"path":[4,21,2,24,3],"span":[358,42,44]},{"path":[4,21,2,25],"span":[359,2,36]},{"path":[4,21,2,25,4],"span":[359,2,10]},{"path":[4,21,2,25,6],"span":[359,11,22]},{"path":[4,21,2,25,1],"span":[359,23,30]},{"path":[4,21,2,25,3],"span":[359,33,35]},{"path":[4,21,2,26],"span":[360,2,39]},{"path":[4,21,2,26,4],"span":[360,2,10]},{"path":[4,21,2,26,5],"span":[360,11,17]},{"path":[4,21,2,26,1],"span":[360,18,33]},{"path":[4,21,2,26,3],"span":[360,36,38]},{"path":[4,21,2,27],"span":[361,2,43]},{"path":[4,21,2,27,4],"span":[361,2,10]},{"path":[4,21,2,27,5],"span":[361,11,17]},{"path":[4,21,2,27,1],"span":[361,18,37]},{"path":[4,21,2,27,3],"span":[361,40,42]},{"path":[4,21,2,28],"span":[362,2,39]},{"path":[4,21,2,28,4],"span":[362,2,10]},{"path":[4,21,2,28,5],"span":[362,11,17]},{"path":[4,21,2,28,1],"span":[362,18,33]},{"path":[4,21,2,28,3],"span":[362,36,38]},{"path":[4,21,2,29],"span":[363,2,37]},{"path":[4,21,2,29,4],"span":[363,2,10]},{"path":[4,21,2,29,5],"span":[363,11,17]},{"path":[4,21,2,29,1],"span":[363,18,31]},{"path":[4,21,2,29,3],"span":[363,34,36]},{"path":[4,21,2,30],"span":[364,2,50]},{"path":[4,21,2,30,4],"span":[364,2,10]},{"path":[4,21,2,30,5],"span":[364,11,17]},{"path":[4,21,2,30,1],"span":[364,18,44]},{"path":[4,21,2,30,3],"span":[364,47,49]},{"path":[4,21,2,31],"span":[365,2,50]},{"path":[4,21,2,31,4],"span":[365,2,10]},{"path":[4,21,2,31,5],"span":[365,11,17]},{"path":[4,21,2,31,1],"span":[365,18,44]},{"path":[4,21,2,31,3],"span":[365,47,49]},{"path":[4,21,2,32],"span":[366,2,51]},{"path":[4,21,2,32,4],"span":[366,2,10]},{"path":[4,21,2,32,5],"span":[366,11,17]},{"path":[4,21,2,32,1],"span":[366,18,45]},{"path":[4,21,2,32,3],"span":[366,48,50]},{"path":[4,21,2,33],"span":[367,2,30]},{"path":[4,21,2,33,4],"span":[367,2,10]},{"path":[4,21,2,33,5],"span":[367,11,17]},{"path":[4,21,2,33,1],"span":[367,18,24]},{"path":[4,21,2,33,3],"span":[367,27,29]},{"path":[4,21,2,34],"span":[368,2,37]},{"path":[4,21,2,34,4],"span":[368,2,10]},{"path":[4,21,2,34,5],"span":[368,11,17]},{"path":[4,21,2,34,1],"span":[368,18,31]},{"path":[4,21,2,34,3],"span":[368,34,36]},{"path":[4,21,2,35],"span":[369,2,40]},{"path":[4,21,2,35,4],"span":[369,2,10]},{"path":[4,21,2,35,5],"span":[369,11,17]},{"path":[4,21,2,35,1],"span":[369,18,34]},{"path":[4,21,2,35,3],"span":[369,37,39]},{"path":[4,21,2,36],"span":[370,2,49]},{"path":[4,21,2,36,4],"span":[370,2,10]},{"path":[4,21,2,36,5],"span":[370,11,17]},{"path":[4,21,2,36,1],"span":[370,18,43]},{"path":[4,21,2,36,3],"span":[370,46,48]},{"path":[4,21,2,37],"span":[371,2,49]},{"path":[4,21,2,37,4],"span":[371,2,10]},{"path":[4,21,2,37,5],"span":[371,11,17]},{"path":[4,21,2,37,1],"span":[371,18,43]},{"path":[4,21,2,37,3],"span":[371,46,48]},{"path":[4,21,2,38],"span":[372,2,41]},{"path":[4,21,2,38,4],"span":[372,2,10]},{"path":[4,21,2,38,5],"span":[372,11,17]},{"path":[4,21,2,38,1],"span":[372,18,35]},{"path":[4,21,2,38,3],"span":[372,38,40]},{"path":[4,21,2,39],"span":[373,2,45]},{"path":[4,21,2,39,4],"span":[373,2,10]},{"path":[4,21,2,39,5],"span":[373,11,17]},{"path":[4,21,2,39,1],"span":[373,18,39]},{"path":[4,21,2,39,3],"span":[373,42,44]},{"path":[4,21,2,40],"span":[374,2,42]},{"path":[4,21,2,40,4],"span":[374,2,10]},{"path":[4,21,2,40,5],"span":[374,11,17]},{"path":[4,21,2,40,1],"span":[374,18,36]},{"path":[4,21,2,40,3],"span":[374,39,41]},{"path":[4,21,2,41],"span":[375,2,46]},{"path":[4,21,2,41,4],"span":[375,2,10]},{"path":[4,21,2,41,5],"span":[375,11,17]},{"path":[4,21,2,41,1],"span":[375,18,40]},{"path":[4,21,2,41,3],"span":[375,43,45]},{"path":[4,21,2,42],"span":[376,2,41]},{"path":[4,21,2,42,4],"span":[376,2,10]},{"path":[4,21,2,42,6],"span":[376,11,22]},{"path":[4,21,2,42,1],"span":[376,23,35]},{"path":[4,21,2,42,3],"span":[376,38,40]},{"path":[4,21,2,43],"span":[377,2,34]},{"path":[4,21,2,43,4],"span":[377,2,10]},{"path":[4,21,2,43,5],"span":[377,11,17]},{"path":[4,21,2,43,1],"span":[377,18,28]},{"path":[4,21,2,43,3],"span":[377,31,33]},{"path":[4,21,2,44],"span":[378,2,36]},{"path":[4,21,2,44,4],"span":[378,2,10]},{"path":[4,21,2,44,5],"span":[378,11,17]},{"path":[4,21,2,44,1],"span":[378,18,30]},{"path":[4,21,2,44,3],"span":[378,33,35]},{"path":[4,21,2,45],"span":[379,2,40]},{"path":[4,21,2,45,4],"span":[379,2,10]},{"path":[4,21,2,45,5],"span":[379,11,17]},{"path":[4,21,2,45,1],"span":[379,18,34]},{"path":[4,21,2,45,3],"span":[379,37,39]},{"path":[4,21,2,46],"span":[380,2,66]},{"path":[4,21,2,46,4],"span":[380,2,10]},{"path":[4,21,2,46,5],"span":[380,11,15]},{"path":[4,21,2,46,1],"span":[380,16,60]},{"path":[4,21,2,46,3],"span":[380,63,65]},{"path":[4,21,2,47],"span":[381,2,60]},{"path":[4,21,2,47,4],"span":[381,2,10]},{"path":[4,21,2,47,5],"span":[381,11,15]},{"path":[4,21,2,47,1],"span":[381,16,54]},{"path":[4,21,2,47,3],"span":[381,57,59]},{"path":[4,21,2,48],"span":[382,2,55]},{"path":[4,21,2,48,4],"span":[382,2,10]},{"path":[4,21,2,48,5],"span":[382,11,15]},{"path":[4,21,2,48,1],"span":[382,16,49]},{"path":[4,21,2,48,3],"span":[382,52,54]},{"path":[4,21,2,49],"span":[383,2,64]},{"path":[4,21,2,49,4],"span":[383,2,10]},{"path":[4,21,2,49,5],"span":[383,11,17]},{"path":[4,21,2,49,1],"span":[383,18,58]},{"path":[4,21,2,49,3],"span":[383,61,63]},{"path":[4,22],"span":[387,0,403,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,22,1],"span":[387,8,28]},{"path":[4,22,2,0],"span":[389,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,22,2,0,5],"span":[389,2,8]},{"path":[4,22,2,0,1],"span":[389,9,11]},{"path":[4,22,2,0,3],"span":[389,14,15]},{"path":[4,22,2,1],"span":[392,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,22,2,1,4],"span":[392,2,10]},{"path":[4,22,2,1,5],"span":[392,11,17]},{"path":[4,22,2,1,1],"span":[392,18,22]},{"path":[4,22,2,1,3],"span":[392,25,26]},{"path":[4,22,2,2],"span":[394,2,54]},{"path":[4,22,2,2,4],"span":[394,2,10]},{"path":[4,22,2,2,6],"span":[394,11,36]},{"path":[4,22,2,2,1],"span":[394,37,49]},{"path":[4,22,2,2,3],"span":[394,52,53]},{"path":[4,22,2,3],"span":[397,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,22,2,3,4],"span":[397,2,10]},{"path":[4,22,2,3,5],"span":[397,11,17]},{"path":[4,22,2,3,1],"span":[397,18,28]},{"path":[4,22,2,3,3],"span":[397,31,32]},{"path":[4,22,2,4],"span":[399,2,31]},{"path":[4,22,2,4,4],"span":[399,2,10]},{"path":[4,22,2,4,5],"span":[399,11,17]},{"path":[4,22,2,4,1],"span":[399,18,26]},{"path":[4,22,2,4,3],"span":[399,29,30]},{"path":[4,22,2,5],"span":[401,2,43]},{"path":[4,22,2,5,4],"span":[401,2,10]},{"path":[4,22,2,5,5],"span":[401,11,17]},{"path":[4,22,2,5,1],"span":[401,18,38]},{"path":[4,22,2,5,3],"span":[401,41,42]},{"path":[4,23],"span":[406,0,409,1],"leadingComments":" Network Interface cards "},{"path":[4,23,1],"span":[406,8,25]},{"path":[4,23,2,0],"span":[407,2,42]},{"path":[4,23,2,0,6],"span":[407,2,27]},{"path":[4,23,2,0,1],"span":[407,28,37]},{"path":[4,23,2,0,3],"span":[407,40,41]},{"path":[4,23,2,1],"span":[408,2,42]},{"path":[4,23,2,1,4],"span":[408,2,10]},{"path":[4,23,2,1,6],"span":[408,11,27]},{"path":[4,23,2,1,1],"span":[408,28,37]},{"path":[4,23,2,1,3],"span":[408,40,41]},{"path":[4,24],"span":[411,0,434,1]},{"path":[4,24,1],"span":[411,8,24]},{"path":[4,24,2,0],"span":[412,2,18]},{"path":[4,24,2,0,5],"span":[412,2,8]},{"path":[4,24,2,0,1],"span":[412,9,13]},{"path":[4,24,2,0,3],"span":[412,16,17]},{"path":[4,24,2,1],"span":[413,2,18]},{"path":[4,24,2,1,5],"span":[413,2,8]},{"path":[4,24,2,1,1],"span":[413,9,13]},{"path":[4,24,2,1,3],"span":[413,16,17]},{"path":[4,24,2,2],"span":[414,2,22]},{"path":[4,24,2,2,5],"span":[414,2,8]},{"path":[4,24,2,2,1],"span":[414,9,17]},{"path":[4,24,2,2,3],"span":[414,20,21]},{"path":[4,24,2,3],"span":[416,2,25]},{"path":[4,24,2,3,4],"span":[416,2,10]},{"path":[4,24,2,3,5],"span":[416,11,17]},{"path":[4,24,2,3,1],"span":[416,18,20]},{"path":[4,24,2,3,3],"span":[416,23,24]},{"path":[4,24,2,4],"span":[418,2,26]},{"path":[4,24,2,4,4],"span":[418,2,10]},{"path":[4,24,2,4,5],"span":[418,11,17]},{"path":[4,24,2,4,1],"span":[418,18,21]},{"path":[4,24,2,4,3],"span":[418,24,25]},{"path":[4,24,2,5],"span":[420,2,33]},{"path":[4,24,2,5,4],"span":[420,2,10]},{"path":[4,24,2,5,5],"span":[420,11,15]},{"path":[4,24,2,5,1],"span":[420,16,28]},{"path":[4,24,2,5,3],"span":[420,31,32]},{"path":[4,24,2,6],"span":[421,2,37]},{"path":[4,24,2,6,4],"span":[421,2,10]},{"path":[4,24,2,6,5],"span":[421,11,17]},{"path":[4,24,2,6,1],"span":[421,18,32]},{"path":[4,24,2,6,3],"span":[421,35,36]},{"path":[4,24,2,7],"span":[423,2,31]},{"path":[4,24,2,7,4],"span":[423,2,10]},{"path":[4,24,2,7,6],"span":[423,11,23]},{"path":[4,24,2,7,1],"span":[423,24,26]},{"path":[4,24,2,7,3],"span":[423,29,30]},{"path":[4,24,2,8],"span":[425,2,33]},{"path":[4,24,2,8,4],"span":[425,2,10]},{"path":[4,24,2,8,5],"span":[425,11,17]},{"path":[4,24,2,8,1],"span":[425,18,28]},{"path":[4,24,2,8,3],"span":[425,31,32]},{"path":[4,24,2,9],"span":[426,2,35]},{"path":[4,24,2,9,4],"span":[426,2,10]},{"path":[4,24,2,9,5],"span":[426,11,17]},{"path":[4,24,2,9,1],"span":[426,18,29]},{"path":[4,24,2,9,3],"span":[426,32,34]},{"path":[4,24,2,10],"span":[428,2,34]},{"path":[4,24,2,10,4],"span":[428,2,10]},{"path":[4,24,2,10,5],"span":[428,11,17]},{"path":[4,24,2,10,1],"span":[428,18,28]},{"path":[4,24,2,10,3],"span":[428,31,33]},{"path":[4,24,2,11],"span":[429,2,37]},{"path":[4,24,2,11,4],"span":[429,2,10]},{"path":[4,24,2,11,5],"span":[429,11,17]},{"path":[4,24,2,11,1],"span":[429,18,31]},{"path":[4,24,2,11,3],"span":[429,34,36]},{"path":[4,24,2,12],"span":[430,2,54]},{"path":[4,24,2,12,4],"span":[430,2,10]},{"path":[4,24,2,12,5],"span":[430,11,17]},{"path":[4,24,2,12,1],"span":[430,18,48]},{"path":[4,24,2,12,3],"span":[430,51,53]},{"path":[4,24,2,13],"span":[432,2,36]},{"path":[4,24,2,13,4],"span":[432,2,10]},{"path":[4,24,2,13,5],"span":[432,11,17]},{"path":[4,24,2,13,1],"span":[432,18,30]},{"path":[4,24,2,13,3],"span":[432,33,35]},{"path":[4,24,2,14],"span":[433,2,37]},{"path":[4,24,2,14,4],"span":[433,2,10]},{"path":[4,24,2,14,5],"span":[433,11,17]},{"path":[4,24,2,14,1],"span":[433,18,31]},{"path":[4,24,2,14,3],"span":[433,34,36]},{"path":[4,25],"span":[437,0,440,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,25,1],"span":[437,8,20]},{"path":[4,25,2,0],"span":[438,2,16]},{"path":[4,25,2,0,5],"span":[438,2,8]},{"path":[4,25,2,0,1],"span":[438,9,11]},{"path":[4,25,2,0,3],"span":[438,14,15]},{"path":[4,25,2,1],"span":[439,2,20]},{"path":[4,25,2,1,5],"span":[439,2,8]},{"path":[4,25,2,1,1],"span":[439,9,15]},{"path":[4,25,2,1,3],"span":[439,18,19]},{"path":[4,26],"span":[443,0,484,1],"leadingComments":" Processor *"},{"path":[4,26,1],"span":[443,8,17]},{"path":[4,26,2,0],"span":[444,2,21]},{"path":[4,26,2,0,5],"span":[444,2,8]},{"path":[4,26,2,0,1],"span":[444,10,14]},{"path":[4,26,2,0,3],"span":[444,17,18]},{"path":[4,26,2,1],"span":[445,2,36],"trailingComments":" Linux-only\n"},{"path":[4,26,2,1,4],"span":[445,2,10]},{"path":[4,26,2,1,5],"span":[445,11,17]},{"path":[4,26,2,1,1],"span":[445,18,31]},{"path":[4,26,2,1,3],"span":[445,34,35]},{"path":[4,26,2,2],"span":[446,2,35],"trailingComments":" Windows-only\n"},{"path":[4,26,2,2,4],"span":[446,2,10]},{"path":[4,26,2,2,5],"span":[446,11,16]},{"path":[4,26,2,2,1],"span":[446,17,30]},{"path":[4,26,2,2,3],"span":[446,33,34]},{"path":[4,26,2,3],"span":[447,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,26,2,3,4],"span":[447,2,10]},{"path":[4,26,2,3,6],"span":[447,11,22]},{"path":[4,26,2,3,1],"span":[447,23,35]},{"path":[4,26,2,3,3],"span":[447,38,39]},{"path":[4,26,2,4],"span":[448,2,34],"trailingComments":" Windows-only\n"},{"path":[4,26,2,4,4],"span":[448,2,10]},{"path":[4,26,2,4,5],"span":[448,11,16]},{"path":[4,26,2,4,1],"span":[448,17,29]},{"path":[4,26,2,4,3],"span":[448,32,33]},{"path":[4,26,2,5],"span":[449,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,26,2,5,4],"span":[449,2,10]},{"path":[4,26,2,5,5],"span":[449,11,17]},{"path":[4,26,2,5,1],"span":[449,18,27]},{"path":[4,26,2,5,3],"span":[449,30,31]},{"path":[4,26,2,6],"span":[450,2,33],"trailingComments":" Linux-only\n"},{"path":[4,26,2,6,4],"span":[450,2,10]},{"path":[4,26,2,6,5],"span":[450,11,17]},{"path":[4,26,2,6,1],"span":[450,18,28]},{"path":[4,26,2,6,3],"span":[450,31,32]},{"path":[4,26,2,7],"span":[451,2,30],"trailingComments":" Windows-only\n"},{"path":[4,26,2,7,4],"span":[451,2,10]},{"path":[4,26,2,7,5],"span":[451,11,17]},{"path":[4,26,2,7,1],"span":[451,18,25]},{"path":[4,26,2,7,3],"span":[451,28,29]},{"path":[4,26,2,8],"span":[452,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,26,2,8,4],"span":[452,2,10]},{"path":[4,26,2,8,5],"span":[452,11,16]},{"path":[4,26,2,8,1],"span":[452,17,36]},{"path":[4,26,2,8,3],"span":[452,39,40]},{"path":[4,26,2,9],"span":[453,2,33],"trailingComments":" Windows-only\n"},{"path":[4,26,2,9,4],"span":[453,2,10]},{"path":[4,26,2,9,5],"span":[453,11,16]},{"path":[4,26,2,9,1],"span":[453,17,27]},{"path":[4,26,2,9,3],"span":[453,30,32]},{"path":[4,26,2,10],"span":[454,2,33],"trailingComments":" Windows-only\n"},{"path":[4,26,2,10,4],"span":[454,2,10]},{"path":[4,26,2,10,5],"span":[454,11,17]},{"path":[4,26,2,10,1],"span":[454,18,27]},{"path":[4,26,2,10,3],"span":[454,30,32]},{"path":[4,26,2,11],"span":[455,2,41],"trailingComments":" Windows-only\n"},{"path":[4,26,2,11,4],"span":[455,2,10]},{"path":[4,26,2,11,5],"span":[455,11,16]},{"path":[4,26,2,11,1],"span":[455,17,35]},{"path":[4,26,2,11,3],"span":[455,38,40]},{"path":[4,26,2,12],"span":[456,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,26,2,12,4],"span":[456,2,10]},{"path":[4,26,2,12,6],"span":[456,11,22]},{"path":[4,26,2,12,1],"span":[456,23,29]},{"path":[4,26,2,12,3],"span":[456,32,34]},{"path":[4,26,2,13],"span":[457,2,41],"trailingComments":" Linux-only\n"},{"path":[4,26,2,13,4],"span":[457,2,10]},{"path":[4,26,2,13,5],"span":[457,11,17]},{"path":[4,26,2,13,1],"span":[457,18,35]},{"path":[4,26,2,13,3],"span":[457,38,40]},{"path":[4,26,2,14],"span":[458,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,26,2,14,4],"span":[458,2,10]},{"path":[4,26,2,14,5],"span":[458,11,16]},{"path":[4,26,2,14,1],"span":[458,17,34]},{"path":[4,26,2,14,3],"span":[458,37,39]},{"path":[4,26,2,15],"span":[459,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,26,2,15,4],"span":[459,2,10]},{"path":[4,26,2,15,5],"span":[459,11,16]},{"path":[4,26,2,15,1],"span":[459,17,34]},{"path":[4,26,2,15,3],"span":[459,37,39]},{"path":[4,26,2,16],"span":[460,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,26,2,16,4],"span":[460,2,10]},{"path":[4,26,2,16,5],"span":[460,11,16]},{"path":[4,26,2,16,1],"span":[460,17,33]},{"path":[4,26,2,16,3],"span":[460,36,38]},{"path":[4,26,2,17],"span":[461,2,41],"trailingComments":" Windows-only\n"},{"path":[4,26,2,17,4],"span":[461,2,10]},{"path":[4,26,2,17,5],"span":[461,11,16]},{"path":[4,26,2,17,1],"span":[461,17,35]},{"path":[4,26,2,17,3],"span":[461,38,40]},{"path":[4,26,2,18],"span":[462,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,26,2,18,4],"span":[462,2,10]},{"path":[4,26,2,18,5],"span":[462,11,16]},{"path":[4,26,2,18,1],"span":[462,17,33]},{"path":[4,26,2,18,3],"span":[462,36,38]},{"path":[4,26,2,19],"span":[463,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,26,2,19,4],"span":[463,2,10]},{"path":[4,26,2,19,5],"span":[463,11,16]},{"path":[4,26,2,19,1],"span":[463,17,22]},{"path":[4,26,2,19,3],"span":[463,25,27]},{"path":[4,26,2,20],"span":[464,2,44]},{"path":[4,26,2,20,4],"span":[464,2,10]},{"path":[4,26,2,20,5],"span":[464,11,16]},{"path":[4,26,2,20,1],"span":[464,17,36]},{"path":[4,26,2,20,3],"span":[464,39,41]},{"path":[4,26,2,21],"span":[465,2,38]},{"path":[4,26,2,21,4],"span":[465,2,10]},{"path":[4,26,2,21,5],"span":[465,11,17]},{"path":[4,26,2,21,1],"span":[465,18,30]},{"path":[4,26,2,21,3],"span":[465,33,35]},{"path":[4,26,2,22],"span":[466,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,26,2,22,4],"span":[466,2,10]},{"path":[4,26,2,22,5],"span":[466,11,16]},{"path":[4,26,2,22,1],"span":[466,17,36]},{"path":[4,26,2,22,3],"span":[466,39,41]},{"path":[4,26,2,23],"span":[467,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,26,2,23,4],"span":[467,2,10]},{"path":[4,26,2,23,5],"span":[467,11,16]},{"path":[4,26,2,23,1],"span":[467,17,36]},{"path":[4,26,2,23,3],"span":[467,39,41]},{"path":[4,26,2,24],"span":[468,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,26,2,24,4],"span":[468,2,10]},{"path":[4,26,2,24,5],"span":[468,11,16]},{"path":[4,26,2,24,1],"span":[468,17,29]},{"path":[4,26,2,24,3],"span":[468,32,34]},{"path":[4,26,2,25],"span":[469,2,32],"trailingComments":" Linux-only\n"},{"path":[4,26,2,25,4],"span":[469,2,10]},{"path":[4,26,2,25,5],"span":[469,11,17]},{"path":[4,26,2,25,1],"span":[469,18,26]},{"path":[4,26,2,25,3],"span":[469,29,31]},{"path":[4,26,2,26],"span":[470,2,45]},{"path":[4,26,2,26,4],"span":[470,2,10]},{"path":[4,26,2,26,5],"span":[470,11,16]},{"path":[4,26,2,26,1],"span":[470,17,37]},{"path":[4,26,2,26,3],"span":[470,40,42]},{"path":[4,26,2,27],"span":[471,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,26,2,27,4],"span":[471,2,10]},{"path":[4,26,2,27,5],"span":[471,11,17]},{"path":[4,26,2,27,1],"span":[471,18,30]},{"path":[4,26,2,27,3],"span":[471,33,35]},{"path":[4,26,2,28],"span":[472,2,43],"trailingComments":" Windows-only\n"},{"path":[4,26,2,28,4],"span":[472,2,10]},{"path":[4,26,2,28,6],"span":[472,11,22]},{"path":[4,26,2,28,1],"span":[472,23,37]},{"path":[4,26,2,28,3],"span":[472,40,42]},{"path":[4,26,2,29],"span":[473,2,31],"trailingComments":" Windows-only\n"},{"path":[4,26,2,29,4],"span":[473,2,10]},{"path":[4,26,2,29,5],"span":[473,11,16]},{"path":[4,26,2,29,1],"span":[473,17,25]},{"path":[4,26,2,29,3],"span":[473,28,30]},{"path":[4,26,2,30],"span":[474,2,42],"trailingComments":" Windows-only\n"},{"path":[4,26,2,30,4],"span":[474,2,10]},{"path":[4,26,2,30,5],"span":[474,11,17]},{"path":[4,26,2,30,1],"span":[474,18,36]},{"path":[4,26,2,30,3],"span":[474,39,41]},{"path":[4,26,2,31],"span":[475,2,31],"trailingComments":" Linux-only\n"},{"path":[4,26,2,31,4],"span":[475,2,10]},{"path":[4,26,2,31,5],"span":[475,11,16]},{"path":[4,26,2,31,1],"span":[475,18,25]},{"path":[4,26,2,31,3],"span":[475,28,30]},{"path":[4,26,2,32],"span":[476,2,35],"trailingComments":" Windows-only\n"},{"path":[4,26,2,32,4],"span":[476,2,10]},{"path":[4,26,2,32,6],"span":[476,11,22]},{"path":[4,26,2,32,1],"span":[476,23,29]},{"path":[4,26,2,32,3],"span":[476,32,34]},{"path":[4,26,2,33],"span":[477,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,26,2,33,4],"span":[477,2,10]},{"path":[4,26,2,33,5],"span":[477,11,16]},{"path":[4,26,2,33,1],"span":[477,17,25]},{"path":[4,26,2,33,3],"span":[477,28,30]},{"path":[4,26,2,34],"span":[478,2,54],"trailingComments":" Linux-only\n"},{"path":[4,26,2,34,4],"span":[478,2,10]},{"path":[4,26,2,34,5],"span":[478,11,16]},{"path":[4,26,2,34,1],"span":[478,17,48]},{"path":[4,26,2,34,3],"span":[478,51,53]},{"path":[4,26,2,35],"span":[479,2,33],"trailingComments":" Windows-only\n"},{"path":[4,26,2,35,4],"span":[479,2,10]},{"path":[4,26,2,35,5],"span":[479,11,17]},{"path":[4,26,2,35,1],"span":[479,18,27]},{"path":[4,26,2,35,3],"span":[479,30,32]},{"path":[4,26,2,36],"span":[480,2,43],"trailingComments":" Windows-only\n"},{"path":[4,26,2,36,4],"span":[480,2,10]},{"path":[4,26,2,36,6],"span":[480,11,22]},{"path":[4,26,2,36,1],"span":[480,23,37]},{"path":[4,26,2,36,3],"span":[480,40,42]},{"path":[4,26,2,37],"span":[481,2,31],"trailingComments":" Windows-only\n"},{"path":[4,26,2,37,4],"span":[481,2,10]},{"path":[4,26,2,37,5],"span":[481,11,17]},{"path":[4,26,2,37,1],"span":[481,18,25]},{"path":[4,26,2,37,3],"span":[481,28,30]},{"path":[4,26,2,38],"span":[482,2,38],"trailingComments":" Linux-only\n"},{"path":[4,26,2,38,4],"span":[482,2,10]},{"path":[4,26,2,38,5],"span":[482,11,17]},{"path":[4,26,2,38,1],"span":[482,18,32]},{"path":[4,26,2,38,3],"span":[482,35,37]},{"path":[4,26,2,39],"span":[483,2,49],"trailingComments":" Windows-only\n"},{"path":[4,26,2,39,4],"span":[483,2,10]},{"path":[4,26,2,39,6],"span":[483,11,22]},{"path":[4,26,2,39,1],"span":[483,23,43]},{"path":[4,26,2,39,3],"span":[483,46,48]},{"path":[4,27],"span":[487,0,497,1],"leadingComments":" Chassis *"},{"path":[4,27,1],"span":[487,8,15]},{"path":[4,27,2,0],"span":[489,2,25]},{"path":[4,27,2,0,6],"span":[489,2,13]},{"path":[4,27,2,0,1],"span":[489,16,20]},{"path":[4,27,2,0,3],"span":[489,23,24]},{"path":[4,27,2,1],"span":[490,2,33]},{"path":[4,27,2,1,4],"span":[490,2,10]},{"path":[4,27,2,1,5],"span":[490,11,15]},{"path":[4,27,2,1,1],"span":[490,16,28]},{"path":[4,27,2,1,3],"span":[490,31,32]},{"path":[4,27,2,2],"span":[491,2,41]},{"path":[4,27,2,2,4],"span":[491,2,10]},{"path":[4,27,2,2,5],"span":[491,11,17]},{"path":[4,27,2,2,1],"span":[491,24,36]},{"path":[4,27,2,2,3],"span":[491,39,40]},{"path":[4,27,2,3],"span":[492,2,43]},{"path":[4,27,2,3,4],"span":[492,2,10]},{"path":[4,27,2,3,6],"span":[492,11,22]},{"path":[4,27,2,3,1],"span":[492,23,38]},{"path":[4,27,2,3,3],"span":[492,41,42]},{"path":[4,27,2,4],"span":[493,2,42]},{"path":[4,27,2,4,4],"span":[493,2,10]},{"path":[4,27,2,4,5],"span":[493,11,17]},{"path":[4,27,2,4,1],"span":[493,24,37]},{"path":[4,27,2,4,3],"span":[493,40,41]},{"path":[4,27,2,5],"span":[494,2,38]},{"path":[4,27,2,5,4],"span":[494,2,10]},{"path":[4,27,2,5,5],"span":[494,11,17]},{"path":[4,27,2,5,1],"span":[494,24,33]},{"path":[4,27,2,5,3],"span":[494,36,37]},{"path":[4,27,2,6],"span":[495,2,36]},{"path":[4,27,2,6,4],"span":[495,2,10]},{"path":[4,27,2,6,5],"span":[495,11,17]},{"path":[4,27,2,6,1],"span":[495,24,31]},{"path":[4,27,2,6,3],"span":[495,34,35]},{"path":[4,27,2,7],"span":[496,2,40]},{"path":[4,27,2,7,4],"span":[496,2,10]},{"path":[4,27,2,7,6],"span":[496,11,22]},{"path":[4,27,2,7,1],"span":[496,23,35]},{"path":[4,27,2,7,3],"span":[496,38,39]},{"path":[4,28],"span":[502,0,514,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,28,1],"span":[502,8,17]},{"path":[4,28,2,0],"span":[503,2,30]},{"path":[4,28,2,0,4],"span":[503,2,10]},{"path":[4,28,2,0,5],"span":[503,11,17]},{"path":[4,28,2,0,1],"span":[503,18,25]},{"path":[4,28,2,0,3],"span":[503,28,29]},{"path":[4,28,2,1],"span":[504,2,31]},{"path":[4,28,2,1,4],"span":[504,2,10]},{"path":[4,28,2,1,5],"span":[504,11,15]},{"path":[4,28,2,1,1],"span":[504,16,26]},{"path":[4,28,2,1,3],"span":[504,29,30]},{"path":[4,28,2,2],"span":[505,2,34]},{"path":[4,28,2,2,4],"span":[505,2,10]},{"path":[4,28,2,2,5],"span":[505,11,17]},{"path":[4,28,2,2,1],"span":[505,18,29]},{"path":[4,28,2,2,3],"span":[505,32,33]},{"path":[4,28,2,3],"span":[506,2,32]},{"path":[4,28,2,3,4],"span":[506,2,10]},{"path":[4,28,2,3,5],"span":[506,11,17]},{"path":[4,28,2,3,1],"span":[506,18,27]},{"path":[4,28,2,3,3],"span":[506,30,31]},{"path":[4,28,2,4],"span":[507,2,38]},{"path":[4,28,2,4,4],"span":[507,2,10]},{"path":[4,28,2,4,6],"span":[507,11,22]},{"path":[4,28,2,4,1],"span":[507,23,33]},{"path":[4,28,2,4,3],"span":[507,36,37]},{"path":[4,28,2,5],"span":[508,2,34]},{"path":[4,28,2,5,4],"span":[508,2,10]},{"path":[4,28,2,5,5],"span":[508,11,17]},{"path":[4,28,2,5,1],"span":[508,18,29]},{"path":[4,28,2,5,3],"span":[508,32,33]},{"path":[4,28,2,6],"span":[509,2,32]},{"path":[4,28,2,6,4],"span":[509,2,10]},{"path":[4,28,2,6,5],"span":[509,11,16]},{"path":[4,28,2,6,1],"span":[509,17,27]},{"path":[4,28,2,6,3],"span":[509,30,31]},{"path":[4,28,2,7],"span":[510,2,26]},{"path":[4,28,2,7,4],"span":[510,2,10]},{"path":[4,28,2,7,5],"span":[510,11,16]},{"path":[4,28,2,7,1],"span":[510,17,21]},{"path":[4,28,2,7,3],"span":[510,24,25]},{"path":[4,28,2,8],"span":[511,2,34]},{"path":[4,28,2,8,4],"span":[511,2,10]},{"path":[4,28,2,8,5],"span":[511,11,17]},{"path":[4,28,2,8,1],"span":[511,18,29]},{"path":[4,28,2,8,3],"span":[511,32,33]},{"path":[4,28,2,9],"span":[512,2,37]},{"path":[4,28,2,9,4],"span":[512,2,10]},{"path":[4,28,2,9,5],"span":[512,11,17]},{"path":[4,28,2,9,1],"span":[512,18,31]},{"path":[4,28,2,9,3],"span":[512,34,36]},{"path":[4,28,2,10],"span":[513,2,34]},{"path":[4,28,2,10,4],"span":[513,2,10]},{"path":[4,28,2,10,5],"span":[513,11,17]},{"path":[4,28,2,10,1],"span":[513,18,28]},{"path":[4,28,2,10,3],"span":[513,31,33]},{"path":[4,29],"span":[519,0,548,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.PciCards\n"},{"path":[4,29,1],"span":[519,8,20]},{"path":[4,29,2,0],"span":[520,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,29,2,0,4],"span":[520,2,10]},{"path":[4,29,2,0,5],"span":[520,16,22]},{"path":[4,29,2,0,1],"span":[520,24,28]},{"path":[4,29,2,0,3],"span":[520,31,32]},{"path":[4,29,2,1],"span":[521,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,1,4],"span":[521,2,10]},{"path":[4,29,2,1,5],"span":[521,16,21]},{"path":[4,29,2,1,1],"span":[521,24,42]},{"path":[4,29,2,1,3],"span":[521,45,46]},{"path":[4,29,2,2],"span":[522,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,2,4],"span":[522,2,10]},{"path":[4,29,2,2,5],"span":[522,16,21]},{"path":[4,29,2,2,1],"span":[522,24,46]},{"path":[4,29,2,2,3],"span":[522,49,50]},{"path":[4,29,2,3],"span":[523,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,3,4],"span":[523,2,10]},{"path":[4,29,2,3,5],"span":[523,16,21]},{"path":[4,29,2,3,1],"span":[523,24,53]},{"path":[4,29,2,3,3],"span":[523,56,57]},{"path":[4,29,2,4],"span":[524,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,4,4],"span":[524,2,10]},{"path":[4,29,2,4,5],"span":[524,16,21]},{"path":[4,29,2,4,1],"span":[524,24,48]},{"path":[4,29,2,4,3],"span":[524,51,52]},{"path":[4,29,2,5],"span":[525,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,5,4],"span":[525,2,10]},{"path":[4,29,2,5,5],"span":[525,16,21]},{"path":[4,29,2,5,1],"span":[525,24,44]},{"path":[4,29,2,5,3],"span":[525,47,48]},{"path":[4,29,2,6],"span":[526,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,6,4],"span":[526,2,10]},{"path":[4,29,2,6,6],"span":[526,16,27]},{"path":[4,29,2,6,1],"span":[526,32,49]},{"path":[4,29,2,6,3],"span":[526,52,53]},{"path":[4,29,2,7],"span":[527,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,7,4],"span":[527,2,10]},{"path":[4,29,2,7,5],"span":[527,16,21]},{"path":[4,29,2,7,1],"span":[527,24,51]},{"path":[4,29,2,7,3],"span":[527,54,55]},{"path":[4,29,2,8],"span":[528,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,29,2,8,4],"span":[528,2,10]},{"path":[4,29,2,8,5],"span":[528,16,22]},{"path":[4,29,2,8,1],"span":[528,24,33]},{"path":[4,29,2,8,3],"span":[528,36,37]},{"path":[4,29,2,9],"span":[529,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,9,4],"span":[529,2,10]},{"path":[4,29,2,9,5],"span":[529,16,21]},{"path":[4,29,2,9,1],"span":[529,24,44]},{"path":[4,29,2,9,3],"span":[529,47,49]},{"path":[4,29,2,10],"span":[530,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,10,4],"span":[530,2,10]},{"path":[4,29,2,10,5],"span":[530,16,22]},{"path":[4,29,2,10,1],"span":[530,24,38]},{"path":[4,29,2,10,3],"span":[530,41,43]},{"path":[4,29,2,11],"span":[531,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,11,4],"span":[531,2,10]},{"path":[4,29,2,11,5],"span":[531,16,22]},{"path":[4,29,2,11,1],"span":[531,24,36]},{"path":[4,29,2,11,3],"span":[531,39,41]},{"path":[4,29,2,12],"span":[532,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,12,4],"span":[532,2,10]},{"path":[4,29,2,12,5],"span":[532,16,22]},{"path":[4,29,2,12,1],"span":[532,24,35]},{"path":[4,29,2,12,3],"span":[532,38,40]},{"path":[4,29,2,13],"span":[533,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,13,4],"span":[533,2,10]},{"path":[4,29,2,13,5],"span":[533,16,22]},{"path":[4,29,2,13,1],"span":[533,24,49]},{"path":[4,29,2,13,3],"span":[533,52,54]},{"path":[4,29,2,14],"span":[534,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,14,4],"span":[534,2,10]},{"path":[4,29,2,14,5],"span":[534,16,20]},{"path":[4,29,2,14,1],"span":[534,24,37]},{"path":[4,29,2,14,3],"span":[534,40,42]},{"path":[4,29,2,15],"span":[535,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,29,2,15,4],"span":[535,2,10]},{"path":[4,29,2,15,5],"span":[535,16,22]},{"path":[4,29,2,15,1],"span":[535,24,36]},{"path":[4,29,2,15,3],"span":[535,39,41]},{"path":[4,29,2,16],"span":[536,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,16,4],"span":[536,2,10]},{"path":[4,29,2,16,5],"span":[536,16,21]},{"path":[4,29,2,16,1],"span":[536,24,40]},{"path":[4,29,2,16,3],"span":[536,43,45]},{"path":[4,29,2,17],"span":[537,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,17,4],"span":[537,2,10]},{"path":[4,29,2,17,5],"span":[537,16,21]},{"path":[4,29,2,17,1],"span":[537,24,30]},{"path":[4,29,2,17,3],"span":[537,33,35]},{"path":[4,29,2,18],"span":[538,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,18,4],"span":[538,2,10]},{"path":[4,29,2,18,6],"span":[538,16,27]},{"path":[4,29,2,18,1],"span":[538,32,43]},{"path":[4,29,2,18,3],"span":[538,46,48]},{"path":[4,29,2,19],"span":[539,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,19,4],"span":[539,2,10]},{"path":[4,29,2,19,5],"span":[539,16,21]},{"path":[4,29,2,19,1],"span":[539,24,40]},{"path":[4,29,2,19,3],"span":[539,43,45]},{"path":[4,29,2,20],"span":[540,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,29,2,20,4],"span":[540,2,10]},{"path":[4,29,2,20,5],"span":[540,16,22]},{"path":[4,29,2,20,1],"span":[540,24,32]},{"path":[4,29,2,20,3],"span":[540,35,37]},{"path":[4,29,2,21],"span":[541,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,21,4],"span":[541,2,10]},{"path":[4,29,2,21,5],"span":[541,16,22]},{"path":[4,29,2,21,1],"span":[541,24,37]},{"path":[4,29,2,21,3],"span":[541,40,42]},{"path":[4,29,2,22],"span":[542,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,22,4],"span":[542,2,10]},{"path":[4,29,2,22,6],"span":[542,16,27]},{"path":[4,29,2,22,1],"span":[542,32,37]},{"path":[4,29,2,22,3],"span":[542,40,42]},{"path":[4,29,2,23],"span":[543,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,29,2,23,4],"span":[543,2,10]},{"path":[4,29,2,23,5],"span":[543,16,22]},{"path":[4,29,2,23,1],"span":[543,24,46]},{"path":[4,29,2,23,3],"span":[543,49,51]},{"path":[4,29,2,24],"span":[544,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,29,2,24,4],"span":[544,2,10]},{"path":[4,29,2,24,5],"span":[544,16,22]},{"path":[4,29,2,24,1],"span":[544,24,38]},{"path":[4,29,2,24,3],"span":[544,41,43]},{"path":[4,29,2,25],"span":[545,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,25,4],"span":[545,2,10]},{"path":[4,29,2,25,6],"span":[545,16,27]},{"path":[4,29,2,25,1],"span":[545,32,50]},{"path":[4,29,2,25,3],"span":[545,53,55]},{"path":[4,29,2,26],"span":[546,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,26,4],"span":[546,2,10]},{"path":[4,29,2,26,5],"span":[546,16,22]},{"path":[4,29,2,26,1],"span":[546,24,34]},{"path":[4,29,2,26,3],"span":[546,37,39]},{"path":[4,29,2,27],"span":[547,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,29,2,27,4],"span":[547,2,10]},{"path":[4,29,2,27,5],"span":[547,16,22]},{"path":[4,29,2,27,1],"span":[547,24,39]},{"path":[4,29,2,27,3],"span":[547,42,44]},{"path":[4,30],"span":[553,0,575,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,30,1],"span":[553,8,20]},{"path":[4,30,2,0],"span":[554,2,36],"trailingComments":" Windows: \"HL-DT-ST DVD+-RW GHB0N\", Linux: \"VMware SATA CD00\", Mac: \"NECVMWar VMware SATA CD01\"\tWindows, Linux, Mac\n"},{"path":[4,30,2,0,4],"span":[554,2,10]},{"path":[4,30,2,0,5],"span":[554,16,22]},{"path":[4,30,2,0,1],"span":[554,24,28]},{"path":[4,30,2,0,3],"span":[554,34,35]},{"path":[4,30,2,1],"span":[555,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,30,2,1,4],"span":[555,2,10]},{"path":[4,30,2,1,5],"span":[555,16,22]},{"path":[4,30,2,1,1],"span":[555,24,30]},{"path":[4,30,2,1,3],"span":[555,34,35]},{"path":[4,30,2,2],"span":[556,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,30,2,2,4],"span":[556,2,10]},{"path":[4,30,2,2,5],"span":[556,16,22]},{"path":[4,30,2,2,1],"span":[556,24,27]},{"path":[4,30,2,2,3],"span":[556,34,35]},{"path":[4,30,2,3],"span":[557,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,30,2,3,4],"span":[557,2,10]},{"path":[4,30,2,3,6],"span":[557,16,27]},{"path":[4,30,2,3,1],"span":[557,32,44]},{"path":[4,30,2,3,3],"span":[557,50,51]},{"path":[4,30,2,4],"span":[558,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,30,2,4,4],"span":[558,2,10]},{"path":[4,30,2,4,5],"span":[558,16,22]},{"path":[4,30,2,4,1],"span":[558,24,34]},{"path":[4,30,2,4,3],"span":[558,42,43]},{"path":[4,30,2,5],"span":[559,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,30,2,5,4],"span":[559,2,10]},{"path":[4,30,2,5,5],"span":[559,16,22]},{"path":[4,30,2,5,1],"span":[559,24,36]},{"path":[4,30,2,5,3],"span":[559,42,43]},{"path":[4,30,2,6],"span":[560,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,30,2,6,4],"span":[560,2,10]},{"path":[4,30,2,6,5],"span":[560,16,22]},{"path":[4,30,2,6,1],"span":[560,24,32]},{"path":[4,30,2,6,3],"span":[560,42,43]},{"path":[4,30,2,7],"span":[561,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,30,2,7,4],"span":[561,2,10]},{"path":[4,30,2,7,5],"span":[561,16,22]},{"path":[4,30,2,7,1],"span":[561,24,33]},{"path":[4,30,2,7,3],"span":[561,42,43]},{"path":[4,30,2,8],"span":[562,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,30,2,8,4],"span":[562,2,10]},{"path":[4,30,2,8,5],"span":[562,16,22]},{"path":[4,30,2,8,1],"span":[562,24,32]},{"path":[4,30,2,8,3],"span":[562,42,43]},{"path":[4,30,2,9],"span":[563,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,30,2,9,4],"span":[563,2,10]},{"path":[4,30,2,9,5],"span":[563,16,22]},{"path":[4,30,2,9,1],"span":[563,24,34]},{"path":[4,30,2,9,3],"span":[563,42,44]},{"path":[4,30,2,10],"span":[564,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,30,2,10,4],"span":[564,2,10]},{"path":[4,30,2,10,5],"span":[564,16,22]},{"path":[4,30,2,10,1],"span":[564,24,40]},{"path":[4,30,2,10,3],"span":[564,50,52]},{"path":[4,30,2,11],"span":[565,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,30,2,11,4],"span":[565,2,10]},{"path":[4,30,2,11,5],"span":[565,16,22]},{"path":[4,30,2,11,1],"span":[565,24,34]},{"path":[4,30,2,11,3],"span":[565,42,44]},{"path":[4,30,2,12],"span":[566,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,30,2,12,4],"span":[566,2,10]},{"path":[4,30,2,12,5],"span":[566,16,22]},{"path":[4,30,2,12,1],"span":[566,24,54]},{"path":[4,30,2,12,3],"span":[566,58,60]},{"path":[4,30,2,13],"span":[567,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,30,2,13,4],"span":[567,2,10]},{"path":[4,30,2,13,5],"span":[567,16,22]},{"path":[4,30,2,13,1],"span":[567,24,36]},{"path":[4,30,2,13,3],"span":[567,42,44]},{"path":[4,30,2,14],"span":[568,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,30,2,14,4],"span":[568,2,10]},{"path":[4,30,2,14,5],"span":[568,16,22]},{"path":[4,30,2,14,1],"span":[568,24,35]},{"path":[4,30,2,14,3],"span":[568,42,44]},{"path":[4,30,2,15],"span":[569,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,30,2,15,4],"span":[569,2,10]},{"path":[4,30,2,15,5],"span":[569,16,22]},{"path":[4,30,2,15,1],"span":[569,24,40]},{"path":[4,30,2,15,3],"span":[569,50,52]},{"path":[4,30,2,16],"span":[570,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,30,2,16,4],"span":[570,2,10]},{"path":[4,30,2,16,5],"span":[570,16,21]},{"path":[4,30,2,16,1],"span":[570,24,32]},{"path":[4,30,2,16,3],"span":[570,42,44]},{"path":[4,30,2,17],"span":[571,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,30,2,17,4],"span":[571,2,10]},{"path":[4,30,2,17,5],"span":[571,16,21]},{"path":[4,30,2,17,1],"span":[571,24,41]},{"path":[4,30,2,17,3],"span":[571,50,52]},{"path":[4,30,2,18],"span":[572,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,30,2,18,4],"span":[572,2,10]},{"path":[4,30,2,18,5],"span":[572,16,21]},{"path":[4,30,2,18,1],"span":[572,24,33]},{"path":[4,30,2,18,3],"span":[572,42,44]},{"path":[4,30,2,19],"span":[573,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,30,2,19,4],"span":[573,2,10]},{"path":[4,30,2,19,5],"span":[573,16,21]},{"path":[4,30,2,19,1],"span":[573,24,38]},{"path":[4,30,2,19,3],"span":[573,42,44]},{"path":[4,30,2,20],"span":[574,2,52],"trailingComments":" \tMac\n"},{"path":[4,30,2,20,4],"span":[574,2,10]},{"path":[4,30,2,20,5],"span":[574,16,22]},{"path":[4,30,2,20,1],"span":[574,24,46]},{"path":[4,30,2,20,3],"span":[574,49,51]},{"path":[4,31],"span":[580,0,593,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,31,1],"span":[580,8,19]},{"path":[4,31,2,0],"span":[581,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,31,2,0,5],"span":[581,2,8]},{"path":[4,31,2,0,1],"span":[581,9,13]},{"path":[4,31,2,0,3],"span":[581,16,17]},{"path":[4,31,2,1],"span":[582,2,43],"trailingComments":" Windows\n"},{"path":[4,31,2,1,4],"span":[582,2,10]},{"path":[4,31,2,1,5],"span":[582,11,17]},{"path":[4,31,2,1,1],"span":[582,24,38]},{"path":[4,31,2,1,3],"span":[582,41,42]},{"path":[4,31,2,2],"span":[583,2,37],"trailingComments":" Windows\n"},{"path":[4,31,2,2,4],"span":[583,2,10]},{"path":[4,31,2,2,5],"span":[583,11,15]},{"path":[4,31,2,2,1],"span":[583,16,32]},{"path":[4,31,2,2,3],"span":[583,35,36]},{"path":[4,31,2,3],"span":[584,2,34],"trailingComments":" Windows\n"},{"path":[4,31,2,3,4],"span":[584,2,10]},{"path":[4,31,2,3,5],"span":[584,11,15]},{"path":[4,31,2,3,1],"span":[584,16,29]},{"path":[4,31,2,3,3],"span":[584,32,33]},{"path":[4,31,2,4],"span":[585,2,37],"trailingComments":" Linux\n"},{"path":[4,31,2,4,4],"span":[585,2,10]},{"path":[4,31,2,4,5],"span":[585,11,17]},{"path":[4,31,2,4,1],"span":[585,24,32]},{"path":[4,31,2,4,3],"span":[585,35,36]},{"path":[4,31,2,5],"span":[586,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,31,2,5,4],"span":[586,2,10]},{"path":[4,31,2,5,5],"span":[586,11,17]},{"path":[4,31,2,5,1],"span":[586,24,36]},{"path":[4,31,2,5,3],"span":[586,39,40]},{"path":[4,31,2,6],"span":[587,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,31,2,6,4],"span":[587,2,10]},{"path":[4,31,2,6,5],"span":[587,11,17]},{"path":[4,31,2,6,1],"span":[587,24,37]},{"path":[4,31,2,6,3],"span":[587,40,41]},{"path":[4,31,2,7],"span":[588,2,32],"trailingComments":" Windows\n"},{"path":[4,31,2,7,4],"span":[588,2,10]},{"path":[4,31,2,7,5],"span":[588,11,17]},{"path":[4,31,2,7,1],"span":[588,24,27]},{"path":[4,31,2,7,3],"span":[588,30,31]},{"path":[4,31,2,8],"span":[589,2,33],"trailingComments":" Linux\n"},{"path":[4,31,2,8,4],"span":[589,2,10]},{"path":[4,31,2,8,5],"span":[589,11,17]},{"path":[4,31,2,8,1],"span":[589,24,28]},{"path":[4,31,2,8,3],"span":[589,31,32]},{"path":[4,31,2,9],"span":[590,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,31,2,9,4],"span":[590,2,10]},{"path":[4,31,2,9,5],"span":[590,11,17]},{"path":[4,31,2,9,1],"span":[590,24,31]},{"path":[4,31,2,9,3],"span":[590,34,36]},{"path":[4,31,2,10],"span":[592,2,41]},{"path":[4,31,2,10,4],"span":[592,2,10]},{"path":[4,31,2,10,6],"span":[592,11,28]},{"path":[4,31,2,10,1],"span":[592,29,35]},{"path":[4,31,2,10,3],"span":[592,38,40]},{"path":[4,32],"span":[598,0,603,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,32,1],"span":[598,8,25]},{"path":[4,32,2,0],"span":[599,2,40]},{"path":[4,32,2,0,4],"span":[599,2,10]},{"path":[4,32,2,0,5],"span":[599,11,17]},{"path":[4,32,2,0,1],"span":[599,24,35]},{"path":[4,32,2,0,3],"span":[599,38,39]},{"path":[4,32,2,1],"span":[600,2,28]},{"path":[4,32,2,1,4],"span":[600,2,10]},{"path":[4,32,2,1,5],"span":[600,11,15]},{"path":[4,32,2,1,1],"span":[600,16,23]},{"path":[4,32,2,1,3],"span":[600,26,27]},{"path":[4,32,2,2],"span":[601,2,32]},{"path":[4,32,2,2,4],"span":[601,2,10]},{"path":[4,32,2,2,5],"span":[601,11,17]},{"path":[4,32,2,2,1],"span":[601,24,27]},{"path":[4,32,2,2,3],"span":[601,30,31]},{"path":[4,32,2,3],"span":[602,2,32]},{"path":[4,32,2,3,4],"span":[602,2,10]},{"path":[4,32,2,3,6],"span":[602,11,22]},{"path":[4,32,2,3,1],"span":[602,23,27]},{"path":[4,32,2,3,3],"span":[602,30,31]},{"path":[4,33],"span":[608,0,612,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,33,1],"span":[608,8,14]},{"path":[4,33,2,0],"span":[609,4,29]},{"path":[4,33,2,0,5],"span":[609,4,9]},{"path":[4,33,2,0,1],"span":[609,10,24]},{"path":[4,33,2,0,3],"span":[609,27,28]},{"path":[4,33,2,1],"span":[610,4,48]},{"path":[4,33,2,1,4],"span":[610,4,12]},{"path":[4,33,2,1,6],"span":[610,13,27]},{"path":[4,33,2,1,1],"span":[610,28,43]},{"path":[4,33,2,1,3],"span":[610,46,47]},{"path":[4,33,2,2],"span":[611,4,42]},{"path":[4,33,2,2,4],"span":[611,4,12]},{"path":[4,33,2,2,6],"span":[611,13,24]},{"path":[4,33,2,2,1],"span":[611,25,37]},{"path":[4,33,2,2,3],"span":[611,40,41]},{"path":[4,34],"span":[615,0,638,1],"leadingComments":" MemoryEntry *"},{"path":[4,34,1],"span":[615,8,22]},{"path":[4,34,2,0],"span":[617,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,34,2,0,4],"span":[617,4,12]},{"path":[4,34,2,0,5],"span":[617,14,19]},{"path":[4,34,2,0,1],"span":[617,20,24]},{"path":[4,34,2,0,3],"span":[617,27,29]},{"path":[4,34,2,1],"span":[618,4,40],"trailingComments":"\tLinux\n"},{"path":[4,34,2,1,4],"span":[618,4,12]},{"path":[4,34,2,1,5],"span":[618,13,19]},{"path":[4,34,2,1,1],"span":[618,24,36]},{"path":[4,34,2,1,3],"span":[618,38,39]},{"path":[4,34,2,2],"span":[619,4,51],"trailingComments":"\tWindows\n"},{"path":[4,34,2,2,4],"span":[619,4,12]},{"path":[4,34,2,2,5],"span":[619,13,18]},{"path":[4,34,2,2,1],"span":[619,24,46]},{"path":[4,34,2,2,3],"span":[619,49,50]},{"path":[4,34,2,3],"span":[620,4,46],"trailingComments":"\tWindows\n"},{"path":[4,34,2,3,4],"span":[620,4,12]},{"path":[4,34,2,3,5],"span":[620,13,18]},{"path":[4,34,2,3,1],"span":[620,24,42]},{"path":[4,34,2,3,3],"span":[620,44,45]},{"path":[4,34,2,4],"span":[621,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,34,2,4,4],"span":[621,4,12]},{"path":[4,34,2,4,5],"span":[621,13,18]},{"path":[4,34,2,4,1],"span":[621,24,34]},{"path":[4,34,2,4,3],"span":[621,36,37]},{"path":[4,34,2,5],"span":[622,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,34,2,5,4],"span":[622,4,12]},{"path":[4,34,2,5,5],"span":[622,13,19]},{"path":[4,34,2,5,1],"span":[622,24,38]},{"path":[4,34,2,5,3],"span":[622,40,41]},{"path":[4,34,2,6],"span":[623,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,34,2,6,4],"span":[623,4,12]},{"path":[4,34,2,6,6],"span":[623,13,24]},{"path":[4,34,2,6,1],"span":[623,32,43]},{"path":[4,34,2,6,3],"span":[623,45,46]},{"path":[4,34,2,7],"span":[624,4,49],"trailingComments":"\tWindows\n"},{"path":[4,34,2,7,4],"span":[624,4,12]},{"path":[4,34,2,7,5],"span":[624,13,18]},{"path":[4,34,2,7,1],"span":[624,24,45]},{"path":[4,34,2,7,3],"span":[624,47,48]},{"path":[4,34,2,8],"span":[625,4,55],"trailingComments":"\tWindows\n"},{"path":[4,34,2,8,4],"span":[625,4,12]},{"path":[4,34,2,8,6],"span":[625,13,24]},{"path":[4,34,2,8,1],"span":[625,32,51]},{"path":[4,34,2,8,3],"span":[625,53,54]},{"path":[4,34,2,9],"span":[626,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,34,2,9,4],"span":[626,4,12]},{"path":[4,34,2,9,5],"span":[626,13,19]},{"path":[4,34,2,9,1],"span":[626,24,36]},{"path":[4,34,2,9,3],"span":[626,38,39]},{"path":[4,34,2,10],"span":[627,4,33],"trailingComments":"\tMac\n"},{"path":[4,34,2,10,4],"span":[627,4,12]},{"path":[4,34,2,10,5],"span":[627,13,19]},{"path":[4,34,2,10,1],"span":[627,24,28]},{"path":[4,34,2,10,3],"span":[627,30,32]},{"path":[4,34,2,11],"span":[628,4,40],"trailingComments":"\tWindows\n"},{"path":[4,34,2,11,4],"span":[628,4,12]},{"path":[4,34,2,11,5],"span":[628,13,19]},{"path":[4,34,2,11,1],"span":[628,24,35]},{"path":[4,34,2,11,3],"span":[628,37,39]},{"path":[4,34,2,12],"span":[629,4,44],"trailingComments":"\tWindows\n"},{"path":[4,34,2,12,4],"span":[629,4,12]},{"path":[4,34,2,12,5],"span":[629,13,18]},{"path":[4,34,2,12,1],"span":[629,24,39]},{"path":[4,34,2,12,3],"span":[629,41,43]},{"path":[4,34,2,13],"span":[630,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,34,2,13,4],"span":[630,4,12]},{"path":[4,34,2,13,5],"span":[630,13,19]},{"path":[4,34,2,13,1],"span":[630,24,37]},{"path":[4,34,2,13,3],"span":[630,39,41]},{"path":[4,34,2,14],"span":[631,4,32],"trailingComments":"\tLinux\n"},{"path":[4,34,2,14,4],"span":[631,4,12]},{"path":[4,34,2,14,5],"span":[631,13,19]},{"path":[4,34,2,14,1],"span":[631,24,27]},{"path":[4,34,2,14,3],"span":[631,29,31]},{"path":[4,34,2,15],"span":[632,4,32],"trailingComments":"\tWindows\n"},{"path":[4,34,2,15,4],"span":[632,4,12]},{"path":[4,34,2,15,5],"span":[632,13,19]},{"path":[4,34,2,15,1],"span":[632,24,27]},{"path":[4,34,2,15,3],"span":[632,29,31]},{"path":[4,34,2,16],"span":[633,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,34,2,16,4],"span":[633,4,12]},{"path":[4,34,2,16,5],"span":[633,13,18]},{"path":[4,34,2,16,1],"span":[633,24,29]},{"path":[4,34,2,16,3],"span":[633,31,33]},{"path":[4,34,2,17],"span":[634,4,34],"trailingComments":"\tMac\n"},{"path":[4,34,2,17,4],"span":[634,4,12]},{"path":[4,34,2,17,5],"span":[634,13,19]},{"path":[4,34,2,17,1],"span":[634,24,29]},{"path":[4,34,2,17,3],"span":[634,31,33]},{"path":[4,34,2,18],"span":[635,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,34,2,18,4],"span":[635,4,12]},{"path":[4,34,2,18,5],"span":[635,13,18]},{"path":[4,34,2,18,1],"span":[635,24,35]},{"path":[4,34,2,18,3],"span":[635,37,39]},{"path":[4,34,2,19],"span":[636,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,34,2,19,4],"span":[636,4,12]},{"path":[4,34,2,19,6],"span":[636,13,24]},{"path":[4,34,2,19,1],"span":[636,32,36]},{"path":[4,34,2,19,3],"span":[636,38,40]},{"path":[4,34,2,20],"span":[637,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,34,2,20,4],"span":[637,4,12]},{"path":[4,34,2,20,6],"span":[637,13,24]},{"path":[4,34,2,20,1],"span":[637,32,43]},{"path":[4,34,2,20,3],"span":[637,45,47]},{"path":[4,35],"span":[642,0,649,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,35,1],"span":[642,8,19]},{"path":[4,35,2,0],"span":[643,2,40],"trailingComments":"\tWindows\n"},{"path":[4,35,2,0,4],"span":[643,2,10]},{"path":[4,35,2,0,5],"span":[643,11,16]},{"path":[4,35,2,0,1],"span":[643,24,36]},{"path":[4,35,2,0,3],"span":[643,38,39]},{"path":[4,35,2,1],"span":[644,2,36],"trailingComments":"\tWindows\n"},{"path":[4,35,2,1,4],"span":[644,2,10]},{"path":[4,35,2,1,6],"span":[644,11,22]},{"path":[4,35,2,1,1],"span":[644,24,32]},{"path":[4,35,2,1,3],"span":[644,34,35]},{"path":[4,35,2,2],"span":[645,2,42],"trailingComments":"\tWindows\n"},{"path":[4,35,2,2,4],"span":[645,2,10]},{"path":[4,35,2,2,5],"span":[645,11,16]},{"path":[4,35,2,2,1],"span":[645,24,38]},{"path":[4,35,2,2,3],"span":[645,40,41]},{"path":[4,35,2,3],"span":[646,2,51],"trailingComments":"\tWindows\n"},{"path":[4,35,2,3,4],"span":[646,2,10]},{"path":[4,35,2,3,6],"span":[646,11,22]},{"path":[4,35,2,3,1],"span":[646,24,47]},{"path":[4,35,2,3,3],"span":[646,49,50]},{"path":[4,35,2,4],"span":[647,2,31],"trailingComments":"\tWindows\n"},{"path":[4,35,2,4,4],"span":[647,2,10]},{"path":[4,35,2,4,5],"span":[647,11,17]},{"path":[4,35,2,4,1],"span":[647,24,27]},{"path":[4,35,2,4,3],"span":[647,29,30]},{"path":[4,35,2,5],"span":[648,2,31],"trailingComments":"\tWindows\n"},{"path":[4,35,2,5,4],"span":[648,2,10]},{"path":[4,35,2,5,6],"span":[648,11,22]},{"path":[4,35,2,5,1],"span":[648,24,27]},{"path":[4,35,2,5,3],"span":[648,29,30]},{"path":[4,36],"span":[655,0,658,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,36,1],"span":[655,8,19]},{"path":[4,36,2,0],"span":[656,2,18]},{"path":[4,36,2,0,5],"span":[656,2,7]},{"path":[4,36,2,0,1],"span":[656,8,13]},{"path":[4,36,2,0,3],"span":[656,16,17]},{"path":[4,36,2,1],"span":[657,2,27]},{"path":[4,36,2,1,4],"span":[657,2,10]},{"path":[4,36,2,1,5],"span":[657,11,17]},{"path":[4,36,2,1,1],"span":[657,18,22]},{"path":[4,36,2,1,3],"span":[657,25,26]},{"path":[4,37],"span":[661,0,664,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,37,1],"span":[661,8,24]},{"path":[4,37,2,0],"span":[662,2,42]},{"path":[4,37,2,0,6],"span":[662,2,27]},{"path":[4,37,2,0,1],"span":[662,28,37]},{"path":[4,37,2,0,3],"span":[662,40,41]},{"path":[4,37,2,1],"span":[663,2,31]},{"path":[4,37,2,1,4],"span":[663,2,10]},{"path":[4,37,2,1,6],"span":[663,11,18]},{"path":[4,37,2,1,1],"span":[663,19,26]},{"path":[4,37,2,1,3],"span":[663,29,30]},{"path":[4,38],"span":[668,0,689,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,38,1],"span":[668,8,15]},{"path":[4,38,2,0],"span":[670,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,38,2,0,4],"span":[670,2,10]},{"path":[4,38,2,0,5],"span":[670,11,16]},{"path":[4,38,2,0,1],"span":[670,17,19]},{"path":[4,38,2,0,3],"span":[670,22,23]},{"path":[4,38,2,1],"span":[673,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,38,2,1,4],"span":[673,2,10]},{"path":[4,38,2,1,5],"span":[673,11,16]},{"path":[4,38,2,1,1],"span":[673,17,24]},{"path":[4,38,2,1,3],"span":[673,27,28]},{"path":[4,38,2,2],"span":[675,2,23]},{"path":[4,38,2,2,5],"span":[675,2,8]},{"path":[4,38,2,2,1],"span":[675,9,18]},{"path":[4,38,2,2,3],"span":[675,21,22]},{"path":[4,38,2,3],"span":[676,2,24]},{"path":[4,38,2,3,5],"span":[676,2,8]},{"path":[4,38,2,3,1],"span":[676,9,19]},{"path":[4,38,2,3,3],"span":[676,22,23]},{"path":[4,38,2,4],"span":[678,2,36]},{"path":[4,38,2,4,4],"span":[678,2,10]},{"path":[4,38,2,4,5],"span":[678,11,17]},{"path":[4,38,2,4,1],"span":[678,18,31]},{"path":[4,38,2,4,3],"span":[678,34,35]},{"path":[4,38,2,5],"span":[679,2,50]},{"path":[4,38,2,5,6],"span":[679,2,27]},{"path":[4,38,2,5,1],"span":[679,28,45]},{"path":[4,38,2,5,3],"span":[679,48,49]},{"path":[4,38,8,0],"span":[681,2,683,3]},{"path":[4,38,8,0,1],"span":[681,8,12]},{"path":[4,38,2,6],"span":[682,4,36]},{"path":[4,38,2,6,6],"span":[682,4,22]},{"path":[4,38,2,6,1],"span":[682,23,30]},{"path":[4,38,2,6,3],"span":[682,33,35]},{"path":[4,38,2,7],"span":[686,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,38,2,7,4],"span":[686,2,10]},{"path":[4,38,2,7,6],"span":[686,11,23]},{"path":[4,38,2,7,1],"span":[686,24,37]},{"path":[4,38,2,7,3],"span":[686,40,42]},{"path":[4,38,2,8],"span":[688,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,38,2,8,4],"span":[688,2,10]},{"path":[4,38,2,8,6],"span":[688,11,25]},{"path":[4,38,2,8,1],"span":[688,26,41]},{"path":[4,38,2,8,3],"span":[688,44,46]},{"path":[4,39],"span":[691,0,700,1]},{"path":[4,39,1],"span":[691,8,26]},{"path":[4,39,2,0],"span":[692,2,19]},{"path":[4,39,2,0,5],"span":[692,2,8]},{"path":[4,39,2,0,1],"span":[692,9,14]},{"path":[4,39,2,0,3],"span":[692,17,18]},{"path":[4,39,2,1],"span":[693,2,36]},{"path":[4,39,2,1,4],"span":[693,2,10]},{"path":[4,39,2,1,5],"span":[693,11,17]},{"path":[4,39,2,1,1],"span":[693,18,31]},{"path":[4,39,2,1,3],"span":[693,34,35]},{"path":[4,39,2,2],"span":[694,2,36]},{"path":[4,39,2,2,4],"span":[694,2,10]},{"path":[4,39,2,2,5],"span":[694,11,17]},{"path":[4,39,2,2,1],"span":[694,18,31]},{"path":[4,39,2,2,3],"span":[694,34,35]},{"path":[4,39,2,3],"span":[695,2,33]},{"path":[4,39,2,3,4],"span":[695,2,10]},{"path":[4,39,2,3,5],"span":[695,11,17]},{"path":[4,39,2,3,1],"span":[695,18,28]},{"path":[4,39,2,3,3],"span":[695,31,32]},{"path":[4,39,2,4],"span":[696,2,40]},{"path":[4,39,2,4,4],"span":[696,2,10]},{"path":[4,39,2,4,5],"span":[696,11,17]},{"path":[4,39,2,4,1],"span":[696,18,35]},{"path":[4,39,2,4,3],"span":[696,38,39]},{"path":[4,39,2,5],"span":[697,2,39]},{"path":[4,39,2,5,4],"span":[697,2,10]},{"path":[4,39,2,5,5],"span":[697,11,17]},{"path":[4,39,2,5,1],"span":[697,18,34]},{"path":[4,39,2,5,3],"span":[697,37,38]},{"path":[4,39,2,6],"span":[698,2,59]},{"path":[4,39,2,6,4],"span":[698,2,10]},{"path":[4,39,2,6,6],"span":[698,11,36]},{"path":[4,39,2,6,1],"span":[698,37,54]},{"path":[4,39,2,6,3],"span":[698,57,58]},{"path":[4,39,2,7],"span":[699,2,32]},{"path":[4,39,2,7,4],"span":[699,2,10]},{"path":[4,39,2,7,5],"span":[699,11,17]},{"path":[4,39,2,7,1],"span":[699,18,27]},{"path":[4,39,2,7,3],"span":[699,30,31]},{"path":[4,40],"span":[705,0,711,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,40,1],"span":[705,8,25]},{"path":[4,40,2,0],"span":[706,2,27]},{"path":[4,40,2,0,4],"span":[706,2,10]},{"path":[4,40,2,0,5],"span":[706,11,17]},{"path":[4,40,2,0,1],"span":[706,18,22]},{"path":[4,40,2,0,3],"span":[706,25,26]},{"path":[4,40,2,1],"span":[707,2,27]},{"path":[4,40,2,1,4],"span":[707,2,10]},{"path":[4,40,2,1,5],"span":[707,11,17]},{"path":[4,40,2,1,1],"span":[707,18,22]},{"path":[4,40,2,1,3],"span":[707,25,26]},{"path":[4,40,2,2],"span":[708,2,28]},{"path":[4,40,2,2,4],"span":[708,2,10]},{"path":[4,40,2,2,5],"span":[708,11,15]},{"path":[4,40,2,2,1],"span":[708,16,23]},{"path":[4,40,2,2,3],"span":[708,26,27]},{"path":[4,40,2,3],"span":[709,2,31]},{"path":[4,40,2,3,4],"span":[709,2,10]},{"path":[4,40,2,3,5],"span":[709,11,15]},{"path":[4,40,2,3,1],"span":[709,16,26]},{"path":[4,40,2,3,3],"span":[709,29,30]},{"path":[4,40,2,4],"span":[710,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,40,2,4,4],"span":[710,2,10]},{"path":[4,40,2,4,6],"span":[710,11,19]},{"path":[4,40,2,4,1],"span":[710,20,28]},{"path":[4,40,2,4,3],"span":[710,31,32]},{"path":[4,41],"span":[720,0,723,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,41,1],"span":[720,8,25]},{"path":[4,41,2,0],"span":[721,2,42]},{"path":[4,41,2,0,6],"span":[721,2,27]},{"path":[4,41,2,0,1],"span":[721,28,37]},{"path":[4,41,2,0,3],"span":[721,40,41]},{"path":[4,41,2,1],"span":[722,2,33]},{"path":[4,41,2,1,4],"span":[722,2,10]},{"path":[4,41,2,1,6],"span":[722,11,19]},{"path":[4,41,2,1,1],"span":[722,20,28]},{"path":[4,41,2,1,3],"span":[722,31,32]},{"path":[4,42],"span":[732,0,770,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,42,1],"span":[732,8,16]},{"path":[4,42,2,0],"span":[734,2,26]},{"path":[4,42,2,0,4],"span":[734,2,10]},{"path":[4,42,2,0,5],"span":[734,11,16]},{"path":[4,42,2,0,1],"span":[734,17,21]},{"path":[4,42,2,0,3],"span":[734,24,25]},{"path":[4,42,2,1],"span":[735,2,29]},{"path":[4,42,2,1,4],"span":[735,2,10]},{"path":[4,42,2,1,5],"span":[735,11,16]},{"path":[4,42,2,1,1],"span":[735,17,24]},{"path":[4,42,2,1,3],"span":[735,27,28]},{"path":[4,42,2,2],"span":[736,2,28]},{"path":[4,42,2,2,4],"span":[736,2,10]},{"path":[4,42,2,2,5],"span":[736,11,16]},{"path":[4,42,2,2,1],"span":[736,17,23]},{"path":[4,42,2,2,3],"span":[736,26,27]},{"path":[4,42,2,3],"span":[739,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,42,2,3,4],"span":[739,2,10]},{"path":[4,42,2,3,5],"span":[739,11,16]},{"path":[4,42,2,3,1],"span":[739,17,24]},{"path":[4,42,2,3,3],"span":[739,27,28]},{"path":[4,42,2,4],"span":[742,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,42,2,4,4],"span":[742,2,10]},{"path":[4,42,2,4,5],"span":[742,11,16]},{"path":[4,42,2,4,1],"span":[742,17,22]},{"path":[4,42,2,4,3],"span":[742,25,26]},{"path":[4,42,2,5],"span":[745,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,42,2,5,4],"span":[745,2,10]},{"path":[4,42,2,5,5],"span":[745,11,16]},{"path":[4,42,2,5,1],"span":[745,17,26]},{"path":[4,42,2,5,3],"span":[745,29,30]},{"path":[4,42,2,6],"span":[747,2,32]},{"path":[4,42,2,6,4],"span":[747,2,10]},{"path":[4,42,2,6,5],"span":[747,11,17]},{"path":[4,42,2,6,1],"span":[747,18,27]},{"path":[4,42,2,6,3],"span":[747,30,31]},{"path":[4,42,2,7],"span":[748,2,31]},{"path":[4,42,2,7,4],"span":[748,2,10]},{"path":[4,42,2,7,5],"span":[748,11,17]},{"path":[4,42,2,7,1],"span":[748,18,26]},{"path":[4,42,2,7,3],"span":[748,29,30]},{"path":[4,42,2,8],"span":[749,2,32]},{"path":[4,42,2,8,4],"span":[749,2,10]},{"path":[4,42,2,8,5],"span":[749,11,17]},{"path":[4,42,2,8,1],"span":[749,18,27]},{"path":[4,42,2,8,3],"span":[749,30,31]},{"path":[4,42,2,9],"span":[750,2,28]},{"path":[4,42,2,9,4],"span":[750,2,10]},{"path":[4,42,2,9,5],"span":[750,11,17]},{"path":[4,42,2,9,1],"span":[750,18,22]},{"path":[4,42,2,9,3],"span":[750,25,27]},{"path":[4,42,2,10],"span":[751,2,31]},{"path":[4,42,2,10,4],"span":[751,2,10]},{"path":[4,42,2,10,5],"span":[751,11,17]},{"path":[4,42,2,10,1],"span":[751,18,25]},{"path":[4,42,2,10,3],"span":[751,28,30]},{"path":[4,42,2,11],"span":[752,2,34]},{"path":[4,42,2,11,4],"span":[752,2,10]},{"path":[4,42,2,11,5],"span":[752,11,17]},{"path":[4,42,2,11,1],"span":[752,18,28]},{"path":[4,42,2,11,3],"span":[752,31,33]},{"path":[4,42,2,12],"span":[753,2,31]},{"path":[4,42,2,12,4],"span":[753,2,10]},{"path":[4,42,2,12,5],"span":[753,11,17]},{"path":[4,42,2,12,1],"span":[753,18,25]},{"path":[4,42,2,12,3],"span":[753,28,30]},{"path":[4,42,2,13],"span":[754,2,29]},{"path":[4,42,2,13,4],"span":[754,2,10]},{"path":[4,42,2,13,5],"span":[754,11,17]},{"path":[4,42,2,13,1],"span":[754,18,23]},{"path":[4,42,2,13,3],"span":[754,26,28]},{"path":[4,42,2,14],"span":[755,2,28]},{"path":[4,42,2,14,4],"span":[755,2,10]},{"path":[4,42,2,14,5],"span":[755,11,17]},{"path":[4,42,2,14,1],"span":[755,18,22]},{"path":[4,42,2,14,3],"span":[755,25,27]},{"path":[4,42,2,15],"span":[756,2,28]},{"path":[4,42,2,15,4],"span":[756,2,10]},{"path":[4,42,2,15,5],"span":[756,11,17]},{"path":[4,42,2,15,1],"span":[756,18,22]},{"path":[4,42,2,15,3],"span":[756,25,27]},{"path":[4,42,2,16],"span":[758,2,27]},{"path":[4,42,2,16,4],"span":[758,2,10]},{"path":[4,42,2,16,5],"span":[758,11,17]},{"path":[4,42,2,16,1],"span":[758,18,21]},{"path":[4,42,2,16,3],"span":[758,24,26]},{"path":[4,42,2,17],"span":[760,2,23]},{"path":[4,42,2,17,6],"span":[760,2,13]},{"path":[4,42,2,17,1],"span":[760,14,17]},{"path":[4,42,2,17,3],"span":[760,20,22]},{"path":[4,42,2,18],"span":[761,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,42,2,18,4],"span":[761,2,10]},{"path":[4,42,2,18,5],"span":[761,11,17]},{"path":[4,42,2,18,1],"span":[761,18,26]},{"path":[4,42,2,18,3],"span":[761,29,31]},{"path":[4,42,2,19],"span":[762,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,42,2,19,4],"span":[762,2,10]},{"path":[4,42,2,19,5],"span":[762,11,17]},{"path":[4,42,2,19,1],"span":[762,18,26]},{"path":[4,42,2,19,3],"span":[762,29,31]},{"path":[4,42,2,20],"span":[765,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,42,2,20,4],"span":[765,2,10]},{"path":[4,42,2,20,6],"span":[765,11,23]},{"path":[4,42,2,20,1],"span":[765,24,37]},{"path":[4,42,2,20,3],"span":[765,40,42]},{"path":[4,42,2,21],"span":[767,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,42,2,21,4],"span":[767,2,10]},{"path":[4,42,2,21,6],"span":[767,11,26]},{"path":[4,42,2,21,1],"span":[767,27,43]},{"path":[4,42,2,21,3],"span":[767,46,48]},{"path":[4,42,2,22],"span":[769,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,42,2,22,4],"span":[769,2,10]},{"path":[4,42,2,22,6],"span":[769,11,26]},{"path":[4,42,2,22,1],"span":[769,27,41]},{"path":[4,42,2,22,3],"span":[769,44,46]},{"path":[4,43],"span":[775,0,789,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,43,1],"span":[775,8,19]},{"path":[4,43,2,0],"span":[776,2,18]},{"path":[4,43,2,0,5],"span":[776,2,8]},{"path":[4,43,2,0,1],"span":[776,9,13]},{"path":[4,43,2,0,3],"span":[776,16,17]},{"path":[4,43,2,1],"span":[778,2,29]},{"path":[4,43,2,1,4],"span":[778,2,10]},{"path":[4,43,2,1,5],"span":[778,11,17]},{"path":[4,43,2,1,1],"span":[778,18,24]},{"path":[4,43,2,1,3],"span":[778,27,28]},{"path":[4,43,2,2],"span":[779,2,30]},{"path":[4,43,2,2,4],"span":[779,2,10]},{"path":[4,43,2,2,5],"span":[779,11,17]},{"path":[4,43,2,2,1],"span":[779,18,25]},{"path":[4,43,2,2,3],"span":[779,28,29]},{"path":[4,43,2,3],"span":[780,2,27]},{"path":[4,43,2,3,4],"span":[780,2,10]},{"path":[4,43,2,3,5],"span":[780,11,17]},{"path":[4,43,2,3,1],"span":[780,18,22]},{"path":[4,43,2,3,3],"span":[780,25,26]},{"path":[4,43,2,4],"span":[781,2,31]},{"path":[4,43,2,4,4],"span":[781,2,10]},{"path":[4,43,2,4,5],"span":[781,11,17]},{"path":[4,43,2,4,1],"span":[781,18,26]},{"path":[4,43,2,4,3],"span":[781,29,30]},{"path":[4,43,2,5],"span":[782,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,43,2,5,4],"span":[782,2,10]},{"path":[4,43,2,5,5],"span":[782,11,17]},{"path":[4,43,2,5,1],"span":[782,18,22]},{"path":[4,43,2,5,3],"span":[782,25,26]},{"path":[4,43,2,6],"span":[783,2,54]},{"path":[4,43,2,6,4],"span":[783,2,10]},{"path":[4,43,2,6,6],"span":[783,11,36]},{"path":[4,43,2,6,1],"span":[783,37,49]},{"path":[4,43,2,6,3],"span":[783,52,53]},{"path":[4,43,2,7],"span":[784,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,43,2,7,4],"span":[784,2,10]},{"path":[4,43,2,7,5],"span":[784,11,17]},{"path":[4,43,2,7,1],"span":[784,18,29]},{"path":[4,43,2,7,3],"span":[784,32,33]},{"path":[4,43,2,8],"span":[786,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,43,2,8,4],"span":[786,2,10]},{"path":[4,43,2,8,5],"span":[786,11,17]},{"path":[4,43,2,8,1],"span":[786,18,23]},{"path":[4,43,2,8,3],"span":[786,26,27]},{"path":[4,43,2,9],"span":[788,2,37]},{"path":[4,43,2,9,4],"span":[788,2,10]},{"path":[4,43,2,9,5],"span":[788,11,15]},{"path":[4,43,2,9,1],"span":[788,16,31]},{"path":[4,43,2,9,3],"span":[788,34,36]},{"path":[4,44],"span":[793,0,827,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,44,1],"span":[793,8,20]},{"path":[4,44,2,0],"span":[794,2,16]},{"path":[4,44,2,0,5],"span":[794,2,7]},{"path":[4,44,2,0,1],"span":[794,9,11]},{"path":[4,44,2,0,3],"span":[794,14,15]},{"path":[4,44,2,1],"span":[795,2,23]},{"path":[4,44,2,1,5],"span":[795,2,8]},{"path":[4,44,2,1,1],"span":[795,9,18]},{"path":[4,44,2,1,3],"span":[795,21,22]},{"path":[4,44,2,2],"span":[797,2,32]},{"path":[4,44,2,2,4],"span":[797,2,10]},{"path":[4,44,2,2,5],"span":[797,11,16]},{"path":[4,44,2,2,1],"span":[797,17,26]},{"path":[4,44,2,2,3],"span":[797,29,31]},{"path":[4,44,2,3],"span":[798,2,58]},{"path":[4,44,2,3,4],"span":[798,2,10]},{"path":[4,44,2,3,6],"span":[798,11,36]},{"path":[4,44,2,3,1],"span":[798,37,53]},{"path":[4,44,2,3,3],"span":[798,56,57]},{"path":[4,44,2,4],"span":[800,2,35]},{"path":[4,44,2,4,4],"span":[800,2,10]},{"path":[4,44,2,4,5],"span":[800,11,17]},{"path":[4,44,2,4,1],"span":[800,18,30]},{"path":[4,44,2,4,3],"span":[800,33,34]},{"path":[4,44,2,5],"span":[801,2,37]},{"path":[4,44,2,5,4],"span":[801,2,10]},{"path":[4,44,2,5,5],"span":[801,11,17]},{"path":[4,44,2,5,1],"span":[801,18,32]},{"path":[4,44,2,5,3],"span":[801,35,36]},{"path":[4,44,2,6],"span":[802,2,39]},{"path":[4,44,2,6,4],"span":[802,2,10]},{"path":[4,44,2,6,5],"span":[802,11,17]},{"path":[4,44,2,6,1],"span":[802,18,34]},{"path":[4,44,2,6,3],"span":[802,37,38]},{"path":[4,44,2,7],"span":[803,2,35]},{"path":[4,44,2,7,4],"span":[803,2,10]},{"path":[4,44,2,7,5],"span":[803,11,17]},{"path":[4,44,2,7,1],"span":[803,18,30]},{"path":[4,44,2,7,3],"span":[803,33,34]},{"path":[4,44,2,8],"span":[804,2,43]},{"path":[4,44,2,8,4],"span":[804,2,10]},{"path":[4,44,2,8,5],"span":[804,11,17]},{"path":[4,44,2,8,1],"span":[804,18,37]},{"path":[4,44,2,8,3],"span":[804,40,42]},{"path":[4,44,2,9],"span":[805,2,35]},{"path":[4,44,2,9,4],"span":[805,2,10]},{"path":[4,44,2,9,5],"span":[805,11,17]},{"path":[4,44,2,9,1],"span":[805,18,29]},{"path":[4,44,2,9,3],"span":[805,32,34]},{"path":[4,44,2,10],"span":[806,2,35]},{"path":[4,44,2,10,4],"span":[806,2,10]},{"path":[4,44,2,10,5],"span":[806,11,17]},{"path":[4,44,2,10,1],"span":[806,18,29]},{"path":[4,44,2,10,3],"span":[806,32,34]},{"path":[4,44,2,11],"span":[807,2,37]},{"path":[4,44,2,11,4],"span":[807,2,10]},{"path":[4,44,2,11,5],"span":[807,11,17]},{"path":[4,44,2,11,1],"span":[807,18,31]},{"path":[4,44,2,11,3],"span":[807,34,36]},{"path":[4,44,2,12],"span":[808,2,40]},{"path":[4,44,2,12,4],"span":[808,2,10]},{"path":[4,44,2,12,5],"span":[808,11,17]},{"path":[4,44,2,12,1],"span":[808,18,34]},{"path":[4,44,2,12,3],"span":[808,37,39]},{"path":[4,44,2,13],"span":[809,2,39]},{"path":[4,44,2,13,4],"span":[809,2,10]},{"path":[4,44,2,13,5],"span":[809,11,17]},{"path":[4,44,2,13,1],"span":[809,18,33]},{"path":[4,44,2,13,3],"span":[809,36,38]},{"path":[4,44,2,14],"span":[810,2,36]},{"path":[4,44,2,14,4],"span":[810,2,10]},{"path":[4,44,2,14,5],"span":[810,11,17]},{"path":[4,44,2,14,1],"span":[810,18,30]},{"path":[4,44,2,14,3],"span":[810,33,35]},{"path":[4,44,2,15],"span":[811,2,43]},{"path":[4,44,2,15,4],"span":[811,2,10]},{"path":[4,44,2,15,5],"span":[811,11,17]},{"path":[4,44,2,15,1],"span":[811,18,37]},{"path":[4,44,2,15,3],"span":[811,40,42]},{"path":[4,44,2,16],"span":[812,2,37]},{"path":[4,44,2,16,4],"span":[812,2,10]},{"path":[4,44,2,16,5],"span":[812,11,17]},{"path":[4,44,2,16,1],"span":[812,18,31]},{"path":[4,44,2,16,3],"span":[812,34,36]},{"path":[4,44,2,17],"span":[813,2,40]},{"path":[4,44,2,17,4],"span":[813,2,10]},{"path":[4,44,2,17,5],"span":[813,11,17]},{"path":[4,44,2,17,1],"span":[813,18,34]},{"path":[4,44,2,17,3],"span":[813,37,39]},{"path":[4,44,2,18],"span":[814,2,41]},{"path":[4,44,2,18,4],"span":[814,2,10]},{"path":[4,44,2,18,5],"span":[814,11,17]},{"path":[4,44,2,18,1],"span":[814,18,35]},{"path":[4,44,2,18,3],"span":[814,38,40]},{"path":[4,44,2,19],"span":[815,2,39]},{"path":[4,44,2,19,4],"span":[815,2,10]},{"path":[4,44,2,19,5],"span":[815,11,17]},{"path":[4,44,2,19,1],"span":[815,18,33]},{"path":[4,44,2,19,3],"span":[815,36,38]},{"path":[4,44,2,20],"span":[816,2,41]},{"path":[4,44,2,20,4],"span":[816,2,10]},{"path":[4,44,2,20,5],"span":[816,11,17]},{"path":[4,44,2,20,1],"span":[816,18,35]},{"path":[4,44,2,20,3],"span":[816,38,40]},{"path":[4,44,2,21],"span":[817,2,38]},{"path":[4,44,2,21,4],"span":[817,2,10]},{"path":[4,44,2,21,5],"span":[817,11,17]},{"path":[4,44,2,21,1],"span":[817,18,32]},{"path":[4,44,2,21,3],"span":[817,35,37]},{"path":[4,44,2,22],"span":[819,2,36]},{"path":[4,44,2,22,4],"span":[819,2,10]},{"path":[4,44,2,22,5],"span":[819,11,15]},{"path":[4,44,2,22,1],"span":[819,16,30]},{"path":[4,44,2,22,3],"span":[819,33,35]},{"path":[4,44,2,23],"span":[820,2,36]},{"path":[4,44,2,23,4],"span":[820,2,10]},{"path":[4,44,2,23,5],"span":[820,11,15]},{"path":[4,44,2,23,1],"span":[820,16,30]},{"path":[4,44,2,23,3],"span":[820,33,35]},{"path":[4,44,2,24],"span":[821,2,36]},{"path":[4,44,2,24,4],"span":[821,2,10]},{"path":[4,44,2,24,5],"span":[821,11,15]},{"path":[4,44,2,24,1],"span":[821,16,30]},{"path":[4,44,2,24,3],"span":[821,33,35]},{"path":[4,44,2,25],"span":[822,2,38]},{"path":[4,44,2,25,4],"span":[822,2,10]},{"path":[4,44,2,25,5],"span":[822,11,15]},{"path":[4,44,2,25,1],"span":[822,16,32]},{"path":[4,44,2,25,3],"span":[822,35,37]},{"path":[4,44,2,26],"span":[823,2,38]},{"path":[4,44,2,26,4],"span":[823,2,10]},{"path":[4,44,2,26,5],"span":[823,11,15]},{"path":[4,44,2,26,1],"span":[823,16,32]},{"path":[4,44,2,26,3],"span":[823,35,37]},{"path":[4,44,2,27],"span":[824,2,38]},{"path":[4,44,2,27,4],"span":[824,2,10]},{"path":[4,44,2,27,5],"span":[824,11,15]},{"path":[4,44,2,27,1],"span":[824,16,32]},{"path":[4,44,2,27,3],"span":[824,35,37]},{"path":[4,44,2,28],"span":[826,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,44,2,28,4],"span":[826,2,10]},{"path":[4,44,2,28,5],"span":[826,11,16]},{"path":[4,44,2,28,1],"span":[826,17,28]},{"path":[4,44,2,28,3],"span":[826,31,33]},{"path":[4,45],"span":[829,0,864,1]},{"path":[4,45,1],"span":[829,8,20]},{"path":[4,45,2,0],"span":[830,2,15]},{"path":[4,45,2,0,5],"span":[830,2,7]},{"path":[4,45,2,0,1],"span":[830,8,10]},{"path":[4,45,2,0,3],"span":[830,13,14]},{"path":[4,45,2,1],"span":[832,2,20]},{"path":[4,45,2,1,5],"span":[832,2,7]},{"path":[4,45,2,1,1],"span":[832,8,15]},{"path":[4,45,2,1,3],"span":[832,18,19]},{"path":[4,45,2,2],"span":[833,2,26]},{"path":[4,45,2,2,5],"span":[833,2,8]},{"path":[4,45,2,2,1],"span":[833,9,21]},{"path":[4,45,2,2,3],"span":[833,24,25]},{"path":[4,45,2,3],"span":[835,2,36]},{"path":[4,45,2,3,4],"span":[835,2,10]},{"path":[4,45,2,3,5],"span":[835,11,16]},{"path":[4,45,2,3,1],"span":[835,17,31]},{"path":[4,45,2,3,3],"span":[835,34,35]},{"path":[4,45,2,4],"span":[836,2,40]},{"path":[4,45,2,4,4],"span":[836,2,10]},{"path":[4,45,2,4,5],"span":[836,11,17]},{"path":[4,45,2,4,1],"span":[836,18,35]},{"path":[4,45,2,4,3],"span":[836,38,39]},{"path":[4,45,2,5],"span":[838,2,32]},{"path":[4,45,2,5,4],"span":[838,2,10]},{"path":[4,45,2,5,5],"span":[838,11,16]},{"path":[4,45,2,5,1],"span":[838,17,26]},{"path":[4,45,2,5,3],"span":[838,29,31]},{"path":[4,45,2,6],"span":[839,2,31]},{"path":[4,45,2,6,4],"span":[839,2,10]},{"path":[4,45,2,6,5],"span":[839,11,15]},{"path":[4,45,2,6,1],"span":[839,16,25]},{"path":[4,45,2,6,3],"span":[839,28,30]},{"path":[4,45,2,7],"span":[840,2,34]},{"path":[4,45,2,7,4],"span":[840,2,10]},{"path":[4,45,2,7,5],"span":[840,11,17]},{"path":[4,45,2,7,1],"span":[840,18,28]},{"path":[4,45,2,7,3],"span":[840,31,33]},{"path":[4,45,2,8],"span":[841,2,31]},{"path":[4,45,2,8,4],"span":[841,2,10]},{"path":[4,45,2,8,5],"span":[841,11,17]},{"path":[4,45,2,8,1],"span":[841,18,25]},{"path":[4,45,2,8,3],"span":[841,28,30]},{"path":[4,45,2,9],"span":[842,2,55]},{"path":[4,45,2,9,4],"span":[842,2,10]},{"path":[4,45,2,9,6],"span":[842,11,36]},{"path":[4,45,2,9,1],"span":[842,37,49]},{"path":[4,45,2,9,3],"span":[842,52,54]},{"path":[4,45,2,10],"span":[843,2,52]},{"path":[4,45,2,10,4],"span":[843,2,10]},{"path":[4,45,2,10,6],"span":[843,11,36]},{"path":[4,45,2,10,1],"span":[843,37,46]},{"path":[4,45,2,10,3],"span":[843,49,51]},{"path":[4,45,2,11],"span":[844,2,51]},{"path":[4,45,2,11,4],"span":[844,2,10]},{"path":[4,45,2,11,6],"span":[844,11,36]},{"path":[4,45,2,11,1],"span":[844,37,45]},{"path":[4,45,2,11,3],"span":[844,48,50]},{"path":[4,45,2,12],"span":[845,2,43]},{"path":[4,45,2,12,4],"span":[845,2,10]},{"path":[4,45,2,12,5],"span":[845,11,17]},{"path":[4,45,2,12,1],"span":[845,18,37]},{"path":[4,45,2,12,3],"span":[845,40,42]},{"path":[4,45,2,13],"span":[847,2,35]},{"path":[4,45,2,13,4],"span":[847,2,10]},{"path":[4,45,2,13,5],"span":[847,11,17]},{"path":[4,45,2,13,1],"span":[847,18,29]},{"path":[4,45,2,13,3],"span":[847,32,34]},{"path":[4,45,2,14],"span":[848,2,37]},{"path":[4,45,2,14,4],"span":[848,2,10]},{"path":[4,45,2,14,5],"span":[848,11,17]},{"path":[4,45,2,14,1],"span":[848,18,31]},{"path":[4,45,2,14,3],"span":[848,34,36]},{"path":[4,45,2,15],"span":[850,2,39]},{"path":[4,45,2,15,4],"span":[850,2,10]},{"path":[4,45,2,15,5],"span":[850,11,17]},{"path":[4,45,2,15,1],"span":[850,18,33]},{"path":[4,45,2,15,3],"span":[850,36,38]},{"path":[4,45,2,16],"span":[851,2,43]},{"path":[4,45,2,16,4],"span":[851,2,10]},{"path":[4,45,2,16,5],"span":[851,11,17]},{"path":[4,45,2,16,1],"span":[851,18,37]},{"path":[4,45,2,16,3],"span":[851,40,42]},{"path":[4,45,2,17],"span":[852,2,38]},{"path":[4,45,2,17,4],"span":[852,2,10]},{"path":[4,45,2,17,5],"span":[852,11,17]},{"path":[4,45,2,17,1],"span":[852,18,32]},{"path":[4,45,2,17,3],"span":[852,35,37]},{"path":[4,45,2,18],"span":[853,2,38]},{"path":[4,45,2,18,4],"span":[853,2,10]},{"path":[4,45,2,18,5],"span":[853,11,17]},{"path":[4,45,2,18,1],"span":[853,18,32]},{"path":[4,45,2,18,3],"span":[853,35,37]},{"path":[4,45,2,19],"span":[854,2,41]},{"path":[4,45,2,19,4],"span":[854,2,10]},{"path":[4,45,2,19,5],"span":[854,11,15]},{"path":[4,45,2,19,1],"span":[854,18,35]},{"path":[4,45,2,19,3],"span":[854,38,40]},{"path":[4,45,2,20],"span":[855,2,42]},{"path":[4,45,2,20,4],"span":[855,2,10]},{"path":[4,45,2,20,5],"span":[855,11,17]},{"path":[4,45,2,20,1],"span":[855,18,36]},{"path":[4,45,2,20,3],"span":[855,39,41]},{"path":[4,45,2,21],"span":[857,2,32]},{"path":[4,45,2,21,4],"span":[857,2,10]},{"path":[4,45,2,21,5],"span":[857,11,17]},{"path":[4,45,2,21,1],"span":[857,18,26]},{"path":[4,45,2,21,3],"span":[857,29,31]},{"path":[4,45,2,22],"span":[859,2,33]},{"path":[4,45,2,22,4],"span":[859,2,10]},{"path":[4,45,2,22,5],"span":[859,11,16]},{"path":[4,45,2,22,1],"span":[859,17,27]},{"path":[4,45,2,22,3],"span":[859,30,32]},{"path":[4,45,2,23],"span":[861,2,59]},{"path":[4,45,2,23,4],"span":[861,2,10]},{"path":[4,45,2,23,6],"span":[861,11,36]},{"path":[4,45,2,23,1],"span":[861,37,53]},{"path":[4,45,2,23,3],"span":[861,56,58]},{"path":[4,45,2,24],"span":[863,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,45,2,24,4],"span":[863,2,10]},{"path":[4,45,2,24,5],"span":[863,11,16]},{"path":[4,45,2,24,1],"span":[863,17,28]},{"path":[4,45,2,24,3],"span":[863,31,33]},{"path":[4,46],"span":[866,0,899,1]},{"path":[4,46,1],"span":[866,8,17]},{"path":[4,46,2,0],"span":[867,2,15]},{"path":[4,46,2,0,5],"span":[867,2,7]},{"path":[4,46,2,0,1],"span":[867,8,10]},{"path":[4,46,2,0,3],"span":[867,13,14]},{"path":[4,46,2,1],"span":[869,2,21]},{"path":[4,46,2,1,5],"span":[869,2,8]},{"path":[4,46,2,1,1],"span":[869,9,16]},{"path":[4,46,2,1,3],"span":[869,19,20]},{"path":[4,46,2,2],"span":[871,2,33]},{"path":[4,46,2,2,4],"span":[871,2,10]},{"path":[4,46,2,2,5],"span":[871,11,17]},{"path":[4,46,2,2,1],"span":[871,18,28]},{"path":[4,46,2,2,3],"span":[871,31,32]},{"path":[4,46,2,3],"span":[872,2,32]},{"path":[4,46,2,3,4],"span":[872,2,10]},{"path":[4,46,2,3,5],"span":[872,11,17]},{"path":[4,46,2,3,1],"span":[872,18,26]},{"path":[4,46,2,3,3],"span":[872,29,31]},{"path":[4,46,2,4],"span":[873,2,38]},{"path":[4,46,2,4,4],"span":[873,2,10]},{"path":[4,46,2,4,5],"span":[873,11,17]},{"path":[4,46,2,4,1],"span":[873,18,33]},{"path":[4,46,2,4,3],"span":[873,36,37]},{"path":[4,46,2,5],"span":[875,2,33]},{"path":[4,46,2,5,4],"span":[875,2,10]},{"path":[4,46,2,5,5],"span":[875,11,16]},{"path":[4,46,2,5,1],"span":[875,17,28]},{"path":[4,46,2,5,3],"span":[875,31,32]},{"path":[4,46,2,6],"span":[876,2,29]},{"path":[4,46,2,6,4],"span":[876,2,10]},{"path":[4,46,2,6,5],"span":[876,11,16]},{"path":[4,46,2,6,1],"span":[876,17,24]},{"path":[4,46,2,6,3],"span":[876,27,28]},{"path":[4,46,2,7],"span":[877,2,31]},{"path":[4,46,2,7,4],"span":[877,2,10]},{"path":[4,46,2,7,5],"span":[877,11,16]},{"path":[4,46,2,7,1],"span":[877,17,26]},{"path":[4,46,2,7,3],"span":[877,29,30]},{"path":[4,46,2,8],"span":[879,2,54]},{"path":[4,46,2,8,4],"span":[879,2,10]},{"path":[4,46,2,8,6],"span":[879,11,36]},{"path":[4,46,2,8,1],"span":[879,37,49]},{"path":[4,46,2,8,3],"span":[879,52,53]},{"path":[4,46,2,9],"span":[880,2,51]},{"path":[4,46,2,9,4],"span":[880,2,10]},{"path":[4,46,2,9,6],"span":[880,11,36]},{"path":[4,46,2,9,1],"span":[880,37,45]},{"path":[4,46,2,9,3],"span":[880,48,50]},{"path":[4,46,2,10],"span":[881,2,51]},{"path":[4,46,2,10,4],"span":[881,2,10]},{"path":[4,46,2,10,6],"span":[881,11,36]},{"path":[4,46,2,10,1],"span":[881,37,45]},{"path":[4,46,2,10,3],"span":[881,48,50]},{"path":[4,46,2,11],"span":[882,2,52]},{"path":[4,46,2,11,4],"span":[882,2,10]},{"path":[4,46,2,11,6],"span":[882,11,36]},{"path":[4,46,2,11,1],"span":[882,37,46]},{"path":[4,46,2,11,3],"span":[882,49,51]},{"path":[4,46,2,12],"span":[883,2,43]},{"path":[4,46,2,12,4],"span":[883,2,10]},{"path":[4,46,2,12,5],"span":[883,11,17]},{"path":[4,46,2,12,1],"span":[883,18,37]},{"path":[4,46,2,12,3],"span":[883,40,42]},{"path":[4,46,2,13],"span":[884,2,38]},{"path":[4,46,2,13,4],"span":[884,2,10]},{"path":[4,46,2,13,5],"span":[884,11,17]},{"path":[4,46,2,13,1],"span":[884,18,32]},{"path":[4,46,2,13,3],"span":[884,35,37]},{"path":[4,46,2,14],"span":[885,2,40]},{"path":[4,46,2,14,4],"span":[885,2,10]},{"path":[4,46,2,14,5],"span":[885,11,17]},{"path":[4,46,2,14,1],"span":[885,18,34]},{"path":[4,46,2,14,3],"span":[885,37,39]},{"path":[4,46,2,15],"span":[886,2,36]},{"path":[4,46,2,15,4],"span":[886,2,10]},{"path":[4,46,2,15,5],"span":[886,11,17]},{"path":[4,46,2,15,1],"span":[886,18,30]},{"path":[4,46,2,15,3],"span":[886,33,35]},{"path":[4,46,2,16],"span":[887,2,43]},{"path":[4,46,2,16,4],"span":[887,2,10]},{"path":[4,46,2,16,5],"span":[887,11,17]},{"path":[4,46,2,16,1],"span":[887,18,37]},{"path":[4,46,2,16,3],"span":[887,40,42]},{"path":[4,46,2,17],"span":[888,2,35]},{"path":[4,46,2,17,4],"span":[888,2,10]},{"path":[4,46,2,17,5],"span":[888,11,17]},{"path":[4,46,2,17,1],"span":[888,18,29]},{"path":[4,46,2,17,3],"span":[888,32,34]},{"path":[4,46,2,18],"span":[889,2,35]},{"path":[4,46,2,18,4],"span":[889,2,10]},{"path":[4,46,2,18,5],"span":[889,11,17]},{"path":[4,46,2,18,1],"span":[889,18,29]},{"path":[4,46,2,18,3],"span":[889,32,34]},{"path":[4,46,2,19],"span":[890,2,37]},{"path":[4,46,2,19,4],"span":[890,2,10]},{"path":[4,46,2,19,5],"span":[890,11,17]},{"path":[4,46,2,19,1],"span":[890,18,31]},{"path":[4,46,2,19,3],"span":[890,34,36]},{"path":[4,46,2,20],"span":[891,2,40]},{"path":[4,46,2,20,4],"span":[891,2,10]},{"path":[4,46,2,20,5],"span":[891,11,17]},{"path":[4,46,2,20,1],"span":[891,18,34]},{"path":[4,46,2,20,3],"span":[891,37,39]},{"path":[4,46,2,21],"span":[892,2,39]},{"path":[4,46,2,21,4],"span":[892,2,10]},{"path":[4,46,2,21,5],"span":[892,11,17]},{"path":[4,46,2,21,1],"span":[892,18,33]},{"path":[4,46,2,21,3],"span":[892,36,38]},{"path":[4,46,2,22],"span":[894,2,32]},{"path":[4,46,2,22,4],"span":[894,2,10]},{"path":[4,46,2,22,5],"span":[894,11,17]},{"path":[4,46,2,22,1],"span":[894,18,26]},{"path":[4,46,2,22,3],"span":[894,29,31]},{"path":[4,46,2,23],"span":[896,2,59]},{"path":[4,46,2,23,4],"span":[896,2,10]},{"path":[4,46,2,23,6],"span":[896,11,36]},{"path":[4,46,2,23,1],"span":[896,37,53]},{"path":[4,46,2,23,3],"span":[896,56,58]},{"path":[4,46,2,24],"span":[898,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,46,2,24,4],"span":[898,2,10]},{"path":[4,46,2,24,5],"span":[898,11,16]},{"path":[4,46,2,24,1],"span":[898,17,28]},{"path":[4,46,2,24,3],"span":[898,31,33]},{"path":[4,47],"span":[901,0,931,1]},{"path":[4,47,1],"span":[901,8,23]},{"path":[4,47,2,0],"span":[902,2,15]},{"path":[4,47,2,0,5],"span":[902,2,7]},{"path":[4,47,2,0,1],"span":[902,8,10]},{"path":[4,47,2,0,3],"span":[902,13,14]},{"path":[4,47,2,1],"span":[903,2,21]},{"path":[4,47,2,1,5],"span":[903,2,8]},{"path":[4,47,2,1,1],"span":[903,9,16]},{"path":[4,47,2,1,3],"span":[903,19,20]},{"path":[4,47,2,2],"span":[905,2,33]},{"path":[4,47,2,2,4],"span":[905,2,10]},{"path":[4,47,2,2,5],"span":[905,11,17]},{"path":[4,47,2,2,1],"span":[905,18,28]},{"path":[4,47,2,2,3],"span":[905,31,32]},{"path":[4,47,2,3],"span":[906,2,36]},{"path":[4,47,2,3,4],"span":[906,2,10]},{"path":[4,47,2,3,5],"span":[906,11,17]},{"path":[4,47,2,3,1],"span":[906,18,31]},{"path":[4,47,2,3,3],"span":[906,34,35]},{"path":[4,47,2,4],"span":[907,2,33]},{"path":[4,47,2,4,4],"span":[907,2,10]},{"path":[4,47,2,4,5],"span":[907,11,17]},{"path":[4,47,2,4,1],"span":[907,18,28]},{"path":[4,47,2,4,3],"span":[907,31,32]},{"path":[4,47,2,5],"span":[908,2,30]},{"path":[4,47,2,5,4],"span":[908,2,10]},{"path":[4,47,2,5,5],"span":[908,11,17]},{"path":[4,47,2,5,1],"span":[908,18,25]},{"path":[4,47,2,5,3],"span":[908,28,29]},{"path":[4,47,2,6],"span":[909,2,31]},{"path":[4,47,2,6,4],"span":[909,2,10]},{"path":[4,47,2,6,5],"span":[909,11,17]},{"path":[4,47,2,6,1],"span":[909,18,26]},{"path":[4,47,2,6,3],"span":[909,29,30]},{"path":[4,47,2,7],"span":[911,2,29]},{"path":[4,47,2,7,4],"span":[911,2,10]},{"path":[4,47,2,7,5],"span":[911,11,16]},{"path":[4,47,2,7,1],"span":[911,17,24]},{"path":[4,47,2,7,3],"span":[911,27,28]},{"path":[4,47,2,8],"span":[912,2,31]},{"path":[4,47,2,8,4],"span":[912,2,10]},{"path":[4,47,2,8,5],"span":[912,11,16]},{"path":[4,47,2,8,1],"span":[912,17,26]},{"path":[4,47,2,8,3],"span":[912,29,30]},{"path":[4,47,2,9],"span":[913,2,32]},{"path":[4,47,2,9,4],"span":[913,2,10]},{"path":[4,47,2,9,5],"span":[913,11,16]},{"path":[4,47,2,9,1],"span":[913,17,26]},{"path":[4,47,2,9,3],"span":[913,29,31]},{"path":[4,47,2,10],"span":[915,2,31]},{"path":[4,47,2,10,4],"span":[915,2,10]},{"path":[4,47,2,10,5],"span":[915,11,17]},{"path":[4,47,2,10,1],"span":[915,18,25]},{"path":[4,47,2,10,3],"span":[915,28,30]},{"path":[4,47,2,11],"span":[916,2,35]},{"path":[4,47,2,11,4],"span":[916,2,10]},{"path":[4,47,2,11,5],"span":[916,11,17]},{"path":[4,47,2,11,1],"span":[916,18,29]},{"path":[4,47,2,11,3],"span":[916,32,34]},{"path":[4,47,2,12],"span":[918,2,55]},{"path":[4,47,2,12,4],"span":[918,2,10]},{"path":[4,47,2,12,6],"span":[918,11,36]},{"path":[4,47,2,12,1],"span":[918,37,49]},{"path":[4,47,2,12,3],"span":[918,52,54]},{"path":[4,47,2,13],"span":[919,2,51]},{"path":[4,47,2,13,4],"span":[919,2,10]},{"path":[4,47,2,13,6],"span":[919,11,36]},{"path":[4,47,2,13,1],"span":[919,37,45]},{"path":[4,47,2,13,3],"span":[919,48,50]},{"path":[4,47,2,14],"span":[920,2,51]},{"path":[4,47,2,14,4],"span":[920,2,10]},{"path":[4,47,2,14,6],"span":[920,11,36]},{"path":[4,47,2,14,1],"span":[920,37,45]},{"path":[4,47,2,14,3],"span":[920,48,50]},{"path":[4,47,2,15],"span":[921,2,52]},{"path":[4,47,2,15,4],"span":[921,2,10]},{"path":[4,47,2,15,6],"span":[921,11,36]},{"path":[4,47,2,15,1],"span":[921,37,46]},{"path":[4,47,2,15,3],"span":[921,49,51]},{"path":[4,47,2,16],"span":[922,2,43]},{"path":[4,47,2,16,4],"span":[922,2,10]},{"path":[4,47,2,16,5],"span":[922,11,17]},{"path":[4,47,2,16,1],"span":[922,18,37]},{"path":[4,47,2,16,3],"span":[922,40,42]},{"path":[4,47,2,17],"span":[924,2,33]},{"path":[4,47,2,17,4],"span":[924,2,10]},{"path":[4,47,2,17,5],"span":[924,11,15]},{"path":[4,47,2,17,1],"span":[924,16,27]},{"path":[4,47,2,17,3],"span":[924,30,32]},{"path":[4,47,2,18],"span":[925,2,37]},{"path":[4,47,2,18,4],"span":[925,2,10]},{"path":[4,47,2,18,5],"span":[925,11,15]},{"path":[4,47,2,18,1],"span":[925,16,31]},{"path":[4,47,2,18,3],"span":[925,34,36]},{"path":[4,47,2,19],"span":[926,2,37]},{"path":[4,47,2,19,4],"span":[926,2,10]},{"path":[4,47,2,19,5],"span":[926,11,15]},{"path":[4,47,2,19,1],"span":[926,16,31]},{"path":[4,47,2,19,3],"span":[926,34,36]},{"path":[4,47,2,20],"span":[928,2,59]},{"path":[4,47,2,20,4],"span":[928,2,10]},{"path":[4,47,2,20,6],"span":[928,11,36]},{"path":[4,47,2,20,1],"span":[928,37,53]},{"path":[4,47,2,20,3],"span":[928,56,58]},{"path":[4,47,2,21],"span":[930,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,47,2,21,4],"span":[930,2,10]},{"path":[4,47,2,21,5],"span":[930,11,16]},{"path":[4,47,2,21,1],"span":[930,17,28]},{"path":[4,47,2,21,3],"span":[930,31,34]},{"path":[4,48],"span":[933,0,989,1]},{"path":[4,48,1],"span":[933,8,22]},{"path":[4,48,2,0],"span":[934,2,16]},{"path":[4,48,2,0,5],"span":[934,2,7]},{"path":[4,48,2,0,1],"span":[934,9,11]},{"path":[4,48,2,0,3],"span":[934,14,15]},{"path":[4,48,2,1],"span":[936,2,19]},{"path":[4,48,2,1,5],"span":[936,2,8]},{"path":[4,48,2,1,1],"span":[936,9,14]},{"path":[4,48,2,1,3],"span":[936,17,18]},{"path":[4,48,2,2],"span":[937,2,32]},{"path":[4,48,2,2,4],"span":[937,2,10]},{"path":[4,48,2,2,5],"span":[937,11,17]},{"path":[4,48,2,2,1],"span":[937,18,27]},{"path":[4,48,2,2,3],"span":[937,30,31]},{"path":[4,48,2,3],"span":[938,2,29]},{"path":[4,48,2,3,4],"span":[938,2,10]},{"path":[4,48,2,3,5],"span":[938,11,16]},{"path":[4,48,2,3,1],"span":[938,17,24]},{"path":[4,48,2,3,3],"span":[938,27,28]},{"path":[4,48,2,4],"span":[940,2,31]},{"path":[4,48,2,4,4],"span":[940,2,10]},{"path":[4,48,2,4,5],"span":[940,11,16]},{"path":[4,48,2,4,1],"span":[940,17,26]},{"path":[4,48,2,4,3],"span":[940,29,30]},{"path":[4,48,2,5],"span":[941,2,30]},{"path":[4,48,2,5,4],"span":[941,2,10]},{"path":[4,48,2,5,5],"span":[941,11,15]},{"path":[4,48,2,5,1],"span":[941,16,25]},{"path":[4,48,2,5,3],"span":[941,28,29]},{"path":[4,48,2,6],"span":[942,2,36]},{"path":[4,48,2,6,4],"span":[942,2,10]},{"path":[4,48,2,6,5],"span":[942,11,17]},{"path":[4,48,2,6,1],"span":[942,18,31]},{"path":[4,48,2,6,3],"span":[942,34,35]},{"path":[4,48,2,7],"span":[943,2,35]},{"path":[4,48,2,7,4],"span":[943,2,10]},{"path":[4,48,2,7,5],"span":[943,11,17]},{"path":[4,48,2,7,1],"span":[943,18,30]},{"path":[4,48,2,7,3],"span":[943,33,34]},{"path":[4,48,2,8],"span":[945,2,33]},{"path":[4,48,2,8,4],"span":[945,2,10]},{"path":[4,48,2,8,5],"span":[945,11,17]},{"path":[4,48,2,8,1],"span":[945,18,27]},{"path":[4,48,2,8,3],"span":[945,30,32]},{"path":[4,48,2,9],"span":[946,2,38]},{"path":[4,48,2,9,4],"span":[946,2,10]},{"path":[4,48,2,9,5],"span":[946,11,17]},{"path":[4,48,2,9,1],"span":[946,18,32]},{"path":[4,48,2,9,3],"span":[946,35,37]},{"path":[4,48,2,10],"span":[947,2,36]},{"path":[4,48,2,10,4],"span":[947,2,10]},{"path":[4,48,2,10,5],"span":[947,11,17]},{"path":[4,48,2,10,1],"span":[947,18,30]},{"path":[4,48,2,10,3],"span":[947,33,35]},{"path":[4,48,2,11],"span":[948,2,40]},{"path":[4,48,2,11,4],"span":[948,2,10]},{"path":[4,48,2,11,5],"span":[948,11,17]},{"path":[4,48,2,11,1],"span":[948,18,34]},{"path":[4,48,2,11,3],"span":[948,37,39]},{"path":[4,48,2,12],"span":[949,2,31]},{"path":[4,48,2,12,4],"span":[949,2,10]},{"path":[4,48,2,12,5],"span":[949,11,17]},{"path":[4,48,2,12,1],"span":[949,18,25]},{"path":[4,48,2,12,3],"span":[949,28,30]},{"path":[4,48,2,13],"span":[950,2,36]},{"path":[4,48,2,13,4],"span":[950,2,10]},{"path":[4,48,2,13,5],"span":[950,11,17]},{"path":[4,48,2,13,1],"span":[950,18,30]},{"path":[4,48,2,13,3],"span":[950,33,35]},{"path":[4,48,2,14],"span":[951,2,35]},{"path":[4,48,2,14,4],"span":[951,2,10]},{"path":[4,48,2,14,5],"span":[951,11,16]},{"path":[4,48,2,14,1],"span":[951,17,29]},{"path":[4,48,2,14,3],"span":[951,32,34]},{"path":[4,48,2,15],"span":[952,2,29]},{"path":[4,48,2,15,4],"span":[952,2,10]},{"path":[4,48,2,15,5],"span":[952,11,17]},{"path":[4,48,2,15,1],"span":[952,18,23]},{"path":[4,48,2,15,3],"span":[952,26,28]},{"path":[4,48,2,16],"span":[953,2,33]},{"path":[4,48,2,16,4],"span":[953,2,10]},{"path":[4,48,2,16,5],"span":[953,11,17]},{"path":[4,48,2,16,1],"span":[953,18,27]},{"path":[4,48,2,16,3],"span":[953,30,32]},{"path":[4,48,2,17],"span":[954,2,32]},{"path":[4,48,2,17,4],"span":[954,2,10]},{"path":[4,48,2,17,5],"span":[954,11,17]},{"path":[4,48,2,17,1],"span":[954,18,26]},{"path":[4,48,2,17,3],"span":[954,29,31]},{"path":[4,48,2,18],"span":[955,2,35]},{"path":[4,48,2,18,4],"span":[955,2,10]},{"path":[4,48,2,18,5],"span":[955,11,17]},{"path":[4,48,2,18,1],"span":[955,18,29]},{"path":[4,48,2,18,3],"span":[955,32,34]},{"path":[4,48,2,19],"span":[957,2,36]},{"path":[4,48,2,19,4],"span":[957,2,10]},{"path":[4,48,2,19,5],"span":[957,11,17]},{"path":[4,48,2,19,1],"span":[957,18,30]},{"path":[4,48,2,19,3],"span":[957,33,35]},{"path":[4,48,2,20],"span":[958,2,38]},{"path":[4,48,2,20,4],"span":[958,2,10]},{"path":[4,48,2,20,5],"span":[958,11,16]},{"path":[4,48,2,20,1],"span":[958,17,32]},{"path":[4,48,2,20,3],"span":[958,35,37]},{"path":[4,48,2,21],"span":[959,2,47]},{"path":[4,48,2,21,4],"span":[959,2,10]},{"path":[4,48,2,21,5],"span":[959,11,16]},{"path":[4,48,2,21,1],"span":[959,17,41]},{"path":[4,48,2,21,3],"span":[959,44,46]},{"path":[4,48,2,22],"span":[960,2,30]},{"path":[4,48,2,22,4],"span":[960,2,10]},{"path":[4,48,2,22,5],"span":[960,11,16]},{"path":[4,48,2,22,1],"span":[960,17,24]},{"path":[4,48,2,22,3],"span":[960,27,29]},{"path":[4,48,2,23],"span":[961,2,29]},{"path":[4,48,2,23,4],"span":[961,2,10]},{"path":[4,48,2,23,5],"span":[961,11,16]},{"path":[4,48,2,23,1],"span":[961,17,23]},{"path":[4,48,2,23,3],"span":[961,26,28]},{"path":[4,48,2,24],"span":[962,2,29]},{"path":[4,48,2,24,4],"span":[962,2,10]},{"path":[4,48,2,24,5],"span":[962,11,16]},{"path":[4,48,2,24,1],"span":[962,17,23]},{"path":[4,48,2,24,3],"span":[962,26,28]},{"path":[4,48,2,25],"span":[963,2,36]},{"path":[4,48,2,25,4],"span":[963,2,10]},{"path":[4,48,2,25,5],"span":[963,11,17]},{"path":[4,48,2,25,1],"span":[963,18,30]},{"path":[4,48,2,25,3],"span":[963,33,35]},{"path":[4,48,2,26],"span":[964,2,39]},{"path":[4,48,2,26,4],"span":[964,2,10]},{"path":[4,48,2,26,5],"span":[964,11,16]},{"path":[4,48,2,26,1],"span":[964,17,33]},{"path":[4,48,2,26,3],"span":[964,36,38]},{"path":[4,48,2,27],"span":[965,2,44]},{"path":[4,48,2,27,4],"span":[965,2,10]},{"path":[4,48,2,27,5],"span":[965,11,17]},{"path":[4,48,2,27,1],"span":[965,18,38]},{"path":[4,48,2,27,3],"span":[965,41,43]},{"path":[4,48,2,28],"span":[967,2,36]},{"path":[4,48,2,28,4],"span":[967,2,10]},{"path":[4,48,2,28,5],"span":[967,11,17]},{"path":[4,48,2,28,1],"span":[967,18,30]},{"path":[4,48,2,28,3],"span":[967,33,35]},{"path":[4,48,2,29],"span":[968,2,37]},{"path":[4,48,2,29,4],"span":[968,2,10]},{"path":[4,48,2,29,5],"span":[968,11,16]},{"path":[4,48,2,29,1],"span":[968,17,31]},{"path":[4,48,2,29,3],"span":[968,34,36]},{"path":[4,48,2,30],"span":[969,2,42]},{"path":[4,48,2,30,4],"span":[969,2,10]},{"path":[4,48,2,30,5],"span":[969,11,17]},{"path":[4,48,2,30,1],"span":[969,18,36]},{"path":[4,48,2,30,3],"span":[969,39,41]},{"path":[4,48,2,31],"span":[970,2,38]},{"path":[4,48,2,31,4],"span":[970,2,10]},{"path":[4,48,2,31,5],"span":[970,11,17]},{"path":[4,48,2,31,1],"span":[970,18,32]},{"path":[4,48,2,31,3],"span":[970,35,37]},{"path":[4,48,2,32],"span":[971,2,42]},{"path":[4,48,2,32,4],"span":[971,2,10]},{"path":[4,48,2,32,5],"span":[971,11,17]},{"path":[4,48,2,32,1],"span":[971,18,36]},{"path":[4,48,2,32,3],"span":[971,39,41]},{"path":[4,48,2,33],"span":[972,2,39]},{"path":[4,48,2,33,4],"span":[972,2,10]},{"path":[4,48,2,33,5],"span":[972,11,17]},{"path":[4,48,2,33,1],"span":[972,18,33]},{"path":[4,48,2,33,3],"span":[972,36,38]},{"path":[4,48,2,34],"span":[973,2,34]},{"path":[4,48,2,34,4],"span":[973,2,10]},{"path":[4,48,2,34,5],"span":[973,11,17]},{"path":[4,48,2,34,1],"span":[973,18,28]},{"path":[4,48,2,34,3],"span":[973,31,33]},{"path":[4,48,2,35],"span":[974,2,34]},{"path":[4,48,2,35,4],"span":[974,2,10]},{"path":[4,48,2,35,5],"span":[974,11,17]},{"path":[4,48,2,35,1],"span":[974,18,28]},{"path":[4,48,2,35,3],"span":[974,31,33]},{"path":[4,48,2,36],"span":[975,2,33]},{"path":[4,48,2,36,4],"span":[975,2,10]},{"path":[4,48,2,36,5],"span":[975,11,17]},{"path":[4,48,2,36,1],"span":[975,18,27]},{"path":[4,48,2,36,3],"span":[975,30,32]},{"path":[4,48,2,37],"span":[977,2,33]},{"path":[4,48,2,37,4],"span":[977,2,10]},{"path":[4,48,2,37,5],"span":[977,11,15]},{"path":[4,48,2,37,1],"span":[977,16,27]},{"path":[4,48,2,37,3],"span":[977,30,32]},{"path":[4,48,2,38],"span":[978,2,36]},{"path":[4,48,2,38,4],"span":[978,2,10]},{"path":[4,48,2,38,5],"span":[978,11,15]},{"path":[4,48,2,38,1],"span":[978,16,30]},{"path":[4,48,2,38,3],"span":[978,33,35]},{"path":[4,48,2,39],"span":[979,2,38]},{"path":[4,48,2,39,4],"span":[979,2,10]},{"path":[4,48,2,39,5],"span":[979,11,15]},{"path":[4,48,2,39,1],"span":[979,16,32]},{"path":[4,48,2,39,3],"span":[979,35,37]},{"path":[4,48,2,40],"span":[980,2,34]},{"path":[4,48,2,40,4],"span":[980,2,10]},{"path":[4,48,2,40,5],"span":[980,11,15]},{"path":[4,48,2,40,1],"span":[980,16,28]},{"path":[4,48,2,40,3],"span":[980,31,33]},{"path":[4,48,2,41],"span":[981,2,33]},{"path":[4,48,2,41,4],"span":[981,2,10]},{"path":[4,48,2,41,5],"span":[981,11,15]},{"path":[4,48,2,41,1],"span":[981,16,27]},{"path":[4,48,2,41,3],"span":[981,30,32]},{"path":[4,48,2,42],"span":[982,2,38]},{"path":[4,48,2,42,4],"span":[982,2,10]},{"path":[4,48,2,42,5],"span":[982,11,15]},{"path":[4,48,2,42,1],"span":[982,16,32]},{"path":[4,48,2,42,3],"span":[982,35,37]},{"path":[4,48,2,43],"span":[983,2,36]},{"path":[4,48,2,43,4],"span":[983,2,10]},{"path":[4,48,2,43,5],"span":[983,11,15]},{"path":[4,48,2,43,1],"span":[983,16,30]},{"path":[4,48,2,43,3],"span":[983,33,35]},{"path":[4,48,2,44],"span":[985,2,59]},{"path":[4,48,2,44,4],"span":[985,2,10]},{"path":[4,48,2,44,6],"span":[985,11,36]},{"path":[4,48,2,44,1],"span":[985,37,53]},{"path":[4,48,2,44,3],"span":[985,56,58]},{"path":[4,48,2,45],"span":[987,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,48,2,45,4],"span":[987,2,10]},{"path":[4,48,2,45,5],"span":[987,11,16]},{"path":[4,48,2,45,1],"span":[987,17,28]},{"path":[4,48,2,45,3],"span":[987,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":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":2,"jsonName":"os","proto3Optional":true},{"name":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":3,"jsonName":"softwareInventory","proto3Optional":true},{"name":"antivirus","number":26,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AntivirusSoftware","jsonName":"antivirus"},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":4,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":5,"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":6,"jsonName":"chassis","proto3Optional":true},{"name":"memory","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":7,"jsonName":"memory","proto3Optional":true},{"name":"motherboard","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":8,"jsonName":"motherboard","proto3Optional":true},{"name":"optical_drive","number":24,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OpticalDrive","jsonName":"opticalDrive"},{"name":"hard_drive","number":25,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardDrive","jsonName":"hardDrive"},{"name":"graphics_card","number":27,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.GraphicsCard","jsonName":"graphicsCard"},{"name":"keyboard","number":28,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Keyboard","jsonName":"keyboard"},{"name":"pointing_device","number":29,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PointingDevice","jsonName":"pointingDevice"},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":9,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":10,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_unique_key"},{"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":"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":"OperatingSystem","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true},{"name":"build","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"rank","proto3Optional":true},{"name":"windows","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"},{"name":"mac","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacOperatingSystemInfo","oneofIndex":0,"jsonName":"mac"},{"name":"linux","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LinuxOperatingSystemInfo","oneofIndex":0,"jsonName":"linux"}],"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":"MacOperatingSystemInfo","field":[{"name":"kernel_caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelCaption","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_caption"}]},{"name":"LinuxOperatingSystemInfo","field":[{"name":"kernel_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelName","proto3Optional":true},{"name":"kernel_release","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"kernelRelease","proto3Optional":true},{"name":"kernel_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"kernelVersion","proto3Optional":true},{"name":"distribution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"distribution","proto3Optional":true},{"name":"os_release","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"osRelease","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_name"},{"name":"_kernel_release"},{"name":"_kernel_version"},{"name":"_distribution"},{"name":"_os_release"}]},{"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":"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":"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":"HardDrive","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"compressed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"compressed","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"drive_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"driveType","proto3Optional":true},{"name":"file_system","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fileSystem","proto3Optional":true},{"name":"free_space","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"freeSpace","proto3Optional":true},{"name":"size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"size","proto3Optional":true},{"name":"volume_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"volumeName","proto3Optional":true},{"name":"serial_number","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"serialNumber","proto3Optional":true},{"name":"mounted_on","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"mountedOn","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_compressed"},{"name":"_description"},{"name":"_device_id"},{"name":"_drive_type"},{"name":"_file_system"},{"name":"_free_space"},{"name":"_size"},{"name":"_volume_name"},{"name":"_serial_number"},{"name":"_mounted_on"}]},{"name":"Keyboard","field":[{"name":"config_manager_error_code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"layout","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"layout","proto3Optional":true},{"name":"number_of_function_keys","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"numberOfFunctionKeys","proto3Optional":true}],"oneofDecl":[{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_description"},{"name":"_device_id"},{"name":"_layout"},{"name":"_number_of_function_keys"}]},{"name":"PointingDevice","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"device_interface","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"deviceInterface","proto3Optional":true},{"name":"double_speed_threshold","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"doubleSpeedThreshold","proto3Optional":true},{"name":"handedness","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"handedness","proto3Optional":true},{"name":"inf_file_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"infFileName","proto3Optional":true},{"name":"inf_section","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"infSection","proto3Optional":true},{"name":"manufacturer","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturer","proto3Optional":true},{"name":"number_of_buttons","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"numberOfButtons","proto3Optional":true},{"name":"pointing_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":9,"jsonName":"pointingType","proto3Optional":true},{"name":"quad_speed_threshold","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"quadSpeedThreshold","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_device_interface"},{"name":"_double_speed_threshold"},{"name":"_handedness"},{"name":"_inf_file_name"},{"name":"_inf_section"},{"name":"_manufacturer"},{"name":"_number_of_buttons"},{"name":"_pointing_type"},{"name":"_quad_speed_threshold"}]},{"name":"GraphicsCard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"color_planes_count","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"colorPlanesCount","proto3Optional":true},{"name":"current_bits_per_pixel","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"currentBitsPerPixel","proto3Optional":true},{"name":"current_horizontal_resolution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"currentHorizontalResolution","proto3Optional":true},{"name":"current_number_of_colors","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"currentNumberOfColors","proto3Optional":true},{"name":"current_refresh_rate","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"currentRefreshRate","proto3Optional":true},{"name":"current_scan_mode","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"currentScanMode","proto3Optional":true},{"name":"current_vertical_resolution","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentVerticalResolution","proto3Optional":true},{"name":"device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"deviceId","proto3Optional":true},{"name":"device_specific_pens","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"driver_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"driverVersion","proto3Optional":true},{"name":"inf_filename","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"infFilename","proto3Optional":true},{"name":"inf_section","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"infSection","proto3Optional":true},{"name":"installed_display_drivers","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"installedDisplayDrivers","proto3Optional":true},{"name":"is_monochrome","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"isMonochrome","proto3Optional":true},{"name":"manufacturer","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_refresh_rate","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"maxRefreshRate","proto3Optional":true},{"name":"memory","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"memory","proto3Optional":true},{"name":"memory_type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":18,"jsonName":"memoryType","proto3Optional":true},{"name":"min_refresh_rate","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"minRefreshRate","proto3Optional":true},{"name":"pci_type","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"pciType","proto3Optional":true},{"name":"pnp_device_id","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"state","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":22,"jsonName":"state","proto3Optional":true},{"name":"subsystem_manufacturer","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":23,"jsonName":"subsystemManufacturer","proto3Optional":true},{"name":"subsystem_name","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"subsystemName","proto3Optional":true},{"name":"video_architecture","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"videoArchitecture","proto3Optional":true},{"name":"video_mode","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"videoMode","proto3Optional":true},{"name":"video_processor","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"videoProcessor","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_color_planes_count"},{"name":"_current_bits_per_pixel"},{"name":"_current_horizontal_resolution"},{"name":"_current_number_of_colors"},{"name":"_current_refresh_rate"},{"name":"_current_scan_mode"},{"name":"_current_vertical_resolution"},{"name":"_device_id"},{"name":"_device_specific_pens"},{"name":"_driver_version"},{"name":"_inf_filename"},{"name":"_inf_section"},{"name":"_installed_display_drivers"},{"name":"_is_monochrome"},{"name":"_manufacturer"},{"name":"_max_refresh_rate"},{"name":"_memory"},{"name":"_memory_type"},{"name":"_min_refresh_rate"},{"name":"_pci_type"},{"name":"_pnp_device_id"},{"name":"_state"},{"name":"_subsystem_manufacturer"},{"name":"_subsystem_name"},{"name":"_video_architecture"},{"name":"_video_mode"},{"name":"_video_processor"}]},{"name":"OpticalDrive","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"status","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"status","proto3Optional":true},{"name":"bus","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bus","proto3Optional":true},{"name":"capabilities","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"capabilities"},{"name":"cache_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"cacheSize","proto3Optional":true},{"name":"burn_support","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"burnSupport","proto3Optional":true},{"name":"cd_write","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"cdWrite","proto3Optional":true},{"name":"dvd_write","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dvdWrite","proto3Optional":true},{"name":"read_dvd","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"readDvd","proto3Optional":true},{"name":"drive_path","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"drivePath","proto3Optional":true},{"name":"firmware_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"firmwareVersion","proto3Optional":true},{"name":"connection","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"connection","proto3Optional":true},{"name":"is_underrun_protection_enabled","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"isUnderrunProtectionEnabled","proto3Optional":true},{"name":"manufacturer","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"manufacturer","proto3Optional":true},{"name":"mount_point","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"mountPoint","proto3Optional":true},{"name":"write_strategies","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"writeStrategies","proto3Optional":true},{"name":"scsi_bus","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"scsiBus","proto3Optional":true},{"name":"scsi_logical_unit","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"scsiLogicalUnit","proto3Optional":true},{"name":"scsi_port","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"scsiPort","proto3Optional":true},{"name":"scsi_target_id","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"scsiTargetId","proto3Optional":true},{"name":"media_burn_information","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"mediaBurnInformation","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_status"},{"name":"_bus"},{"name":"_cache_size"},{"name":"_burn_support"},{"name":"_cd_write"},{"name":"_dvd_write"},{"name":"_read_dvd"},{"name":"_drive_path"},{"name":"_firmware_version"},{"name":"_connection"},{"name":"_is_underrun_protection_enabled"},{"name":"_manufacturer"},{"name":"_mount_point"},{"name":"_write_strategies"},{"name":"_scsi_bus"},{"name":"_scsi_logical_unit"},{"name":"_scsi_port"},{"name":"_scsi_target_id"},{"name":"_media_burn_information"}]},{"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":"AntivirusSoftware","field":[{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"guid","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"guid","proto3Optional":true},{"name":"enabled","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"enabled","proto3Optional":true},{"name":"up_to_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"upToDate","proto3Optional":true},{"name":"software","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","oneofIndex":4,"jsonName":"software","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_guid"},{"name":"_enabled"},{"name":"_up_to_date"},{"name":"_software"}]},{"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,1020,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,148,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,34]},{"path":[4,8,2,10,4],"span":[116,2,10]},{"path":[4,8,2,10,6],"span":[116,11,26]},{"path":[4,8,2,10,1],"span":[116,27,29]},{"path":[4,8,2,10,3],"span":[116,32,33]},{"path":[4,8,2,11],"span":[118,2,52]},{"path":[4,8,2,11,4],"span":[118,2,10]},{"path":[4,8,2,11,6],"span":[118,11,28]},{"path":[4,8,2,11,1],"span":[118,29,47]},{"path":[4,8,2,11,3],"span":[118,50,51]},{"path":[4,8,2,12],"span":[119,2,44]},{"path":[4,8,2,12,4],"span":[119,2,10]},{"path":[4,8,2,12,6],"span":[119,11,28]},{"path":[4,8,2,12,1],"span":[119,29,38]},{"path":[4,8,2,12,3],"span":[119,41,43]},{"path":[4,8,2,13],"span":[121,2,51]},{"path":[4,8,2,13,4],"span":[121,2,10]},{"path":[4,8,2,13,6],"span":[121,11,27]},{"path":[4,8,2,13,1],"span":[121,28,45]},{"path":[4,8,2,13,3],"span":[121,48,50]},{"path":[4,8,2,14],"span":[123,2,53]},{"path":[4,8,2,14,4],"span":[123,2,10]},{"path":[4,8,2,14,6],"span":[123,11,28]},{"path":[4,8,2,14,1],"span":[123,29,47]},{"path":[4,8,2,14,3],"span":[123,50,52]},{"path":[4,8,2,15],"span":[125,2,46]},{"path":[4,8,2,15,4],"span":[125,2,10]},{"path":[4,8,2,15,6],"span":[125,11,31]},{"path":[4,8,2,15,1],"span":[125,32,40]},{"path":[4,8,2,15,3],"span":[125,43,45]},{"path":[4,8,2,16],"span":[127,2,36]},{"path":[4,8,2,16,4],"span":[127,2,10]},{"path":[4,8,2,16,6],"span":[127,11,20]},{"path":[4,8,2,16,1],"span":[127,21,30]},{"path":[4,8,2,16,3],"span":[127,33,35]},{"path":[4,8,2,17],"span":[128,2,32]},{"path":[4,8,2,17,4],"span":[128,2,10]},{"path":[4,8,2,17,6],"span":[128,11,18]},{"path":[4,8,2,17,1],"span":[128,19,26]},{"path":[4,8,2,17,3],"span":[128,29,31]},{"path":[4,8,2,18],"span":[129,2,30]},{"path":[4,8,2,18,4],"span":[129,2,10]},{"path":[4,8,2,18,6],"span":[129,11,17]},{"path":[4,8,2,18,1],"span":[129,18,24]},{"path":[4,8,2,18,3],"span":[129,27,29]},{"path":[4,8,2,19],"span":[130,2,40]},{"path":[4,8,2,19,4],"span":[130,2,10]},{"path":[4,8,2,19,6],"span":[130,11,22]},{"path":[4,8,2,19,1],"span":[130,23,34]},{"path":[4,8,2,19,3],"span":[130,37,39]},{"path":[4,8,2,20],"span":[131,2,43]},{"path":[4,8,2,20,4],"span":[131,2,10]},{"path":[4,8,2,20,6],"span":[131,11,23]},{"path":[4,8,2,20,1],"span":[131,24,37]},{"path":[4,8,2,20,3],"span":[131,40,42]},{"path":[4,8,2,21],"span":[132,2,37]},{"path":[4,8,2,21,4],"span":[132,2,10]},{"path":[4,8,2,21,6],"span":[132,11,20]},{"path":[4,8,2,21,1],"span":[132,21,31]},{"path":[4,8,2,21,3],"span":[132,34,36]},{"path":[4,8,2,22],"span":[133,2,43]},{"path":[4,8,2,22,4],"span":[133,2,10]},{"path":[4,8,2,22,6],"span":[133,11,23]},{"path":[4,8,2,22,1],"span":[133,24,37]},{"path":[4,8,2,22,3],"span":[133,40,42]},{"path":[4,8,2,23],"span":[134,2,34]},{"path":[4,8,2,23,4],"span":[134,2,10]},{"path":[4,8,2,23,6],"span":[134,11,19]},{"path":[4,8,2,23,1],"span":[134,20,28]},{"path":[4,8,2,23,3],"span":[134,31,33]},{"path":[4,8,2,24],"span":[135,2,47]},{"path":[4,8,2,24,4],"span":[135,2,10]},{"path":[4,8,2,24,6],"span":[135,11,25]},{"path":[4,8,2,24,1],"span":[135,26,41]},{"path":[4,8,2,24,3],"span":[135,44,46]},{"path":[4,8,2,25],"span":[137,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,25,4],"span":[137,2,10]},{"path":[4,8,2,25,6],"span":[137,11,19]},{"path":[4,8,2,25,1],"span":[137,20,29]},{"path":[4,8,2,25,3],"span":[137,32,34]},{"path":[4,8,2,26],"span":[139,2,34]},{"path":[4,8,2,26,4],"span":[139,2,10]},{"path":[4,8,2,26,6],"span":[139,11,22]},{"path":[4,8,2,26,1],"span":[139,23,28]},{"path":[4,8,2,26,3],"span":[139,31,33]},{"path":[4,9],"span":[166,0,169,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":[166,8,11]},{"path":[4,9,2,0],"span":[167,2,17]},{"path":[4,9,2,0,5],"span":[167,2,8]},{"path":[4,9,2,0,1],"span":[167,9,12]},{"path":[4,9,2,0,3],"span":[167,15,16]},{"path":[4,9,2,1],"span":[168,2,28]},{"path":[4,9,2,1,4],"span":[168,2,10]},{"path":[4,9,2,1,5],"span":[168,11,17]},{"path":[4,9,2,1,1],"span":[168,18,23]},{"path":[4,9,2,1,3],"span":[168,26,27]},{"path":[4,10],"span":[176,0,183,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":[176,8,16]},{"path":[4,10,2,0],"span":[177,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,0,4],"span":[177,2,10]},{"path":[4,10,2,0,6],"span":[177,11,21]},{"path":[4,10,2,0,1],"span":[177,22,26]},{"path":[4,10,2,0,3],"span":[177,29,30]},{"path":[4,10,2,1],"span":[178,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,1,4],"span":[178,2,10]},{"path":[4,10,2,1,6],"span":[178,11,21]},{"path":[4,10,2,1,1],"span":[178,22,24]},{"path":[4,10,2,1,3],"span":[178,27,28]},{"path":[4,10,2,2],"span":[179,2,38]},{"path":[4,10,2,2,6],"span":[179,2,27]},{"path":[4,10,2,2,1],"span":[179,28,33]},{"path":[4,10,2,2,3],"span":[179,36,37]},{"path":[4,10,2,3],"span":[180,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,10,2,3,4],"span":[180,2,10]},{"path":[4,10,2,3,6],"span":[180,11,36]},{"path":[4,10,2,3,1],"span":[180,37,40]},{"path":[4,10,2,3,3],"span":[180,43,44]},{"path":[4,10,2,4],"span":[181,2,18]},{"path":[4,10,2,4,5],"span":[181,2,8]},{"path":[4,10,2,4,1],"span":[181,9,13]},{"path":[4,10,2,4,3],"span":[181,16,17]},{"path":[4,10,2,5],"span":[182,2,23]},{"path":[4,10,2,5,4],"span":[182,2,10]},{"path":[4,10,2,5,6],"span":[182,11,14]},{"path":[4,10,2,5,1],"span":[182,15,18]},{"path":[4,10,2,5,3],"span":[182,21,22]},{"path":[4,11],"span":[193,0,195,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":[193,8,19]},{"path":[4,11,2,0],"span":[194,2,31]},{"path":[4,11,2,0,6],"span":[194,2,21]},{"path":[4,11,2,0,1],"span":[194,22,26]},{"path":[4,11,2,0,3],"span":[194,29,30]},{"path":[4,12],"span":[205,0,219,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":[205,8,16]},{"path":[4,12,2,0],"span":[206,2,24]},{"path":[4,12,2,0,5],"span":[206,2,7]},{"path":[4,12,2,0,1],"span":[206,8,19]},{"path":[4,12,2,0,3],"span":[206,22,23]},{"path":[4,12,2,1],"span":[207,2,23]},{"path":[4,12,2,1,5],"span":[207,2,8]},{"path":[4,12,2,1,1],"span":[207,9,18]},{"path":[4,12,2,1,3],"span":[207,21,22]},{"path":[4,12,2,2],"span":[208,2,22]},{"path":[4,12,2,2,5],"span":[208,2,7]},{"path":[4,12,2,2,1],"span":[208,8,17]},{"path":[4,12,2,2,3],"span":[208,20,21]},{"path":[4,12,2,3],"span":[209,2,17]},{"path":[4,12,2,3,5],"span":[209,2,7]},{"path":[4,12,2,3,1],"span":[209,8,12]},{"path":[4,12,2,3,3],"span":[209,15,16]},{"path":[4,12,2,4],"span":[210,2,23]},{"path":[4,12,2,4,5],"span":[210,2,7]},{"path":[4,12,2,4,1],"span":[210,8,18]},{"path":[4,12,2,4,3],"span":[210,21,22]},{"path":[4,12,2,5],"span":[212,2,26]},{"path":[4,12,2,5,5],"span":[212,2,6]},{"path":[4,12,2,5,1],"span":[212,7,21]},{"path":[4,12,2,5,3],"span":[212,24,25]},{"path":[4,12,2,6],"span":[214,2,37]},{"path":[4,12,2,6,4],"span":[214,2,10]},{"path":[4,12,2,6,5],"span":[214,11,17]},{"path":[4,12,2,6,1],"span":[214,18,32]},{"path":[4,12,2,6,3],"span":[214,35,36]},{"path":[4,12,2,7],"span":[216,2,34]},{"path":[4,12,2,7,4],"span":[216,2,10]},{"path":[4,12,2,7,5],"span":[216,11,17]},{"path":[4,12,2,7,1],"span":[216,18,29]},{"path":[4,12,2,7,3],"span":[216,32,33]},{"path":[4,12,2,8],"span":[218,2,40]},{"path":[4,12,2,8,4],"span":[218,2,10]},{"path":[4,12,2,8,6],"span":[218,11,26]},{"path":[4,12,2,8,1],"span":[218,27,35]},{"path":[4,12,2,8,3],"span":[218,38,39]},{"path":[4,13],"span":[221,0,224,1]},{"path":[4,13,1],"span":[221,8,23]},{"path":[4,13,2,0],"span":[222,2,17]},{"path":[4,13,2,0,5],"span":[222,2,8]},{"path":[4,13,2,0,1],"span":[222,9,12]},{"path":[4,13,2,0,3],"span":[222,15,16]},{"path":[4,13,2,1],"span":[223,2,19]},{"path":[4,13,2,1,5],"span":[223,2,8]},{"path":[4,13,2,1,1],"span":[223,9,14]},{"path":[4,13,2,1,3],"span":[223,17,18]},{"path":[4,14],"span":[230,0,239,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":[230,8,17]},{"path":[4,14,2,0],"span":[232,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":[232,2,8]},{"path":[4,14,2,0,1],"span":[232,9,16]},{"path":[4,14,2,0,3],"span":[232,19,20]},{"path":[4,14,2,1],"span":[234,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,14,2,1,5],"span":[234,2,7]},{"path":[4,14,2,1,1],"span":[234,8,13]},{"path":[4,14,2,1,3],"span":[234,16,17]},{"path":[4,14,2,2],"span":[236,2,32],"leadingComments":" Fing Type\n"},{"path":[4,14,2,2,4],"span":[236,2,10]},{"path":[4,14,2,2,5],"span":[236,11,17]},{"path":[4,14,2,2,1],"span":[236,18,27]},{"path":[4,14,2,2,3],"span":[236,30,31]},{"path":[4,14,2,3],"span":[238,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,14,2,3,4],"span":[238,2,10]},{"path":[4,14,2,3,5],"span":[238,11,17]},{"path":[4,14,2,3,1],"span":[238,18,26]},{"path":[4,14,2,3,3],"span":[238,29,30]},{"path":[4,15],"span":[244,0,253,1],"leadingComments":"\n\n"},{"path":[4,15,1],"span":[244,8,18]},{"path":[4,15,2,0],"span":[245,2,21]},{"path":[4,15,2,0,6],"span":[245,2,11]},{"path":[4,15,2,0,1],"span":[245,12,16]},{"path":[4,15,2,0,3],"span":[245,19,20]},{"path":[4,15,2,1],"span":[246,2,18]},{"path":[4,15,2,1,5],"span":[246,2,8]},{"path":[4,15,2,1,1],"span":[246,9,13]},{"path":[4,15,2,1,3],"span":[246,16,17]},{"path":[4,15,2,2],"span":[247,2,29]},{"path":[4,15,2,2,4],"span":[247,2,10]},{"path":[4,15,2,2,5],"span":[247,11,17]},{"path":[4,15,2,2,1],"span":[247,18,24]},{"path":[4,15,2,2,3],"span":[247,27,28]},{"path":[4,15,2,3],"span":[248,2,33]},{"path":[4,15,2,3,4],"span":[248,2,10]},{"path":[4,15,2,3,5],"span":[248,11,17]},{"path":[4,15,2,3,1],"span":[248,18,28]},{"path":[4,15,2,3,3],"span":[248,31,32]},{"path":[4,15,2,4],"span":[249,2,29]},{"path":[4,15,2,4,4],"span":[249,2,10]},{"path":[4,15,2,4,5],"span":[249,11,17]},{"path":[4,15,2,4,1],"span":[249,18,24]},{"path":[4,15,2,4,3],"span":[249,27,28]},{"path":[4,15,2,5],"span":[250,2,26]},{"path":[4,15,2,5,4],"span":[250,2,10]},{"path":[4,15,2,5,5],"span":[250,11,17]},{"path":[4,15,2,5,1],"span":[250,18,21]},{"path":[4,15,2,5,3],"span":[250,24,25]},{"path":[4,15,2,6],"span":[251,2,33]},{"path":[4,15,2,6,4],"span":[251,2,10]},{"path":[4,15,2,6,5],"span":[251,11,17]},{"path":[4,15,2,6,1],"span":[251,18,28]},{"path":[4,15,2,6,3],"span":[251,31,32]},{"path":[4,15,2,7],"span":[252,2,32]},{"path":[4,15,2,7,4],"span":[252,2,10]},{"path":[4,15,2,7,5],"span":[252,11,17]},{"path":[4,15,2,7,1],"span":[252,18,27]},{"path":[4,15,2,7,3],"span":[252,30,31]},{"path":[4,16],"span":[255,0,285,1]},{"path":[4,16,1],"span":[255,8,20]},{"path":[4,16,2,0],"span":[256,2,29]},{"path":[4,16,2,0,4],"span":[256,2,10]},{"path":[4,16,2,0,5],"span":[256,11,16]},{"path":[4,16,2,0,1],"span":[256,17,24]},{"path":[4,16,2,0,3],"span":[256,27,28]},{"path":[4,16,2,1],"span":[259,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,16,2,1,4],"span":[259,2,10]},{"path":[4,16,2,1,5],"span":[259,11,16]},{"path":[4,16,2,1,1],"span":[259,17,24]},{"path":[4,16,2,1,3],"span":[259,27,28]},{"path":[4,16,2,2],"span":[262,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,16,2,2,4],"span":[262,2,10]},{"path":[4,16,2,2,5],"span":[262,11,16]},{"path":[4,16,2,2,1],"span":[262,17,25]},{"path":[4,16,2,2,3],"span":[262,28,29]},{"path":[4,16,2,3],"span":[265,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,16,2,3,4],"span":[265,2,10]},{"path":[4,16,2,3,5],"span":[265,11,16]},{"path":[4,16,2,3,1],"span":[265,17,26]},{"path":[4,16,2,3,3],"span":[265,29,30]},{"path":[4,16,2,4],"span":[267,2,30]},{"path":[4,16,2,4,4],"span":[267,2,10]},{"path":[4,16,2,4,5],"span":[267,11,15]},{"path":[4,16,2,4,1],"span":[267,16,25]},{"path":[4,16,2,4,3],"span":[267,28,29]},{"path":[4,16,2,5],"span":[268,2,29]},{"path":[4,16,2,5,4],"span":[268,2,10]},{"path":[4,16,2,5,5],"span":[268,11,17]},{"path":[4,16,2,5,1],"span":[268,18,24]},{"path":[4,16,2,5,3],"span":[268,27,28]},{"path":[4,16,2,6],"span":[269,2,33]},{"path":[4,16,2,6,4],"span":[269,2,10]},{"path":[4,16,2,6,5],"span":[269,11,17]},{"path":[4,16,2,6,1],"span":[269,18,27]},{"path":[4,16,2,6,3],"span":[269,30,32]},{"path":[4,16,2,7],"span":[270,2,33]},{"path":[4,16,2,7,4],"span":[270,2,10]},{"path":[4,16,2,7,5],"span":[270,11,17]},{"path":[4,16,2,7,1],"span":[270,18,27]},{"path":[4,16,2,7,3],"span":[270,30,32]},{"path":[4,16,2,8],"span":[271,2,34]},{"path":[4,16,2,8,4],"span":[271,2,10]},{"path":[4,16,2,8,5],"span":[271,11,17]},{"path":[4,16,2,8,1],"span":[271,18,28]},{"path":[4,16,2,8,3],"span":[271,31,33]},{"path":[4,16,2,9],"span":[272,2,35]},{"path":[4,16,2,9,4],"span":[272,2,10]},{"path":[4,16,2,9,5],"span":[272,11,17]},{"path":[4,16,2,9,1],"span":[272,18,29]},{"path":[4,16,2,9,3],"span":[272,32,34]},{"path":[4,16,2,10],"span":[274,2,27]},{"path":[4,16,2,10,4],"span":[274,2,10]},{"path":[4,16,2,10,5],"span":[274,11,17]},{"path":[4,16,2,10,1],"span":[274,18,21]},{"path":[4,16,2,10,3],"span":[274,24,26]},{"path":[4,16,2,11],"span":[275,2,27]},{"path":[4,16,2,11,4],"span":[275,2,10]},{"path":[4,16,2,11,5],"span":[275,11,16]},{"path":[4,16,2,11,1],"span":[275,17,21]},{"path":[4,16,2,11,3],"span":[275,24,26]},{"path":[4,16,2,12],"span":[277,2,38]},{"path":[4,16,2,12,4],"span":[277,2,10]},{"path":[4,16,2,12,6],"span":[277,11,27]},{"path":[4,16,2,12,1],"span":[277,28,32]},{"path":[4,16,2,12,3],"span":[277,35,37]},{"path":[4,16,2,13],"span":[280,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,13,4],"span":[280,2,10]},{"path":[4,16,2,13,6],"span":[280,11,23]},{"path":[4,16,2,13,1],"span":[280,24,37]},{"path":[4,16,2,13,3],"span":[280,40,42]},{"path":[4,16,2,14],"span":[282,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,14,4],"span":[282,2,10]},{"path":[4,16,2,14,6],"span":[282,11,23]},{"path":[4,16,2,14,1],"span":[282,24,37]},{"path":[4,16,2,14,3],"span":[282,40,42]},{"path":[4,16,2,15],"span":[284,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,16,2,15,4],"span":[284,2,10]},{"path":[4,16,2,15,6],"span":[284,11,23]},{"path":[4,16,2,15,1],"span":[284,24,38]},{"path":[4,16,2,15,3],"span":[284,41,43]},{"path":[4,17],"span":[287,0,292,1]},{"path":[4,17,1],"span":[287,8,24]},{"path":[4,17,2,0],"span":[288,2,35]},{"path":[4,17,2,0,4],"span":[288,2,10]},{"path":[4,17,2,0,5],"span":[288,11,17]},{"path":[4,17,2,0,1],"span":[288,18,30]},{"path":[4,17,2,0,3],"span":[288,33,34]},{"path":[4,17,2,1],"span":[289,2,28]},{"path":[4,17,2,1,4],"span":[289,2,10]},{"path":[4,17,2,1,5],"span":[289,11,17]},{"path":[4,17,2,1,1],"span":[289,18,23]},{"path":[4,17,2,1,3],"span":[289,26,27]},{"path":[4,17,2,2],"span":[290,2,35]},{"path":[4,17,2,2,4],"span":[290,2,10]},{"path":[4,17,2,2,5],"span":[290,11,17]},{"path":[4,17,2,2,1],"span":[290,18,30]},{"path":[4,17,2,2,3],"span":[290,33,34]},{"path":[4,17,2,3],"span":[291,2,36]},{"path":[4,17,2,3,4],"span":[291,2,10]},{"path":[4,17,2,3,5],"span":[291,11,17]},{"path":[4,17,2,3,1],"span":[291,18,31]},{"path":[4,17,2,3,3],"span":[291,34,35]},{"path":[4,18],"span":[296,0,319,1]},{"path":[4,18,1],"span":[296,8,23]},{"path":[4,18,2,0],"span":[298,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,18,2,0,4],"span":[298,2,10]},{"path":[4,18,2,0,5],"span":[298,11,16]},{"path":[4,18,2,0,1],"span":[298,17,19]},{"path":[4,18,2,0,3],"span":[298,22,23]},{"path":[4,18,2,1],"span":[301,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,18,2,1,4],"span":[301,2,10]},{"path":[4,18,2,1,5],"span":[301,11,16]},{"path":[4,18,2,1,1],"span":[301,17,24]},{"path":[4,18,2,1,3],"span":[301,27,29]},{"path":[4,18,2,2],"span":[303,2,27]},{"path":[4,18,2,2,4],"span":[303,2,10]},{"path":[4,18,2,2,5],"span":[303,11,17]},{"path":[4,18,2,2,1],"span":[303,18,22]},{"path":[4,18,2,2,3],"span":[303,25,26]},{"path":[4,18,2,3],"span":[304,2,30]},{"path":[4,18,2,3,4],"span":[304,2,10]},{"path":[4,18,2,3,5],"span":[304,11,17]},{"path":[4,18,2,3,1],"span":[304,18,25]},{"path":[4,18,2,3,3],"span":[304,28,29]},{"path":[4,18,2,4],"span":[305,2,28]},{"path":[4,18,2,4,4],"span":[305,2,10]},{"path":[4,18,2,4,5],"span":[305,11,17]},{"path":[4,18,2,4,1],"span":[305,18,23]},{"path":[4,18,2,4,3],"span":[305,26,27]},{"path":[4,18,2,5],"span":[307,2,33]},{"path":[4,18,2,5,4],"span":[307,2,10]},{"path":[4,18,2,5,5],"span":[307,11,17]},{"path":[4,18,2,5,1],"span":[307,18,28]},{"path":[4,18,2,5,3],"span":[307,31,32]},{"path":[4,18,2,6],"span":[309,2,26]},{"path":[4,18,2,6,4],"span":[309,2,10]},{"path":[4,18,2,6,5],"span":[309,11,17]},{"path":[4,18,2,6,1],"span":[309,18,21]},{"path":[4,18,2,6,3],"span":[309,24,25]},{"path":[4,18,2,7],"span":[310,2,29]},{"path":[4,18,2,7,4],"span":[310,2,10]},{"path":[4,18,2,7,5],"span":[310,11,17]},{"path":[4,18,2,7,1],"span":[310,18,24]},{"path":[4,18,2,7,3],"span":[310,27,28]},{"path":[4,18,2,8],"span":[312,2,26]},{"path":[4,18,2,8,4],"span":[312,2,10]},{"path":[4,18,2,8,5],"span":[312,11,16]},{"path":[4,18,2,8,1],"span":[312,17,21]},{"path":[4,18,2,8,3],"span":[312,24,25]},{"path":[4,18,8,0],"span":[314,2,318,3]},{"path":[4,18,8,0,1],"span":[314,8,12]},{"path":[4,18,2,9],"span":[315,4,44]},{"path":[4,18,2,9,6],"span":[315,4,30]},{"path":[4,18,2,9,1],"span":[315,31,38]},{"path":[4,18,2,9,3],"span":[315,41,43]},{"path":[4,18,2,10],"span":[316,4,36]},{"path":[4,18,2,10,6],"span":[316,4,26]},{"path":[4,18,2,10,1],"span":[316,27,30]},{"path":[4,18,2,10,3],"span":[316,33,35]},{"path":[4,18,2,11],"span":[317,4,40]},{"path":[4,18,2,11,6],"span":[317,4,28]},{"path":[4,18,2,11,1],"span":[317,29,34]},{"path":[4,18,2,11,3],"span":[317,37,39]},{"path":[4,19],"span":[321,0,323,1]},{"path":[4,19,1],"span":[321,8,30]},{"path":[4,19,2,0],"span":[322,2,37]},{"path":[4,19,2,0,4],"span":[322,2,10]},{"path":[4,19,2,0,5],"span":[322,11,17]},{"path":[4,19,2,0,1],"span":[322,18,32]},{"path":[4,19,2,0,3],"span":[322,35,36]},{"path":[4,20],"span":[325,0,331,1]},{"path":[4,20,1],"span":[325,8,32]},{"path":[4,20,2,0],"span":[326,2,34]},{"path":[4,20,2,0,4],"span":[326,2,10]},{"path":[4,20,2,0,5],"span":[326,11,17]},{"path":[4,20,2,0,1],"span":[326,18,29]},{"path":[4,20,2,0,3],"span":[326,32,33]},{"path":[4,20,2,1],"span":[327,2,37]},{"path":[4,20,2,1,4],"span":[327,2,10]},{"path":[4,20,2,1,5],"span":[327,11,17]},{"path":[4,20,2,1,1],"span":[327,18,32]},{"path":[4,20,2,1,3],"span":[327,35,36]},{"path":[4,20,2,2],"span":[328,2,37]},{"path":[4,20,2,2,4],"span":[328,2,10]},{"path":[4,20,2,2,5],"span":[328,11,17]},{"path":[4,20,2,2,1],"span":[328,18,32]},{"path":[4,20,2,2,3],"span":[328,35,36]},{"path":[4,20,2,3],"span":[329,2,35]},{"path":[4,20,2,3,4],"span":[329,2,10]},{"path":[4,20,2,3,5],"span":[329,11,17]},{"path":[4,20,2,3,1],"span":[329,18,30]},{"path":[4,20,2,3,3],"span":[329,33,34]},{"path":[4,20,2,4],"span":[330,2,33]},{"path":[4,20,2,4,4],"span":[330,2,10]},{"path":[4,20,2,4,5],"span":[330,11,17]},{"path":[4,20,2,4,1],"span":[330,18,28]},{"path":[4,20,2,4,3],"span":[330,31,32]},{"path":[4,21],"span":[333,0,386,1]},{"path":[4,21,1],"span":[333,8,34]},{"path":[4,21,2,0],"span":[334,2,30]},{"path":[4,21,2,0,4],"span":[334,2,10]},{"path":[4,21,2,0,5],"span":[334,11,17]},{"path":[4,21,2,0,1],"span":[334,18,25]},{"path":[4,21,2,0,3],"span":[334,28,29]},{"path":[4,21,2,1],"span":[335,2,34]},{"path":[4,21,2,1,4],"span":[335,2,10]},{"path":[4,21,2,1,5],"span":[335,11,16]},{"path":[4,21,2,1,1],"span":[335,17,29]},{"path":[4,21,2,1,3],"span":[335,32,33]},{"path":[4,21,2,2],"span":[336,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,21,2,2,4],"span":[336,2,10]},{"path":[4,21,2,2,5],"span":[336,11,17]},{"path":[4,21,2,2,1],"span":[336,18,23]},{"path":[4,21,2,2,3],"span":[336,26,27]},{"path":[4,21,2,3],"span":[337,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,21,2,3,4],"span":[337,2,10]},{"path":[4,21,2,3,5],"span":[337,11,17]},{"path":[4,21,2,3,1],"span":[337,18,30]},{"path":[4,21,2,3,3],"span":[337,33,34]},{"path":[4,21,2,4],"span":[338,2,41]},{"path":[4,21,2,4,4],"span":[338,2,10]},{"path":[4,21,2,4,5],"span":[338,11,15]},{"path":[4,21,2,4,1],"span":[338,16,36]},{"path":[4,21,2,4,3],"span":[338,39,40]},{"path":[4,21,2,5],"span":[339,2,35]},{"path":[4,21,2,5,4],"span":[339,2,10]},{"path":[4,21,2,5,5],"span":[339,11,15]},{"path":[4,21,2,5,1],"span":[339,16,30]},{"path":[4,21,2,5,3],"span":[339,33,34]},{"path":[4,21,2,6],"span":[340,2,39]},{"path":[4,21,2,6,4],"span":[340,2,10]},{"path":[4,21,2,6,5],"span":[340,11,15]},{"path":[4,21,2,6,1],"span":[340,16,34]},{"path":[4,21,2,6,3],"span":[340,37,38]},{"path":[4,21,2,7],"span":[342,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,21,2,7,4],"span":[342,2,10]},{"path":[4,21,2,7,5],"span":[342,11,17]},{"path":[4,21,2,7,1],"span":[342,18,25]},{"path":[4,21,2,7,3],"span":[342,28,30]},{"path":[4,21,2,8],"span":[344,2,35]},{"path":[4,21,2,8,4],"span":[344,2,10]},{"path":[4,21,2,8,5],"span":[344,11,17]},{"path":[4,21,2,8,1],"span":[344,18,29]},{"path":[4,21,2,8,3],"span":[344,32,34]},{"path":[4,21,2,9],"span":[345,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,21,2,9,4],"span":[345,2,10]},{"path":[4,21,2,9,5],"span":[345,11,17]},{"path":[4,21,2,9,1],"span":[345,18,30]},{"path":[4,21,2,9,3],"span":[345,33,35]},{"path":[4,21,2,10],"span":[346,2,34]},{"path":[4,21,2,10,4],"span":[346,2,10]},{"path":[4,21,2,10,5],"span":[346,11,17]},{"path":[4,21,2,10,1],"span":[346,18,28]},{"path":[4,21,2,10,3],"span":[346,31,33]},{"path":[4,21,2,11],"span":[347,2,31]},{"path":[4,21,2,11,4],"span":[347,2,10]},{"path":[4,21,2,11,5],"span":[347,11,17]},{"path":[4,21,2,11,1],"span":[347,18,25]},{"path":[4,21,2,11,3],"span":[347,28,30]},{"path":[4,21,2,12],"span":[348,2,32]},{"path":[4,21,2,12,4],"span":[348,2,10]},{"path":[4,21,2,12,5],"span":[348,11,17]},{"path":[4,21,2,12,1],"span":[348,18,26]},{"path":[4,21,2,12,3],"span":[348,29,31]},{"path":[4,21,2,13],"span":[349,2,36]},{"path":[4,21,2,13,4],"span":[349,2,10]},{"path":[4,21,2,13,5],"span":[349,11,17]},{"path":[4,21,2,13,1],"span":[349,18,30]},{"path":[4,21,2,13,3],"span":[349,33,35]},{"path":[4,21,2,14],"span":[350,2,35]},{"path":[4,21,2,14,4],"span":[350,2,10]},{"path":[4,21,2,14,5],"span":[350,11,17]},{"path":[4,21,2,14,1],"span":[350,18,29]},{"path":[4,21,2,14,3],"span":[350,32,34]},{"path":[4,21,2,15],"span":[351,2,39]},{"path":[4,21,2,15,4],"span":[351,2,10]},{"path":[4,21,2,15,5],"span":[351,11,16]},{"path":[4,21,2,15,1],"span":[351,17,33]},{"path":[4,21,2,15,3],"span":[351,36,38]},{"path":[4,21,2,16],"span":[352,2,27]},{"path":[4,21,2,16,4],"span":[352,2,10]},{"path":[4,21,2,16,5],"span":[352,11,15]},{"path":[4,21,2,16,1],"span":[352,16,21]},{"path":[4,21,2,16,3],"span":[352,24,26]},{"path":[4,21,2,17],"span":[353,2,35]},{"path":[4,21,2,17,4],"span":[353,2,10]},{"path":[4,21,2,17,5],"span":[353,11,17]},{"path":[4,21,2,17,1],"span":[353,18,29]},{"path":[4,21,2,17,3],"span":[353,32,34]},{"path":[4,21,2,18],"span":[354,2,52]},{"path":[4,21,2,18,4],"span":[354,2,10]},{"path":[4,21,2,18,5],"span":[354,11,17]},{"path":[4,21,2,18,1],"span":[354,18,46]},{"path":[4,21,2,18,3],"span":[354,49,51]},{"path":[4,21,2,19],"span":[355,2,55]},{"path":[4,21,2,19,4],"span":[355,2,10]},{"path":[4,21,2,19,6],"span":[355,11,36]},{"path":[4,21,2,19,1],"span":[355,37,49]},{"path":[4,21,2,19,3],"span":[355,52,54]},{"path":[4,21,2,20],"span":[356,2,47]},{"path":[4,21,2,20,4],"span":[356,2,10]},{"path":[4,21,2,20,5],"span":[356,11,17]},{"path":[4,21,2,20,1],"span":[356,18,41]},{"path":[4,21,2,20,3],"span":[356,44,46]},{"path":[4,21,2,21],"span":[357,2,48]},{"path":[4,21,2,21,4],"span":[357,2,10]},{"path":[4,21,2,21,5],"span":[357,11,17]},{"path":[4,21,2,21,1],"span":[357,18,42]},{"path":[4,21,2,21,3],"span":[357,45,47]},{"path":[4,21,2,22],"span":[358,2,36]},{"path":[4,21,2,22,4],"span":[358,2,10]},{"path":[4,21,2,22,5],"span":[358,11,17]},{"path":[4,21,2,22,1],"span":[358,18,30]},{"path":[4,21,2,22,3],"span":[358,33,35]},{"path":[4,21,2,23],"span":[359,2,40]},{"path":[4,21,2,23,4],"span":[359,2,10]},{"path":[4,21,2,23,6],"span":[359,11,22]},{"path":[4,21,2,23,1],"span":[359,23,34]},{"path":[4,21,2,23,3],"span":[359,37,39]},{"path":[4,21,2,24],"span":[360,2,45]},{"path":[4,21,2,24,4],"span":[360,2,10]},{"path":[4,21,2,24,6],"span":[360,11,22]},{"path":[4,21,2,24,1],"span":[360,23,39]},{"path":[4,21,2,24,3],"span":[360,42,44]},{"path":[4,21,2,25],"span":[361,2,36]},{"path":[4,21,2,25,4],"span":[361,2,10]},{"path":[4,21,2,25,6],"span":[361,11,22]},{"path":[4,21,2,25,1],"span":[361,23,30]},{"path":[4,21,2,25,3],"span":[361,33,35]},{"path":[4,21,2,26],"span":[362,2,39]},{"path":[4,21,2,26,4],"span":[362,2,10]},{"path":[4,21,2,26,5],"span":[362,11,17]},{"path":[4,21,2,26,1],"span":[362,18,33]},{"path":[4,21,2,26,3],"span":[362,36,38]},{"path":[4,21,2,27],"span":[363,2,43]},{"path":[4,21,2,27,4],"span":[363,2,10]},{"path":[4,21,2,27,5],"span":[363,11,17]},{"path":[4,21,2,27,1],"span":[363,18,37]},{"path":[4,21,2,27,3],"span":[363,40,42]},{"path":[4,21,2,28],"span":[364,2,39]},{"path":[4,21,2,28,4],"span":[364,2,10]},{"path":[4,21,2,28,5],"span":[364,11,17]},{"path":[4,21,2,28,1],"span":[364,18,33]},{"path":[4,21,2,28,3],"span":[364,36,38]},{"path":[4,21,2,29],"span":[365,2,37]},{"path":[4,21,2,29,4],"span":[365,2,10]},{"path":[4,21,2,29,5],"span":[365,11,17]},{"path":[4,21,2,29,1],"span":[365,18,31]},{"path":[4,21,2,29,3],"span":[365,34,36]},{"path":[4,21,2,30],"span":[366,2,50]},{"path":[4,21,2,30,4],"span":[366,2,10]},{"path":[4,21,2,30,5],"span":[366,11,17]},{"path":[4,21,2,30,1],"span":[366,18,44]},{"path":[4,21,2,30,3],"span":[366,47,49]},{"path":[4,21,2,31],"span":[367,2,50]},{"path":[4,21,2,31,4],"span":[367,2,10]},{"path":[4,21,2,31,5],"span":[367,11,17]},{"path":[4,21,2,31,1],"span":[367,18,44]},{"path":[4,21,2,31,3],"span":[367,47,49]},{"path":[4,21,2,32],"span":[368,2,51]},{"path":[4,21,2,32,4],"span":[368,2,10]},{"path":[4,21,2,32,5],"span":[368,11,17]},{"path":[4,21,2,32,1],"span":[368,18,45]},{"path":[4,21,2,32,3],"span":[368,48,50]},{"path":[4,21,2,33],"span":[369,2,30]},{"path":[4,21,2,33,4],"span":[369,2,10]},{"path":[4,21,2,33,5],"span":[369,11,17]},{"path":[4,21,2,33,1],"span":[369,18,24]},{"path":[4,21,2,33,3],"span":[369,27,29]},{"path":[4,21,2,34],"span":[370,2,37]},{"path":[4,21,2,34,4],"span":[370,2,10]},{"path":[4,21,2,34,5],"span":[370,11,17]},{"path":[4,21,2,34,1],"span":[370,18,31]},{"path":[4,21,2,34,3],"span":[370,34,36]},{"path":[4,21,2,35],"span":[371,2,40]},{"path":[4,21,2,35,4],"span":[371,2,10]},{"path":[4,21,2,35,5],"span":[371,11,17]},{"path":[4,21,2,35,1],"span":[371,18,34]},{"path":[4,21,2,35,3],"span":[371,37,39]},{"path":[4,21,2,36],"span":[372,2,49]},{"path":[4,21,2,36,4],"span":[372,2,10]},{"path":[4,21,2,36,5],"span":[372,11,17]},{"path":[4,21,2,36,1],"span":[372,18,43]},{"path":[4,21,2,36,3],"span":[372,46,48]},{"path":[4,21,2,37],"span":[373,2,49]},{"path":[4,21,2,37,4],"span":[373,2,10]},{"path":[4,21,2,37,5],"span":[373,11,17]},{"path":[4,21,2,37,1],"span":[373,18,43]},{"path":[4,21,2,37,3],"span":[373,46,48]},{"path":[4,21,2,38],"span":[374,2,41]},{"path":[4,21,2,38,4],"span":[374,2,10]},{"path":[4,21,2,38,5],"span":[374,11,17]},{"path":[4,21,2,38,1],"span":[374,18,35]},{"path":[4,21,2,38,3],"span":[374,38,40]},{"path":[4,21,2,39],"span":[375,2,45]},{"path":[4,21,2,39,4],"span":[375,2,10]},{"path":[4,21,2,39,5],"span":[375,11,17]},{"path":[4,21,2,39,1],"span":[375,18,39]},{"path":[4,21,2,39,3],"span":[375,42,44]},{"path":[4,21,2,40],"span":[376,2,42]},{"path":[4,21,2,40,4],"span":[376,2,10]},{"path":[4,21,2,40,5],"span":[376,11,17]},{"path":[4,21,2,40,1],"span":[376,18,36]},{"path":[4,21,2,40,3],"span":[376,39,41]},{"path":[4,21,2,41],"span":[377,2,46]},{"path":[4,21,2,41,4],"span":[377,2,10]},{"path":[4,21,2,41,5],"span":[377,11,17]},{"path":[4,21,2,41,1],"span":[377,18,40]},{"path":[4,21,2,41,3],"span":[377,43,45]},{"path":[4,21,2,42],"span":[378,2,41]},{"path":[4,21,2,42,4],"span":[378,2,10]},{"path":[4,21,2,42,6],"span":[378,11,22]},{"path":[4,21,2,42,1],"span":[378,23,35]},{"path":[4,21,2,42,3],"span":[378,38,40]},{"path":[4,21,2,43],"span":[379,2,34]},{"path":[4,21,2,43,4],"span":[379,2,10]},{"path":[4,21,2,43,5],"span":[379,11,17]},{"path":[4,21,2,43,1],"span":[379,18,28]},{"path":[4,21,2,43,3],"span":[379,31,33]},{"path":[4,21,2,44],"span":[380,2,36]},{"path":[4,21,2,44,4],"span":[380,2,10]},{"path":[4,21,2,44,5],"span":[380,11,17]},{"path":[4,21,2,44,1],"span":[380,18,30]},{"path":[4,21,2,44,3],"span":[380,33,35]},{"path":[4,21,2,45],"span":[381,2,40]},{"path":[4,21,2,45,4],"span":[381,2,10]},{"path":[4,21,2,45,5],"span":[381,11,17]},{"path":[4,21,2,45,1],"span":[381,18,34]},{"path":[4,21,2,45,3],"span":[381,37,39]},{"path":[4,21,2,46],"span":[382,2,66]},{"path":[4,21,2,46,4],"span":[382,2,10]},{"path":[4,21,2,46,5],"span":[382,11,15]},{"path":[4,21,2,46,1],"span":[382,16,60]},{"path":[4,21,2,46,3],"span":[382,63,65]},{"path":[4,21,2,47],"span":[383,2,60]},{"path":[4,21,2,47,4],"span":[383,2,10]},{"path":[4,21,2,47,5],"span":[383,11,15]},{"path":[4,21,2,47,1],"span":[383,16,54]},{"path":[4,21,2,47,3],"span":[383,57,59]},{"path":[4,21,2,48],"span":[384,2,55]},{"path":[4,21,2,48,4],"span":[384,2,10]},{"path":[4,21,2,48,5],"span":[384,11,15]},{"path":[4,21,2,48,1],"span":[384,16,49]},{"path":[4,21,2,48,3],"span":[384,52,54]},{"path":[4,21,2,49],"span":[385,2,64]},{"path":[4,21,2,49,4],"span":[385,2,10]},{"path":[4,21,2,49,5],"span":[385,11,17]},{"path":[4,21,2,49,1],"span":[385,18,58]},{"path":[4,21,2,49,3],"span":[385,61,63]},{"path":[4,22],"span":[389,0,405,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,22,1],"span":[389,8,28]},{"path":[4,22,2,0],"span":[391,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,22,2,0,5],"span":[391,2,8]},{"path":[4,22,2,0,1],"span":[391,9,11]},{"path":[4,22,2,0,3],"span":[391,14,15]},{"path":[4,22,2,1],"span":[394,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,22,2,1,4],"span":[394,2,10]},{"path":[4,22,2,1,5],"span":[394,11,17]},{"path":[4,22,2,1,1],"span":[394,18,22]},{"path":[4,22,2,1,3],"span":[394,25,26]},{"path":[4,22,2,2],"span":[396,2,54]},{"path":[4,22,2,2,4],"span":[396,2,10]},{"path":[4,22,2,2,6],"span":[396,11,36]},{"path":[4,22,2,2,1],"span":[396,37,49]},{"path":[4,22,2,2,3],"span":[396,52,53]},{"path":[4,22,2,3],"span":[399,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,22,2,3,4],"span":[399,2,10]},{"path":[4,22,2,3,5],"span":[399,11,17]},{"path":[4,22,2,3,1],"span":[399,18,28]},{"path":[4,22,2,3,3],"span":[399,31,32]},{"path":[4,22,2,4],"span":[401,2,31]},{"path":[4,22,2,4,4],"span":[401,2,10]},{"path":[4,22,2,4,5],"span":[401,11,17]},{"path":[4,22,2,4,1],"span":[401,18,26]},{"path":[4,22,2,4,3],"span":[401,29,30]},{"path":[4,22,2,5],"span":[403,2,43]},{"path":[4,22,2,5,4],"span":[403,2,10]},{"path":[4,22,2,5,5],"span":[403,11,17]},{"path":[4,22,2,5,1],"span":[403,18,38]},{"path":[4,22,2,5,3],"span":[403,41,42]},{"path":[4,23],"span":[408,0,411,1],"leadingComments":" Network Interface cards "},{"path":[4,23,1],"span":[408,8,25]},{"path":[4,23,2,0],"span":[409,2,42]},{"path":[4,23,2,0,6],"span":[409,2,27]},{"path":[4,23,2,0,1],"span":[409,28,37]},{"path":[4,23,2,0,3],"span":[409,40,41]},{"path":[4,23,2,1],"span":[410,2,42]},{"path":[4,23,2,1,4],"span":[410,2,10]},{"path":[4,23,2,1,6],"span":[410,11,27]},{"path":[4,23,2,1,1],"span":[410,28,37]},{"path":[4,23,2,1,3],"span":[410,40,41]},{"path":[4,24],"span":[413,0,436,1]},{"path":[4,24,1],"span":[413,8,24]},{"path":[4,24,2,0],"span":[414,2,18]},{"path":[4,24,2,0,5],"span":[414,2,8]},{"path":[4,24,2,0,1],"span":[414,9,13]},{"path":[4,24,2,0,3],"span":[414,16,17]},{"path":[4,24,2,1],"span":[415,2,18]},{"path":[4,24,2,1,5],"span":[415,2,8]},{"path":[4,24,2,1,1],"span":[415,9,13]},{"path":[4,24,2,1,3],"span":[415,16,17]},{"path":[4,24,2,2],"span":[416,2,22]},{"path":[4,24,2,2,5],"span":[416,2,8]},{"path":[4,24,2,2,1],"span":[416,9,17]},{"path":[4,24,2,2,3],"span":[416,20,21]},{"path":[4,24,2,3],"span":[418,2,25]},{"path":[4,24,2,3,4],"span":[418,2,10]},{"path":[4,24,2,3,5],"span":[418,11,17]},{"path":[4,24,2,3,1],"span":[418,18,20]},{"path":[4,24,2,3,3],"span":[418,23,24]},{"path":[4,24,2,4],"span":[420,2,26]},{"path":[4,24,2,4,4],"span":[420,2,10]},{"path":[4,24,2,4,5],"span":[420,11,17]},{"path":[4,24,2,4,1],"span":[420,18,21]},{"path":[4,24,2,4,3],"span":[420,24,25]},{"path":[4,24,2,5],"span":[422,2,33]},{"path":[4,24,2,5,4],"span":[422,2,10]},{"path":[4,24,2,5,5],"span":[422,11,15]},{"path":[4,24,2,5,1],"span":[422,16,28]},{"path":[4,24,2,5,3],"span":[422,31,32]},{"path":[4,24,2,6],"span":[423,2,37]},{"path":[4,24,2,6,4],"span":[423,2,10]},{"path":[4,24,2,6,5],"span":[423,11,17]},{"path":[4,24,2,6,1],"span":[423,18,32]},{"path":[4,24,2,6,3],"span":[423,35,36]},{"path":[4,24,2,7],"span":[425,2,31]},{"path":[4,24,2,7,4],"span":[425,2,10]},{"path":[4,24,2,7,6],"span":[425,11,23]},{"path":[4,24,2,7,1],"span":[425,24,26]},{"path":[4,24,2,7,3],"span":[425,29,30]},{"path":[4,24,2,8],"span":[427,2,33]},{"path":[4,24,2,8,4],"span":[427,2,10]},{"path":[4,24,2,8,5],"span":[427,11,17]},{"path":[4,24,2,8,1],"span":[427,18,28]},{"path":[4,24,2,8,3],"span":[427,31,32]},{"path":[4,24,2,9],"span":[428,2,35]},{"path":[4,24,2,9,4],"span":[428,2,10]},{"path":[4,24,2,9,5],"span":[428,11,17]},{"path":[4,24,2,9,1],"span":[428,18,29]},{"path":[4,24,2,9,3],"span":[428,32,34]},{"path":[4,24,2,10],"span":[430,2,34]},{"path":[4,24,2,10,4],"span":[430,2,10]},{"path":[4,24,2,10,5],"span":[430,11,17]},{"path":[4,24,2,10,1],"span":[430,18,28]},{"path":[4,24,2,10,3],"span":[430,31,33]},{"path":[4,24,2,11],"span":[431,2,37]},{"path":[4,24,2,11,4],"span":[431,2,10]},{"path":[4,24,2,11,5],"span":[431,11,17]},{"path":[4,24,2,11,1],"span":[431,18,31]},{"path":[4,24,2,11,3],"span":[431,34,36]},{"path":[4,24,2,12],"span":[432,2,54]},{"path":[4,24,2,12,4],"span":[432,2,10]},{"path":[4,24,2,12,5],"span":[432,11,17]},{"path":[4,24,2,12,1],"span":[432,18,48]},{"path":[4,24,2,12,3],"span":[432,51,53]},{"path":[4,24,2,13],"span":[434,2,36]},{"path":[4,24,2,13,4],"span":[434,2,10]},{"path":[4,24,2,13,5],"span":[434,11,17]},{"path":[4,24,2,13,1],"span":[434,18,30]},{"path":[4,24,2,13,3],"span":[434,33,35]},{"path":[4,24,2,14],"span":[435,2,37]},{"path":[4,24,2,14,4],"span":[435,2,10]},{"path":[4,24,2,14,5],"span":[435,11,17]},{"path":[4,24,2,14,1],"span":[435,18,31]},{"path":[4,24,2,14,3],"span":[435,34,36]},{"path":[4,25],"span":[439,0,442,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,25,1],"span":[439,8,20]},{"path":[4,25,2,0],"span":[440,2,16]},{"path":[4,25,2,0,5],"span":[440,2,8]},{"path":[4,25,2,0,1],"span":[440,9,11]},{"path":[4,25,2,0,3],"span":[440,14,15]},{"path":[4,25,2,1],"span":[441,2,20]},{"path":[4,25,2,1,5],"span":[441,2,8]},{"path":[4,25,2,1,1],"span":[441,9,15]},{"path":[4,25,2,1,3],"span":[441,18,19]},{"path":[4,26],"span":[445,0,486,1],"leadingComments":" Processor *"},{"path":[4,26,1],"span":[445,8,17]},{"path":[4,26,2,0],"span":[446,2,21]},{"path":[4,26,2,0,5],"span":[446,2,8]},{"path":[4,26,2,0,1],"span":[446,10,14]},{"path":[4,26,2,0,3],"span":[446,17,18]},{"path":[4,26,2,1],"span":[447,2,36],"trailingComments":" Linux-only\n"},{"path":[4,26,2,1,4],"span":[447,2,10]},{"path":[4,26,2,1,5],"span":[447,11,17]},{"path":[4,26,2,1,1],"span":[447,18,31]},{"path":[4,26,2,1,3],"span":[447,34,35]},{"path":[4,26,2,2],"span":[448,2,35],"trailingComments":" Windows-only\n"},{"path":[4,26,2,2,4],"span":[448,2,10]},{"path":[4,26,2,2,5],"span":[448,11,16]},{"path":[4,26,2,2,1],"span":[448,17,30]},{"path":[4,26,2,2,3],"span":[448,33,34]},{"path":[4,26,2,3],"span":[449,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,26,2,3,4],"span":[449,2,10]},{"path":[4,26,2,3,6],"span":[449,11,22]},{"path":[4,26,2,3,1],"span":[449,23,35]},{"path":[4,26,2,3,3],"span":[449,38,39]},{"path":[4,26,2,4],"span":[450,2,34],"trailingComments":" Windows-only\n"},{"path":[4,26,2,4,4],"span":[450,2,10]},{"path":[4,26,2,4,5],"span":[450,11,16]},{"path":[4,26,2,4,1],"span":[450,17,29]},{"path":[4,26,2,4,3],"span":[450,32,33]},{"path":[4,26,2,5],"span":[451,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,26,2,5,4],"span":[451,2,10]},{"path":[4,26,2,5,5],"span":[451,11,17]},{"path":[4,26,2,5,1],"span":[451,18,27]},{"path":[4,26,2,5,3],"span":[451,30,31]},{"path":[4,26,2,6],"span":[452,2,33],"trailingComments":" Linux-only\n"},{"path":[4,26,2,6,4],"span":[452,2,10]},{"path":[4,26,2,6,5],"span":[452,11,17]},{"path":[4,26,2,6,1],"span":[452,18,28]},{"path":[4,26,2,6,3],"span":[452,31,32]},{"path":[4,26,2,7],"span":[453,2,30],"trailingComments":" Windows-only\n"},{"path":[4,26,2,7,4],"span":[453,2,10]},{"path":[4,26,2,7,5],"span":[453,11,17]},{"path":[4,26,2,7,1],"span":[453,18,25]},{"path":[4,26,2,7,3],"span":[453,28,29]},{"path":[4,26,2,8],"span":[454,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,26,2,8,4],"span":[454,2,10]},{"path":[4,26,2,8,5],"span":[454,11,16]},{"path":[4,26,2,8,1],"span":[454,17,36]},{"path":[4,26,2,8,3],"span":[454,39,40]},{"path":[4,26,2,9],"span":[455,2,33],"trailingComments":" Windows-only\n"},{"path":[4,26,2,9,4],"span":[455,2,10]},{"path":[4,26,2,9,5],"span":[455,11,16]},{"path":[4,26,2,9,1],"span":[455,17,27]},{"path":[4,26,2,9,3],"span":[455,30,32]},{"path":[4,26,2,10],"span":[456,2,33],"trailingComments":" Windows-only\n"},{"path":[4,26,2,10,4],"span":[456,2,10]},{"path":[4,26,2,10,5],"span":[456,11,17]},{"path":[4,26,2,10,1],"span":[456,18,27]},{"path":[4,26,2,10,3],"span":[456,30,32]},{"path":[4,26,2,11],"span":[457,2,41],"trailingComments":" Windows-only\n"},{"path":[4,26,2,11,4],"span":[457,2,10]},{"path":[4,26,2,11,5],"span":[457,11,16]},{"path":[4,26,2,11,1],"span":[457,17,35]},{"path":[4,26,2,11,3],"span":[457,38,40]},{"path":[4,26,2,12],"span":[458,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,26,2,12,4],"span":[458,2,10]},{"path":[4,26,2,12,6],"span":[458,11,22]},{"path":[4,26,2,12,1],"span":[458,23,29]},{"path":[4,26,2,12,3],"span":[458,32,34]},{"path":[4,26,2,13],"span":[459,2,41],"trailingComments":" Linux-only\n"},{"path":[4,26,2,13,4],"span":[459,2,10]},{"path":[4,26,2,13,5],"span":[459,11,17]},{"path":[4,26,2,13,1],"span":[459,18,35]},{"path":[4,26,2,13,3],"span":[459,38,40]},{"path":[4,26,2,14],"span":[460,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,26,2,14,4],"span":[460,2,10]},{"path":[4,26,2,14,5],"span":[460,11,16]},{"path":[4,26,2,14,1],"span":[460,17,34]},{"path":[4,26,2,14,3],"span":[460,37,39]},{"path":[4,26,2,15],"span":[461,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,26,2,15,4],"span":[461,2,10]},{"path":[4,26,2,15,5],"span":[461,11,16]},{"path":[4,26,2,15,1],"span":[461,17,34]},{"path":[4,26,2,15,3],"span":[461,37,39]},{"path":[4,26,2,16],"span":[462,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,26,2,16,4],"span":[462,2,10]},{"path":[4,26,2,16,5],"span":[462,11,16]},{"path":[4,26,2,16,1],"span":[462,17,33]},{"path":[4,26,2,16,3],"span":[462,36,38]},{"path":[4,26,2,17],"span":[463,2,41],"trailingComments":" Windows-only\n"},{"path":[4,26,2,17,4],"span":[463,2,10]},{"path":[4,26,2,17,5],"span":[463,11,16]},{"path":[4,26,2,17,1],"span":[463,17,35]},{"path":[4,26,2,17,3],"span":[463,38,40]},{"path":[4,26,2,18],"span":[464,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,26,2,18,4],"span":[464,2,10]},{"path":[4,26,2,18,5],"span":[464,11,16]},{"path":[4,26,2,18,1],"span":[464,17,33]},{"path":[4,26,2,18,3],"span":[464,36,38]},{"path":[4,26,2,19],"span":[465,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,26,2,19,4],"span":[465,2,10]},{"path":[4,26,2,19,5],"span":[465,11,16]},{"path":[4,26,2,19,1],"span":[465,17,22]},{"path":[4,26,2,19,3],"span":[465,25,27]},{"path":[4,26,2,20],"span":[466,2,44]},{"path":[4,26,2,20,4],"span":[466,2,10]},{"path":[4,26,2,20,5],"span":[466,11,16]},{"path":[4,26,2,20,1],"span":[466,17,36]},{"path":[4,26,2,20,3],"span":[466,39,41]},{"path":[4,26,2,21],"span":[467,2,38]},{"path":[4,26,2,21,4],"span":[467,2,10]},{"path":[4,26,2,21,5],"span":[467,11,17]},{"path":[4,26,2,21,1],"span":[467,18,30]},{"path":[4,26,2,21,3],"span":[467,33,35]},{"path":[4,26,2,22],"span":[468,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,26,2,22,4],"span":[468,2,10]},{"path":[4,26,2,22,5],"span":[468,11,16]},{"path":[4,26,2,22,1],"span":[468,17,36]},{"path":[4,26,2,22,3],"span":[468,39,41]},{"path":[4,26,2,23],"span":[469,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,26,2,23,4],"span":[469,2,10]},{"path":[4,26,2,23,5],"span":[469,11,16]},{"path":[4,26,2,23,1],"span":[469,17,36]},{"path":[4,26,2,23,3],"span":[469,39,41]},{"path":[4,26,2,24],"span":[470,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,26,2,24,4],"span":[470,2,10]},{"path":[4,26,2,24,5],"span":[470,11,16]},{"path":[4,26,2,24,1],"span":[470,17,29]},{"path":[4,26,2,24,3],"span":[470,32,34]},{"path":[4,26,2,25],"span":[471,2,32],"trailingComments":" Linux-only\n"},{"path":[4,26,2,25,4],"span":[471,2,10]},{"path":[4,26,2,25,5],"span":[471,11,17]},{"path":[4,26,2,25,1],"span":[471,18,26]},{"path":[4,26,2,25,3],"span":[471,29,31]},{"path":[4,26,2,26],"span":[472,2,45]},{"path":[4,26,2,26,4],"span":[472,2,10]},{"path":[4,26,2,26,5],"span":[472,11,16]},{"path":[4,26,2,26,1],"span":[472,17,37]},{"path":[4,26,2,26,3],"span":[472,40,42]},{"path":[4,26,2,27],"span":[473,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,26,2,27,4],"span":[473,2,10]},{"path":[4,26,2,27,5],"span":[473,11,17]},{"path":[4,26,2,27,1],"span":[473,18,30]},{"path":[4,26,2,27,3],"span":[473,33,35]},{"path":[4,26,2,28],"span":[474,2,43],"trailingComments":" Windows-only\n"},{"path":[4,26,2,28,4],"span":[474,2,10]},{"path":[4,26,2,28,6],"span":[474,11,22]},{"path":[4,26,2,28,1],"span":[474,23,37]},{"path":[4,26,2,28,3],"span":[474,40,42]},{"path":[4,26,2,29],"span":[475,2,31],"trailingComments":" Windows-only\n"},{"path":[4,26,2,29,4],"span":[475,2,10]},{"path":[4,26,2,29,5],"span":[475,11,16]},{"path":[4,26,2,29,1],"span":[475,17,25]},{"path":[4,26,2,29,3],"span":[475,28,30]},{"path":[4,26,2,30],"span":[476,2,42],"trailingComments":" Windows-only\n"},{"path":[4,26,2,30,4],"span":[476,2,10]},{"path":[4,26,2,30,5],"span":[476,11,17]},{"path":[4,26,2,30,1],"span":[476,18,36]},{"path":[4,26,2,30,3],"span":[476,39,41]},{"path":[4,26,2,31],"span":[477,2,31],"trailingComments":" Linux-only\n"},{"path":[4,26,2,31,4],"span":[477,2,10]},{"path":[4,26,2,31,5],"span":[477,11,16]},{"path":[4,26,2,31,1],"span":[477,18,25]},{"path":[4,26,2,31,3],"span":[477,28,30]},{"path":[4,26,2,32],"span":[478,2,35],"trailingComments":" Windows-only\n"},{"path":[4,26,2,32,4],"span":[478,2,10]},{"path":[4,26,2,32,6],"span":[478,11,22]},{"path":[4,26,2,32,1],"span":[478,23,29]},{"path":[4,26,2,32,3],"span":[478,32,34]},{"path":[4,26,2,33],"span":[479,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,26,2,33,4],"span":[479,2,10]},{"path":[4,26,2,33,5],"span":[479,11,16]},{"path":[4,26,2,33,1],"span":[479,17,25]},{"path":[4,26,2,33,3],"span":[479,28,30]},{"path":[4,26,2,34],"span":[480,2,54],"trailingComments":" Linux-only\n"},{"path":[4,26,2,34,4],"span":[480,2,10]},{"path":[4,26,2,34,5],"span":[480,11,16]},{"path":[4,26,2,34,1],"span":[480,17,48]},{"path":[4,26,2,34,3],"span":[480,51,53]},{"path":[4,26,2,35],"span":[481,2,33],"trailingComments":" Windows-only\n"},{"path":[4,26,2,35,4],"span":[481,2,10]},{"path":[4,26,2,35,5],"span":[481,11,17]},{"path":[4,26,2,35,1],"span":[481,18,27]},{"path":[4,26,2,35,3],"span":[481,30,32]},{"path":[4,26,2,36],"span":[482,2,43],"trailingComments":" Windows-only\n"},{"path":[4,26,2,36,4],"span":[482,2,10]},{"path":[4,26,2,36,6],"span":[482,11,22]},{"path":[4,26,2,36,1],"span":[482,23,37]},{"path":[4,26,2,36,3],"span":[482,40,42]},{"path":[4,26,2,37],"span":[483,2,31],"trailingComments":" Windows-only\n"},{"path":[4,26,2,37,4],"span":[483,2,10]},{"path":[4,26,2,37,5],"span":[483,11,17]},{"path":[4,26,2,37,1],"span":[483,18,25]},{"path":[4,26,2,37,3],"span":[483,28,30]},{"path":[4,26,2,38],"span":[484,2,38],"trailingComments":" Linux-only\n"},{"path":[4,26,2,38,4],"span":[484,2,10]},{"path":[4,26,2,38,5],"span":[484,11,17]},{"path":[4,26,2,38,1],"span":[484,18,32]},{"path":[4,26,2,38,3],"span":[484,35,37]},{"path":[4,26,2,39],"span":[485,2,49],"trailingComments":" Windows-only\n"},{"path":[4,26,2,39,4],"span":[485,2,10]},{"path":[4,26,2,39,6],"span":[485,11,22]},{"path":[4,26,2,39,1],"span":[485,23,43]},{"path":[4,26,2,39,3],"span":[485,46,48]},{"path":[4,27],"span":[489,0,499,1],"leadingComments":" Chassis *"},{"path":[4,27,1],"span":[489,8,15]},{"path":[4,27,2,0],"span":[491,2,25]},{"path":[4,27,2,0,6],"span":[491,2,13]},{"path":[4,27,2,0,1],"span":[491,16,20]},{"path":[4,27,2,0,3],"span":[491,23,24]},{"path":[4,27,2,1],"span":[492,2,33]},{"path":[4,27,2,1,4],"span":[492,2,10]},{"path":[4,27,2,1,5],"span":[492,11,15]},{"path":[4,27,2,1,1],"span":[492,16,28]},{"path":[4,27,2,1,3],"span":[492,31,32]},{"path":[4,27,2,2],"span":[493,2,41]},{"path":[4,27,2,2,4],"span":[493,2,10]},{"path":[4,27,2,2,5],"span":[493,11,17]},{"path":[4,27,2,2,1],"span":[493,24,36]},{"path":[4,27,2,2,3],"span":[493,39,40]},{"path":[4,27,2,3],"span":[494,2,43]},{"path":[4,27,2,3,4],"span":[494,2,10]},{"path":[4,27,2,3,6],"span":[494,11,22]},{"path":[4,27,2,3,1],"span":[494,23,38]},{"path":[4,27,2,3,3],"span":[494,41,42]},{"path":[4,27,2,4],"span":[495,2,42]},{"path":[4,27,2,4,4],"span":[495,2,10]},{"path":[4,27,2,4,5],"span":[495,11,17]},{"path":[4,27,2,4,1],"span":[495,24,37]},{"path":[4,27,2,4,3],"span":[495,40,41]},{"path":[4,27,2,5],"span":[496,2,38]},{"path":[4,27,2,5,4],"span":[496,2,10]},{"path":[4,27,2,5,5],"span":[496,11,17]},{"path":[4,27,2,5,1],"span":[496,24,33]},{"path":[4,27,2,5,3],"span":[496,36,37]},{"path":[4,27,2,6],"span":[497,2,36]},{"path":[4,27,2,6,4],"span":[497,2,10]},{"path":[4,27,2,6,5],"span":[497,11,17]},{"path":[4,27,2,6,1],"span":[497,24,31]},{"path":[4,27,2,6,3],"span":[497,34,35]},{"path":[4,27,2,7],"span":[498,2,40]},{"path":[4,27,2,7,4],"span":[498,2,10]},{"path":[4,27,2,7,6],"span":[498,11,22]},{"path":[4,27,2,7,1],"span":[498,23,35]},{"path":[4,27,2,7,3],"span":[498,38,39]},{"path":[4,28],"span":[504,0,516,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,28,1],"span":[504,8,17]},{"path":[4,28,2,0],"span":[505,2,30]},{"path":[4,28,2,0,4],"span":[505,2,10]},{"path":[4,28,2,0,5],"span":[505,11,17]},{"path":[4,28,2,0,1],"span":[505,18,25]},{"path":[4,28,2,0,3],"span":[505,28,29]},{"path":[4,28,2,1],"span":[506,2,31]},{"path":[4,28,2,1,4],"span":[506,2,10]},{"path":[4,28,2,1,5],"span":[506,11,15]},{"path":[4,28,2,1,1],"span":[506,16,26]},{"path":[4,28,2,1,3],"span":[506,29,30]},{"path":[4,28,2,2],"span":[507,2,34]},{"path":[4,28,2,2,4],"span":[507,2,10]},{"path":[4,28,2,2,5],"span":[507,11,17]},{"path":[4,28,2,2,1],"span":[507,18,29]},{"path":[4,28,2,2,3],"span":[507,32,33]},{"path":[4,28,2,3],"span":[508,2,32]},{"path":[4,28,2,3,4],"span":[508,2,10]},{"path":[4,28,2,3,5],"span":[508,11,17]},{"path":[4,28,2,3,1],"span":[508,18,27]},{"path":[4,28,2,3,3],"span":[508,30,31]},{"path":[4,28,2,4],"span":[509,2,38]},{"path":[4,28,2,4,4],"span":[509,2,10]},{"path":[4,28,2,4,6],"span":[509,11,22]},{"path":[4,28,2,4,1],"span":[509,23,33]},{"path":[4,28,2,4,3],"span":[509,36,37]},{"path":[4,28,2,5],"span":[510,2,34]},{"path":[4,28,2,5,4],"span":[510,2,10]},{"path":[4,28,2,5,5],"span":[510,11,17]},{"path":[4,28,2,5,1],"span":[510,18,29]},{"path":[4,28,2,5,3],"span":[510,32,33]},{"path":[4,28,2,6],"span":[511,2,32]},{"path":[4,28,2,6,4],"span":[511,2,10]},{"path":[4,28,2,6,5],"span":[511,11,16]},{"path":[4,28,2,6,1],"span":[511,17,27]},{"path":[4,28,2,6,3],"span":[511,30,31]},{"path":[4,28,2,7],"span":[512,2,26]},{"path":[4,28,2,7,4],"span":[512,2,10]},{"path":[4,28,2,7,5],"span":[512,11,16]},{"path":[4,28,2,7,1],"span":[512,17,21]},{"path":[4,28,2,7,3],"span":[512,24,25]},{"path":[4,28,2,8],"span":[513,2,34]},{"path":[4,28,2,8,4],"span":[513,2,10]},{"path":[4,28,2,8,5],"span":[513,11,17]},{"path":[4,28,2,8,1],"span":[513,18,29]},{"path":[4,28,2,8,3],"span":[513,32,33]},{"path":[4,28,2,9],"span":[514,2,37]},{"path":[4,28,2,9,4],"span":[514,2,10]},{"path":[4,28,2,9,5],"span":[514,11,17]},{"path":[4,28,2,9,1],"span":[514,18,31]},{"path":[4,28,2,9,3],"span":[514,34,36]},{"path":[4,28,2,10],"span":[515,2,34]},{"path":[4,28,2,10,4],"span":[515,2,10]},{"path":[4,28,2,10,5],"span":[515,11,17]},{"path":[4,28,2,10,1],"span":[515,18,28]},{"path":[4,28,2,10,3],"span":[515,31,33]},{"path":[4,29],"span":[521,0,528,1],"leadingComments":"\n Keyboard for computers: Windows.Keyboards\n"},{"path":[4,29,1],"span":[521,8,16]},{"path":[4,29,2,0],"span":[522,2,53]},{"path":[4,29,2,0,4],"span":[522,2,10]},{"path":[4,29,2,0,6],"span":[522,11,22]},{"path":[4,29,2,0,1],"span":[522,23,48]},{"path":[4,29,2,0,3],"span":[522,51,52]},{"path":[4,29,2,1],"span":[523,2,47]},{"path":[4,29,2,1,4],"span":[523,2,10]},{"path":[4,29,2,1,5],"span":[523,11,15]},{"path":[4,29,2,1,1],"span":[523,16,42]},{"path":[4,29,2,1,3],"span":[523,45,46]},{"path":[4,29,2,2],"span":[524,2,34]},{"path":[4,29,2,2,4],"span":[524,2,10]},{"path":[4,29,2,2,5],"span":[524,11,17]},{"path":[4,29,2,2,1],"span":[524,18,29]},{"path":[4,29,2,2,3],"span":[524,32,33]},{"path":[4,29,2,3],"span":[525,2,32]},{"path":[4,29,2,3,4],"span":[525,2,10]},{"path":[4,29,2,3,5],"span":[525,11,17]},{"path":[4,29,2,3,1],"span":[525,18,27]},{"path":[4,29,2,3,3],"span":[525,30,31]},{"path":[4,29,2,4],"span":[526,2,29]},{"path":[4,29,2,4,4],"span":[526,2,10]},{"path":[4,29,2,4,5],"span":[526,11,17]},{"path":[4,29,2,4,1],"span":[526,18,24]},{"path":[4,29,2,4,3],"span":[526,27,28]},{"path":[4,29,2,5],"span":[527,2,45]},{"path":[4,29,2,5,4],"span":[527,2,10]},{"path":[4,29,2,5,5],"span":[527,11,16]},{"path":[4,29,2,5,1],"span":[527,17,40]},{"path":[4,29,2,5,3],"span":[527,43,44]},{"path":[4,30],"span":[533,0,545,1],"leadingComments":"\n Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice\n"},{"path":[4,30,1],"span":[533,8,22]},{"path":[4,30,2,0],"span":[534,2,30]},{"path":[4,30,2,0,4],"span":[534,2,10]},{"path":[4,30,2,0,5],"span":[534,11,17]},{"path":[4,30,2,0,1],"span":[534,18,25]},{"path":[4,30,2,0,3],"span":[534,28,29]},{"path":[4,30,2,1],"span":[535,2,32]},{"path":[4,30,2,1,4],"span":[535,2,10]},{"path":[4,30,2,1,5],"span":[535,11,17]},{"path":[4,30,2,1,1],"span":[535,18,27]},{"path":[4,30,2,1,3],"span":[535,30,31]},{"path":[4,30,2,2],"span":[536,2,44]},{"path":[4,30,2,2,4],"span":[536,2,10]},{"path":[4,30,2,2,6],"span":[536,11,22]},{"path":[4,30,2,2,1],"span":[536,23,39]},{"path":[4,30,2,2,3],"span":[536,42,43]},{"path":[4,30,2,3],"span":[537,2,45]},{"path":[4,30,2,3,4],"span":[537,2,10]},{"path":[4,30,2,3,5],"span":[537,11,16]},{"path":[4,30,2,3,1],"span":[537,18,40]},{"path":[4,30,2,3,3],"span":[537,43,44]},{"path":[4,30,2,4],"span":[538,2,38]},{"path":[4,30,2,4,4],"span":[538,2,10]},{"path":[4,30,2,4,6],"span":[538,11,22]},{"path":[4,30,2,4,1],"span":[538,23,33]},{"path":[4,30,2,4,3],"span":[538,36,37]},{"path":[4,30,2,5],"span":[539,2,36]},{"path":[4,30,2,5,4],"span":[539,2,10]},{"path":[4,30,2,5,5],"span":[539,11,17]},{"path":[4,30,2,5,1],"span":[539,18,31]},{"path":[4,30,2,5,3],"span":[539,34,35]},{"path":[4,30,2,6],"span":[540,2,34]},{"path":[4,30,2,6,4],"span":[540,2,10]},{"path":[4,30,2,6,5],"span":[540,11,17]},{"path":[4,30,2,6,1],"span":[540,18,29]},{"path":[4,30,2,6,3],"span":[540,32,33]},{"path":[4,30,2,7],"span":[541,2,35]},{"path":[4,30,2,7,4],"span":[541,2,10]},{"path":[4,30,2,7,5],"span":[541,11,17]},{"path":[4,30,2,7,1],"span":[541,18,30]},{"path":[4,30,2,7,3],"span":[541,33,34]},{"path":[4,30,2,8],"span":[542,2,40]},{"path":[4,30,2,8,4],"span":[542,2,10]},{"path":[4,30,2,8,5],"span":[542,11,16]},{"path":[4,30,2,8,1],"span":[542,18,35]},{"path":[4,30,2,8,3],"span":[542,38,39]},{"path":[4,30,2,9],"span":[543,2,42]},{"path":[4,30,2,9,4],"span":[543,2,10]},{"path":[4,30,2,9,6],"span":[543,11,22]},{"path":[4,30,2,9,1],"span":[543,23,36]},{"path":[4,30,2,9,3],"span":[543,39,41]},{"path":[4,30,2,10],"span":[544,2,44]},{"path":[4,30,2,10,4],"span":[544,2,10]},{"path":[4,30,2,10,5],"span":[544,11,16]},{"path":[4,30,2,10,1],"span":[544,18,38]},{"path":[4,30,2,10,3],"span":[544,41,43]},{"path":[4,31],"span":[550,0,579,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.PciCards\n"},{"path":[4,31,1],"span":[550,8,20]},{"path":[4,31,2,0],"span":[551,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,31,2,0,4],"span":[551,2,10]},{"path":[4,31,2,0,5],"span":[551,16,22]},{"path":[4,31,2,0,1],"span":[551,24,28]},{"path":[4,31,2,0,3],"span":[551,31,32]},{"path":[4,31,2,1],"span":[552,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,1,4],"span":[552,2,10]},{"path":[4,31,2,1,5],"span":[552,16,21]},{"path":[4,31,2,1,1],"span":[552,24,42]},{"path":[4,31,2,1,3],"span":[552,45,46]},{"path":[4,31,2,2],"span":[553,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,2,4],"span":[553,2,10]},{"path":[4,31,2,2,5],"span":[553,16,21]},{"path":[4,31,2,2,1],"span":[553,24,46]},{"path":[4,31,2,2,3],"span":[553,49,50]},{"path":[4,31,2,3],"span":[554,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,3,4],"span":[554,2,10]},{"path":[4,31,2,3,5],"span":[554,16,21]},{"path":[4,31,2,3,1],"span":[554,24,53]},{"path":[4,31,2,3,3],"span":[554,56,57]},{"path":[4,31,2,4],"span":[555,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,4,4],"span":[555,2,10]},{"path":[4,31,2,4,5],"span":[555,16,21]},{"path":[4,31,2,4,1],"span":[555,24,48]},{"path":[4,31,2,4,3],"span":[555,51,52]},{"path":[4,31,2,5],"span":[556,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,5,4],"span":[556,2,10]},{"path":[4,31,2,5,5],"span":[556,16,21]},{"path":[4,31,2,5,1],"span":[556,24,44]},{"path":[4,31,2,5,3],"span":[556,47,48]},{"path":[4,31,2,6],"span":[557,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,6,4],"span":[557,2,10]},{"path":[4,31,2,6,6],"span":[557,16,27]},{"path":[4,31,2,6,1],"span":[557,32,49]},{"path":[4,31,2,6,3],"span":[557,52,53]},{"path":[4,31,2,7],"span":[558,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,7,4],"span":[558,2,10]},{"path":[4,31,2,7,5],"span":[558,16,21]},{"path":[4,31,2,7,1],"span":[558,24,51]},{"path":[4,31,2,7,3],"span":[558,54,55]},{"path":[4,31,2,8],"span":[559,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,31,2,8,4],"span":[559,2,10]},{"path":[4,31,2,8,5],"span":[559,16,22]},{"path":[4,31,2,8,1],"span":[559,24,33]},{"path":[4,31,2,8,3],"span":[559,36,37]},{"path":[4,31,2,9],"span":[560,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,9,4],"span":[560,2,10]},{"path":[4,31,2,9,5],"span":[560,16,21]},{"path":[4,31,2,9,1],"span":[560,24,44]},{"path":[4,31,2,9,3],"span":[560,47,49]},{"path":[4,31,2,10],"span":[561,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,10,4],"span":[561,2,10]},{"path":[4,31,2,10,5],"span":[561,16,22]},{"path":[4,31,2,10,1],"span":[561,24,38]},{"path":[4,31,2,10,3],"span":[561,41,43]},{"path":[4,31,2,11],"span":[562,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,11,4],"span":[562,2,10]},{"path":[4,31,2,11,5],"span":[562,16,22]},{"path":[4,31,2,11,1],"span":[562,24,36]},{"path":[4,31,2,11,3],"span":[562,39,41]},{"path":[4,31,2,12],"span":[563,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,12,4],"span":[563,2,10]},{"path":[4,31,2,12,5],"span":[563,16,22]},{"path":[4,31,2,12,1],"span":[563,24,35]},{"path":[4,31,2,12,3],"span":[563,38,40]},{"path":[4,31,2,13],"span":[564,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,13,4],"span":[564,2,10]},{"path":[4,31,2,13,5],"span":[564,16,22]},{"path":[4,31,2,13,1],"span":[564,24,49]},{"path":[4,31,2,13,3],"span":[564,52,54]},{"path":[4,31,2,14],"span":[565,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,14,4],"span":[565,2,10]},{"path":[4,31,2,14,5],"span":[565,16,20]},{"path":[4,31,2,14,1],"span":[565,24,37]},{"path":[4,31,2,14,3],"span":[565,40,42]},{"path":[4,31,2,15],"span":[566,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,31,2,15,4],"span":[566,2,10]},{"path":[4,31,2,15,5],"span":[566,16,22]},{"path":[4,31,2,15,1],"span":[566,24,36]},{"path":[4,31,2,15,3],"span":[566,39,41]},{"path":[4,31,2,16],"span":[567,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,16,4],"span":[567,2,10]},{"path":[4,31,2,16,5],"span":[567,16,21]},{"path":[4,31,2,16,1],"span":[567,24,40]},{"path":[4,31,2,16,3],"span":[567,43,45]},{"path":[4,31,2,17],"span":[568,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,17,4],"span":[568,2,10]},{"path":[4,31,2,17,5],"span":[568,16,21]},{"path":[4,31,2,17,1],"span":[568,24,30]},{"path":[4,31,2,17,3],"span":[568,33,35]},{"path":[4,31,2,18],"span":[569,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,18,4],"span":[569,2,10]},{"path":[4,31,2,18,6],"span":[569,16,27]},{"path":[4,31,2,18,1],"span":[569,32,43]},{"path":[4,31,2,18,3],"span":[569,46,48]},{"path":[4,31,2,19],"span":[570,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,19,4],"span":[570,2,10]},{"path":[4,31,2,19,5],"span":[570,16,21]},{"path":[4,31,2,19,1],"span":[570,24,40]},{"path":[4,31,2,19,3],"span":[570,43,45]},{"path":[4,31,2,20],"span":[571,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,31,2,20,4],"span":[571,2,10]},{"path":[4,31,2,20,5],"span":[571,16,22]},{"path":[4,31,2,20,1],"span":[571,24,32]},{"path":[4,31,2,20,3],"span":[571,35,37]},{"path":[4,31,2,21],"span":[572,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,21,4],"span":[572,2,10]},{"path":[4,31,2,21,5],"span":[572,16,22]},{"path":[4,31,2,21,1],"span":[572,24,37]},{"path":[4,31,2,21,3],"span":[572,40,42]},{"path":[4,31,2,22],"span":[573,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,22,4],"span":[573,2,10]},{"path":[4,31,2,22,6],"span":[573,16,27]},{"path":[4,31,2,22,1],"span":[573,32,37]},{"path":[4,31,2,22,3],"span":[573,40,42]},{"path":[4,31,2,23],"span":[574,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,31,2,23,4],"span":[574,2,10]},{"path":[4,31,2,23,5],"span":[574,16,22]},{"path":[4,31,2,23,1],"span":[574,24,46]},{"path":[4,31,2,23,3],"span":[574,49,51]},{"path":[4,31,2,24],"span":[575,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,31,2,24,4],"span":[575,2,10]},{"path":[4,31,2,24,5],"span":[575,16,22]},{"path":[4,31,2,24,1],"span":[575,24,38]},{"path":[4,31,2,24,3],"span":[575,41,43]},{"path":[4,31,2,25],"span":[576,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,25,4],"span":[576,2,10]},{"path":[4,31,2,25,6],"span":[576,16,27]},{"path":[4,31,2,25,1],"span":[576,32,50]},{"path":[4,31,2,25,3],"span":[576,53,55]},{"path":[4,31,2,26],"span":[577,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,26,4],"span":[577,2,10]},{"path":[4,31,2,26,5],"span":[577,16,22]},{"path":[4,31,2,26,1],"span":[577,24,34]},{"path":[4,31,2,26,3],"span":[577,37,39]},{"path":[4,31,2,27],"span":[578,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,31,2,27,4],"span":[578,2,10]},{"path":[4,31,2,27,5],"span":[578,16,22]},{"path":[4,31,2,27,1],"span":[578,24,39]},{"path":[4,31,2,27,3],"span":[578,42,44]},{"path":[4,32],"span":[584,0,606,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,32,1],"span":[584,8,20]},{"path":[4,32,2,0],"span":[585,2,36],"trailingComments":" Windows: \"HL-DT-ST DVD+-RW GHB0N\", Linux: \"VMware SATA CD00\", Mac: \"NECVMWar VMware SATA CD01\"\tWindows, Linux, Mac\n"},{"path":[4,32,2,0,4],"span":[585,2,10]},{"path":[4,32,2,0,5],"span":[585,16,22]},{"path":[4,32,2,0,1],"span":[585,24,28]},{"path":[4,32,2,0,3],"span":[585,34,35]},{"path":[4,32,2,1],"span":[586,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,32,2,1,4],"span":[586,2,10]},{"path":[4,32,2,1,5],"span":[586,16,22]},{"path":[4,32,2,1,1],"span":[586,24,30]},{"path":[4,32,2,1,3],"span":[586,34,35]},{"path":[4,32,2,2],"span":[587,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,32,2,2,4],"span":[587,2,10]},{"path":[4,32,2,2,5],"span":[587,16,22]},{"path":[4,32,2,2,1],"span":[587,24,27]},{"path":[4,32,2,2,3],"span":[587,34,35]},{"path":[4,32,2,3],"span":[588,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,32,2,3,4],"span":[588,2,10]},{"path":[4,32,2,3,6],"span":[588,16,27]},{"path":[4,32,2,3,1],"span":[588,32,44]},{"path":[4,32,2,3,3],"span":[588,50,51]},{"path":[4,32,2,4],"span":[589,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,32,2,4,4],"span":[589,2,10]},{"path":[4,32,2,4,5],"span":[589,16,22]},{"path":[4,32,2,4,1],"span":[589,24,34]},{"path":[4,32,2,4,3],"span":[589,42,43]},{"path":[4,32,2,5],"span":[590,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,32,2,5,4],"span":[590,2,10]},{"path":[4,32,2,5,5],"span":[590,16,22]},{"path":[4,32,2,5,1],"span":[590,24,36]},{"path":[4,32,2,5,3],"span":[590,42,43]},{"path":[4,32,2,6],"span":[591,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,32,2,6,4],"span":[591,2,10]},{"path":[4,32,2,6,5],"span":[591,16,22]},{"path":[4,32,2,6,1],"span":[591,24,32]},{"path":[4,32,2,6,3],"span":[591,42,43]},{"path":[4,32,2,7],"span":[592,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,32,2,7,4],"span":[592,2,10]},{"path":[4,32,2,7,5],"span":[592,16,22]},{"path":[4,32,2,7,1],"span":[592,24,33]},{"path":[4,32,2,7,3],"span":[592,42,43]},{"path":[4,32,2,8],"span":[593,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,32,2,8,4],"span":[593,2,10]},{"path":[4,32,2,8,5],"span":[593,16,22]},{"path":[4,32,2,8,1],"span":[593,24,32]},{"path":[4,32,2,8,3],"span":[593,42,43]},{"path":[4,32,2,9],"span":[594,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,32,2,9,4],"span":[594,2,10]},{"path":[4,32,2,9,5],"span":[594,16,22]},{"path":[4,32,2,9,1],"span":[594,24,34]},{"path":[4,32,2,9,3],"span":[594,42,44]},{"path":[4,32,2,10],"span":[595,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,32,2,10,4],"span":[595,2,10]},{"path":[4,32,2,10,5],"span":[595,16,22]},{"path":[4,32,2,10,1],"span":[595,24,40]},{"path":[4,32,2,10,3],"span":[595,50,52]},{"path":[4,32,2,11],"span":[596,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,32,2,11,4],"span":[596,2,10]},{"path":[4,32,2,11,5],"span":[596,16,22]},{"path":[4,32,2,11,1],"span":[596,24,34]},{"path":[4,32,2,11,3],"span":[596,42,44]},{"path":[4,32,2,12],"span":[597,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,32,2,12,4],"span":[597,2,10]},{"path":[4,32,2,12,5],"span":[597,16,22]},{"path":[4,32,2,12,1],"span":[597,24,54]},{"path":[4,32,2,12,3],"span":[597,58,60]},{"path":[4,32,2,13],"span":[598,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,32,2,13,4],"span":[598,2,10]},{"path":[4,32,2,13,5],"span":[598,16,22]},{"path":[4,32,2,13,1],"span":[598,24,36]},{"path":[4,32,2,13,3],"span":[598,42,44]},{"path":[4,32,2,14],"span":[599,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,32,2,14,4],"span":[599,2,10]},{"path":[4,32,2,14,5],"span":[599,16,22]},{"path":[4,32,2,14,1],"span":[599,24,35]},{"path":[4,32,2,14,3],"span":[599,42,44]},{"path":[4,32,2,15],"span":[600,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,32,2,15,4],"span":[600,2,10]},{"path":[4,32,2,15,5],"span":[600,16,22]},{"path":[4,32,2,15,1],"span":[600,24,40]},{"path":[4,32,2,15,3],"span":[600,50,52]},{"path":[4,32,2,16],"span":[601,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,32,2,16,4],"span":[601,2,10]},{"path":[4,32,2,16,5],"span":[601,16,21]},{"path":[4,32,2,16,1],"span":[601,24,32]},{"path":[4,32,2,16,3],"span":[601,42,44]},{"path":[4,32,2,17],"span":[602,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,32,2,17,4],"span":[602,2,10]},{"path":[4,32,2,17,5],"span":[602,16,21]},{"path":[4,32,2,17,1],"span":[602,24,41]},{"path":[4,32,2,17,3],"span":[602,50,52]},{"path":[4,32,2,18],"span":[603,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,32,2,18,4],"span":[603,2,10]},{"path":[4,32,2,18,5],"span":[603,16,21]},{"path":[4,32,2,18,1],"span":[603,24,33]},{"path":[4,32,2,18,3],"span":[603,42,44]},{"path":[4,32,2,19],"span":[604,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,32,2,19,4],"span":[604,2,10]},{"path":[4,32,2,19,5],"span":[604,16,21]},{"path":[4,32,2,19,1],"span":[604,24,38]},{"path":[4,32,2,19,3],"span":[604,42,44]},{"path":[4,32,2,20],"span":[605,2,52],"trailingComments":" \tMac\n"},{"path":[4,32,2,20,4],"span":[605,2,10]},{"path":[4,32,2,20,5],"span":[605,16,22]},{"path":[4,32,2,20,1],"span":[605,24,46]},{"path":[4,32,2,20,3],"span":[605,49,51]},{"path":[4,33],"span":[611,0,624,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,33,1],"span":[611,8,19]},{"path":[4,33,2,0],"span":[612,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,33,2,0,5],"span":[612,2,8]},{"path":[4,33,2,0,1],"span":[612,9,13]},{"path":[4,33,2,0,3],"span":[612,16,17]},{"path":[4,33,2,1],"span":[613,2,43],"trailingComments":" Windows\n"},{"path":[4,33,2,1,4],"span":[613,2,10]},{"path":[4,33,2,1,5],"span":[613,11,17]},{"path":[4,33,2,1,1],"span":[613,24,38]},{"path":[4,33,2,1,3],"span":[613,41,42]},{"path":[4,33,2,2],"span":[614,2,37],"trailingComments":" Windows\n"},{"path":[4,33,2,2,4],"span":[614,2,10]},{"path":[4,33,2,2,5],"span":[614,11,15]},{"path":[4,33,2,2,1],"span":[614,16,32]},{"path":[4,33,2,2,3],"span":[614,35,36]},{"path":[4,33,2,3],"span":[615,2,34],"trailingComments":" Windows\n"},{"path":[4,33,2,3,4],"span":[615,2,10]},{"path":[4,33,2,3,5],"span":[615,11,15]},{"path":[4,33,2,3,1],"span":[615,16,29]},{"path":[4,33,2,3,3],"span":[615,32,33]},{"path":[4,33,2,4],"span":[616,2,37],"trailingComments":" Linux\n"},{"path":[4,33,2,4,4],"span":[616,2,10]},{"path":[4,33,2,4,5],"span":[616,11,17]},{"path":[4,33,2,4,1],"span":[616,24,32]},{"path":[4,33,2,4,3],"span":[616,35,36]},{"path":[4,33,2,5],"span":[617,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,33,2,5,4],"span":[617,2,10]},{"path":[4,33,2,5,5],"span":[617,11,17]},{"path":[4,33,2,5,1],"span":[617,24,36]},{"path":[4,33,2,5,3],"span":[617,39,40]},{"path":[4,33,2,6],"span":[618,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,33,2,6,4],"span":[618,2,10]},{"path":[4,33,2,6,5],"span":[618,11,17]},{"path":[4,33,2,6,1],"span":[618,24,37]},{"path":[4,33,2,6,3],"span":[618,40,41]},{"path":[4,33,2,7],"span":[619,2,32],"trailingComments":" Windows\n"},{"path":[4,33,2,7,4],"span":[619,2,10]},{"path":[4,33,2,7,5],"span":[619,11,17]},{"path":[4,33,2,7,1],"span":[619,24,27]},{"path":[4,33,2,7,3],"span":[619,30,31]},{"path":[4,33,2,8],"span":[620,2,33],"trailingComments":" Linux\n"},{"path":[4,33,2,8,4],"span":[620,2,10]},{"path":[4,33,2,8,5],"span":[620,11,17]},{"path":[4,33,2,8,1],"span":[620,24,28]},{"path":[4,33,2,8,3],"span":[620,31,32]},{"path":[4,33,2,9],"span":[621,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,33,2,9,4],"span":[621,2,10]},{"path":[4,33,2,9,5],"span":[621,11,17]},{"path":[4,33,2,9,1],"span":[621,24,31]},{"path":[4,33,2,9,3],"span":[621,34,36]},{"path":[4,33,2,10],"span":[623,2,41]},{"path":[4,33,2,10,4],"span":[623,2,10]},{"path":[4,33,2,10,6],"span":[623,11,28]},{"path":[4,33,2,10,1],"span":[623,29,35]},{"path":[4,33,2,10,3],"span":[623,38,40]},{"path":[4,34],"span":[629,0,634,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,34,1],"span":[629,8,25]},{"path":[4,34,2,0],"span":[630,2,40]},{"path":[4,34,2,0,4],"span":[630,2,10]},{"path":[4,34,2,0,5],"span":[630,11,17]},{"path":[4,34,2,0,1],"span":[630,24,35]},{"path":[4,34,2,0,3],"span":[630,38,39]},{"path":[4,34,2,1],"span":[631,2,28]},{"path":[4,34,2,1,4],"span":[631,2,10]},{"path":[4,34,2,1,5],"span":[631,11,15]},{"path":[4,34,2,1,1],"span":[631,16,23]},{"path":[4,34,2,1,3],"span":[631,26,27]},{"path":[4,34,2,2],"span":[632,2,32]},{"path":[4,34,2,2,4],"span":[632,2,10]},{"path":[4,34,2,2,5],"span":[632,11,17]},{"path":[4,34,2,2,1],"span":[632,24,27]},{"path":[4,34,2,2,3],"span":[632,30,31]},{"path":[4,34,2,3],"span":[633,2,32]},{"path":[4,34,2,3,4],"span":[633,2,10]},{"path":[4,34,2,3,6],"span":[633,11,22]},{"path":[4,34,2,3,1],"span":[633,23,27]},{"path":[4,34,2,3,3],"span":[633,30,31]},{"path":[4,35],"span":[639,0,643,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,35,1],"span":[639,8,14]},{"path":[4,35,2,0],"span":[640,4,29]},{"path":[4,35,2,0,5],"span":[640,4,9]},{"path":[4,35,2,0,1],"span":[640,10,24]},{"path":[4,35,2,0,3],"span":[640,27,28]},{"path":[4,35,2,1],"span":[641,4,48]},{"path":[4,35,2,1,4],"span":[641,4,12]},{"path":[4,35,2,1,6],"span":[641,13,27]},{"path":[4,35,2,1,1],"span":[641,28,43]},{"path":[4,35,2,1,3],"span":[641,46,47]},{"path":[4,35,2,2],"span":[642,4,42]},{"path":[4,35,2,2,4],"span":[642,4,12]},{"path":[4,35,2,2,6],"span":[642,13,24]},{"path":[4,35,2,2,1],"span":[642,25,37]},{"path":[4,35,2,2,3],"span":[642,40,41]},{"path":[4,36],"span":[646,0,669,1],"leadingComments":" MemoryEntry *"},{"path":[4,36,1],"span":[646,8,22]},{"path":[4,36,2,0],"span":[648,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,36,2,0,4],"span":[648,4,12]},{"path":[4,36,2,0,5],"span":[648,14,19]},{"path":[4,36,2,0,1],"span":[648,20,24]},{"path":[4,36,2,0,3],"span":[648,27,29]},{"path":[4,36,2,1],"span":[649,4,40],"trailingComments":"\tLinux\n"},{"path":[4,36,2,1,4],"span":[649,4,12]},{"path":[4,36,2,1,5],"span":[649,13,19]},{"path":[4,36,2,1,1],"span":[649,24,36]},{"path":[4,36,2,1,3],"span":[649,38,39]},{"path":[4,36,2,2],"span":[650,4,51],"trailingComments":"\tWindows\n"},{"path":[4,36,2,2,4],"span":[650,4,12]},{"path":[4,36,2,2,5],"span":[650,13,18]},{"path":[4,36,2,2,1],"span":[650,24,46]},{"path":[4,36,2,2,3],"span":[650,49,50]},{"path":[4,36,2,3],"span":[651,4,46],"trailingComments":"\tWindows\n"},{"path":[4,36,2,3,4],"span":[651,4,12]},{"path":[4,36,2,3,5],"span":[651,13,18]},{"path":[4,36,2,3,1],"span":[651,24,42]},{"path":[4,36,2,3,3],"span":[651,44,45]},{"path":[4,36,2,4],"span":[652,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,36,2,4,4],"span":[652,4,12]},{"path":[4,36,2,4,5],"span":[652,13,18]},{"path":[4,36,2,4,1],"span":[652,24,34]},{"path":[4,36,2,4,3],"span":[652,36,37]},{"path":[4,36,2,5],"span":[653,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,36,2,5,4],"span":[653,4,12]},{"path":[4,36,2,5,5],"span":[653,13,19]},{"path":[4,36,2,5,1],"span":[653,24,38]},{"path":[4,36,2,5,3],"span":[653,40,41]},{"path":[4,36,2,6],"span":[654,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,36,2,6,4],"span":[654,4,12]},{"path":[4,36,2,6,6],"span":[654,13,24]},{"path":[4,36,2,6,1],"span":[654,32,43]},{"path":[4,36,2,6,3],"span":[654,45,46]},{"path":[4,36,2,7],"span":[655,4,49],"trailingComments":"\tWindows\n"},{"path":[4,36,2,7,4],"span":[655,4,12]},{"path":[4,36,2,7,5],"span":[655,13,18]},{"path":[4,36,2,7,1],"span":[655,24,45]},{"path":[4,36,2,7,3],"span":[655,47,48]},{"path":[4,36,2,8],"span":[656,4,55],"trailingComments":"\tWindows\n"},{"path":[4,36,2,8,4],"span":[656,4,12]},{"path":[4,36,2,8,6],"span":[656,13,24]},{"path":[4,36,2,8,1],"span":[656,32,51]},{"path":[4,36,2,8,3],"span":[656,53,54]},{"path":[4,36,2,9],"span":[657,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,36,2,9,4],"span":[657,4,12]},{"path":[4,36,2,9,5],"span":[657,13,19]},{"path":[4,36,2,9,1],"span":[657,24,36]},{"path":[4,36,2,9,3],"span":[657,38,39]},{"path":[4,36,2,10],"span":[658,4,33],"trailingComments":"\tMac\n"},{"path":[4,36,2,10,4],"span":[658,4,12]},{"path":[4,36,2,10,5],"span":[658,13,19]},{"path":[4,36,2,10,1],"span":[658,24,28]},{"path":[4,36,2,10,3],"span":[658,30,32]},{"path":[4,36,2,11],"span":[659,4,40],"trailingComments":"\tWindows\n"},{"path":[4,36,2,11,4],"span":[659,4,12]},{"path":[4,36,2,11,5],"span":[659,13,19]},{"path":[4,36,2,11,1],"span":[659,24,35]},{"path":[4,36,2,11,3],"span":[659,37,39]},{"path":[4,36,2,12],"span":[660,4,44],"trailingComments":"\tWindows\n"},{"path":[4,36,2,12,4],"span":[660,4,12]},{"path":[4,36,2,12,5],"span":[660,13,18]},{"path":[4,36,2,12,1],"span":[660,24,39]},{"path":[4,36,2,12,3],"span":[660,41,43]},{"path":[4,36,2,13],"span":[661,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,36,2,13,4],"span":[661,4,12]},{"path":[4,36,2,13,5],"span":[661,13,19]},{"path":[4,36,2,13,1],"span":[661,24,37]},{"path":[4,36,2,13,3],"span":[661,39,41]},{"path":[4,36,2,14],"span":[662,4,32],"trailingComments":"\tLinux\n"},{"path":[4,36,2,14,4],"span":[662,4,12]},{"path":[4,36,2,14,5],"span":[662,13,19]},{"path":[4,36,2,14,1],"span":[662,24,27]},{"path":[4,36,2,14,3],"span":[662,29,31]},{"path":[4,36,2,15],"span":[663,4,32],"trailingComments":"\tWindows\n"},{"path":[4,36,2,15,4],"span":[663,4,12]},{"path":[4,36,2,15,5],"span":[663,13,19]},{"path":[4,36,2,15,1],"span":[663,24,27]},{"path":[4,36,2,15,3],"span":[663,29,31]},{"path":[4,36,2,16],"span":[664,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,36,2,16,4],"span":[664,4,12]},{"path":[4,36,2,16,5],"span":[664,13,18]},{"path":[4,36,2,16,1],"span":[664,24,29]},{"path":[4,36,2,16,3],"span":[664,31,33]},{"path":[4,36,2,17],"span":[665,4,34],"trailingComments":"\tMac\n"},{"path":[4,36,2,17,4],"span":[665,4,12]},{"path":[4,36,2,17,5],"span":[665,13,19]},{"path":[4,36,2,17,1],"span":[665,24,29]},{"path":[4,36,2,17,3],"span":[665,31,33]},{"path":[4,36,2,18],"span":[666,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,36,2,18,4],"span":[666,4,12]},{"path":[4,36,2,18,5],"span":[666,13,18]},{"path":[4,36,2,18,1],"span":[666,24,35]},{"path":[4,36,2,18,3],"span":[666,37,39]},{"path":[4,36,2,19],"span":[667,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,36,2,19,4],"span":[667,4,12]},{"path":[4,36,2,19,6],"span":[667,13,24]},{"path":[4,36,2,19,1],"span":[667,32,36]},{"path":[4,36,2,19,3],"span":[667,38,40]},{"path":[4,36,2,20],"span":[668,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,36,2,20,4],"span":[668,4,12]},{"path":[4,36,2,20,6],"span":[668,13,24]},{"path":[4,36,2,20,1],"span":[668,32,43]},{"path":[4,36,2,20,3],"span":[668,45,47]},{"path":[4,37],"span":[673,0,680,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,37,1],"span":[673,8,19]},{"path":[4,37,2,0],"span":[674,2,40],"trailingComments":"\tWindows\n"},{"path":[4,37,2,0,4],"span":[674,2,10]},{"path":[4,37,2,0,5],"span":[674,11,16]},{"path":[4,37,2,0,1],"span":[674,24,36]},{"path":[4,37,2,0,3],"span":[674,38,39]},{"path":[4,37,2,1],"span":[675,2,36],"trailingComments":"\tWindows\n"},{"path":[4,37,2,1,4],"span":[675,2,10]},{"path":[4,37,2,1,6],"span":[675,11,22]},{"path":[4,37,2,1,1],"span":[675,24,32]},{"path":[4,37,2,1,3],"span":[675,34,35]},{"path":[4,37,2,2],"span":[676,2,42],"trailingComments":"\tWindows\n"},{"path":[4,37,2,2,4],"span":[676,2,10]},{"path":[4,37,2,2,5],"span":[676,11,16]},{"path":[4,37,2,2,1],"span":[676,24,38]},{"path":[4,37,2,2,3],"span":[676,40,41]},{"path":[4,37,2,3],"span":[677,2,51],"trailingComments":"\tWindows\n"},{"path":[4,37,2,3,4],"span":[677,2,10]},{"path":[4,37,2,3,6],"span":[677,11,22]},{"path":[4,37,2,3,1],"span":[677,24,47]},{"path":[4,37,2,3,3],"span":[677,49,50]},{"path":[4,37,2,4],"span":[678,2,31],"trailingComments":"\tWindows\n"},{"path":[4,37,2,4,4],"span":[678,2,10]},{"path":[4,37,2,4,5],"span":[678,11,17]},{"path":[4,37,2,4,1],"span":[678,24,27]},{"path":[4,37,2,4,3],"span":[678,29,30]},{"path":[4,37,2,5],"span":[679,2,31],"trailingComments":"\tWindows\n"},{"path":[4,37,2,5,4],"span":[679,2,10]},{"path":[4,37,2,5,6],"span":[679,11,22]},{"path":[4,37,2,5,1],"span":[679,24,27]},{"path":[4,37,2,5,3],"span":[679,29,30]},{"path":[4,38],"span":[686,0,689,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,38,1],"span":[686,8,19]},{"path":[4,38,2,0],"span":[687,2,18]},{"path":[4,38,2,0,5],"span":[687,2,7]},{"path":[4,38,2,0,1],"span":[687,8,13]},{"path":[4,38,2,0,3],"span":[687,16,17]},{"path":[4,38,2,1],"span":[688,2,27]},{"path":[4,38,2,1,4],"span":[688,2,10]},{"path":[4,38,2,1,5],"span":[688,11,17]},{"path":[4,38,2,1,1],"span":[688,18,22]},{"path":[4,38,2,1,3],"span":[688,25,26]},{"path":[4,39],"span":[692,0,695,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,39,1],"span":[692,8,24]},{"path":[4,39,2,0],"span":[693,2,42]},{"path":[4,39,2,0,6],"span":[693,2,27]},{"path":[4,39,2,0,1],"span":[693,28,37]},{"path":[4,39,2,0,3],"span":[693,40,41]},{"path":[4,39,2,1],"span":[694,2,31]},{"path":[4,39,2,1,4],"span":[694,2,10]},{"path":[4,39,2,1,6],"span":[694,11,18]},{"path":[4,39,2,1,1],"span":[694,19,26]},{"path":[4,39,2,1,3],"span":[694,29,30]},{"path":[4,40],"span":[699,0,720,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,40,1],"span":[699,8,15]},{"path":[4,40,2,0],"span":[701,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,40,2,0,4],"span":[701,2,10]},{"path":[4,40,2,0,5],"span":[701,11,16]},{"path":[4,40,2,0,1],"span":[701,17,19]},{"path":[4,40,2,0,3],"span":[701,22,23]},{"path":[4,40,2,1],"span":[704,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,40,2,1,4],"span":[704,2,10]},{"path":[4,40,2,1,5],"span":[704,11,16]},{"path":[4,40,2,1,1],"span":[704,17,24]},{"path":[4,40,2,1,3],"span":[704,27,28]},{"path":[4,40,2,2],"span":[706,2,23]},{"path":[4,40,2,2,5],"span":[706,2,8]},{"path":[4,40,2,2,1],"span":[706,9,18]},{"path":[4,40,2,2,3],"span":[706,21,22]},{"path":[4,40,2,3],"span":[707,2,24]},{"path":[4,40,2,3,5],"span":[707,2,8]},{"path":[4,40,2,3,1],"span":[707,9,19]},{"path":[4,40,2,3,3],"span":[707,22,23]},{"path":[4,40,2,4],"span":[709,2,36]},{"path":[4,40,2,4,4],"span":[709,2,10]},{"path":[4,40,2,4,5],"span":[709,11,17]},{"path":[4,40,2,4,1],"span":[709,18,31]},{"path":[4,40,2,4,3],"span":[709,34,35]},{"path":[4,40,2,5],"span":[710,2,50]},{"path":[4,40,2,5,6],"span":[710,2,27]},{"path":[4,40,2,5,1],"span":[710,28,45]},{"path":[4,40,2,5,3],"span":[710,48,49]},{"path":[4,40,8,0],"span":[712,2,714,3]},{"path":[4,40,8,0,1],"span":[712,8,12]},{"path":[4,40,2,6],"span":[713,4,36]},{"path":[4,40,2,6,6],"span":[713,4,22]},{"path":[4,40,2,6,1],"span":[713,23,30]},{"path":[4,40,2,6,3],"span":[713,33,35]},{"path":[4,40,2,7],"span":[717,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,40,2,7,4],"span":[717,2,10]},{"path":[4,40,2,7,6],"span":[717,11,23]},{"path":[4,40,2,7,1],"span":[717,24,37]},{"path":[4,40,2,7,3],"span":[717,40,42]},{"path":[4,40,2,8],"span":[719,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,40,2,8,4],"span":[719,2,10]},{"path":[4,40,2,8,6],"span":[719,11,25]},{"path":[4,40,2,8,1],"span":[719,26,41]},{"path":[4,40,2,8,3],"span":[719,44,46]},{"path":[4,41],"span":[722,0,731,1]},{"path":[4,41,1],"span":[722,8,26]},{"path":[4,41,2,0],"span":[723,2,19]},{"path":[4,41,2,0,5],"span":[723,2,8]},{"path":[4,41,2,0,1],"span":[723,9,14]},{"path":[4,41,2,0,3],"span":[723,17,18]},{"path":[4,41,2,1],"span":[724,2,36]},{"path":[4,41,2,1,4],"span":[724,2,10]},{"path":[4,41,2,1,5],"span":[724,11,17]},{"path":[4,41,2,1,1],"span":[724,18,31]},{"path":[4,41,2,1,3],"span":[724,34,35]},{"path":[4,41,2,2],"span":[725,2,36]},{"path":[4,41,2,2,4],"span":[725,2,10]},{"path":[4,41,2,2,5],"span":[725,11,17]},{"path":[4,41,2,2,1],"span":[725,18,31]},{"path":[4,41,2,2,3],"span":[725,34,35]},{"path":[4,41,2,3],"span":[726,2,33]},{"path":[4,41,2,3,4],"span":[726,2,10]},{"path":[4,41,2,3,5],"span":[726,11,17]},{"path":[4,41,2,3,1],"span":[726,18,28]},{"path":[4,41,2,3,3],"span":[726,31,32]},{"path":[4,41,2,4],"span":[727,2,40]},{"path":[4,41,2,4,4],"span":[727,2,10]},{"path":[4,41,2,4,5],"span":[727,11,17]},{"path":[4,41,2,4,1],"span":[727,18,35]},{"path":[4,41,2,4,3],"span":[727,38,39]},{"path":[4,41,2,5],"span":[728,2,39]},{"path":[4,41,2,5,4],"span":[728,2,10]},{"path":[4,41,2,5,5],"span":[728,11,17]},{"path":[4,41,2,5,1],"span":[728,18,34]},{"path":[4,41,2,5,3],"span":[728,37,38]},{"path":[4,41,2,6],"span":[729,2,59]},{"path":[4,41,2,6,4],"span":[729,2,10]},{"path":[4,41,2,6,6],"span":[729,11,36]},{"path":[4,41,2,6,1],"span":[729,37,54]},{"path":[4,41,2,6,3],"span":[729,57,58]},{"path":[4,41,2,7],"span":[730,2,32]},{"path":[4,41,2,7,4],"span":[730,2,10]},{"path":[4,41,2,7,5],"span":[730,11,17]},{"path":[4,41,2,7,1],"span":[730,18,27]},{"path":[4,41,2,7,3],"span":[730,30,31]},{"path":[4,42],"span":[736,0,742,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,42,1],"span":[736,8,25]},{"path":[4,42,2,0],"span":[737,2,27]},{"path":[4,42,2,0,4],"span":[737,2,10]},{"path":[4,42,2,0,5],"span":[737,11,17]},{"path":[4,42,2,0,1],"span":[737,18,22]},{"path":[4,42,2,0,3],"span":[737,25,26]},{"path":[4,42,2,1],"span":[738,2,27]},{"path":[4,42,2,1,4],"span":[738,2,10]},{"path":[4,42,2,1,5],"span":[738,11,17]},{"path":[4,42,2,1,1],"span":[738,18,22]},{"path":[4,42,2,1,3],"span":[738,25,26]},{"path":[4,42,2,2],"span":[739,2,28]},{"path":[4,42,2,2,4],"span":[739,2,10]},{"path":[4,42,2,2,5],"span":[739,11,15]},{"path":[4,42,2,2,1],"span":[739,16,23]},{"path":[4,42,2,2,3],"span":[739,26,27]},{"path":[4,42,2,3],"span":[740,2,31]},{"path":[4,42,2,3,4],"span":[740,2,10]},{"path":[4,42,2,3,5],"span":[740,11,15]},{"path":[4,42,2,3,1],"span":[740,16,26]},{"path":[4,42,2,3,3],"span":[740,29,30]},{"path":[4,42,2,4],"span":[741,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,42,2,4,4],"span":[741,2,10]},{"path":[4,42,2,4,6],"span":[741,11,19]},{"path":[4,42,2,4,1],"span":[741,20,28]},{"path":[4,42,2,4,3],"span":[741,31,32]},{"path":[4,43],"span":[751,0,754,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,43,1],"span":[751,8,25]},{"path":[4,43,2,0],"span":[752,2,42]},{"path":[4,43,2,0,6],"span":[752,2,27]},{"path":[4,43,2,0,1],"span":[752,28,37]},{"path":[4,43,2,0,3],"span":[752,40,41]},{"path":[4,43,2,1],"span":[753,2,33]},{"path":[4,43,2,1,4],"span":[753,2,10]},{"path":[4,43,2,1,6],"span":[753,11,19]},{"path":[4,43,2,1,1],"span":[753,20,28]},{"path":[4,43,2,1,3],"span":[753,31,32]},{"path":[4,44],"span":[763,0,801,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,44,1],"span":[763,8,16]},{"path":[4,44,2,0],"span":[765,2,26]},{"path":[4,44,2,0,4],"span":[765,2,10]},{"path":[4,44,2,0,5],"span":[765,11,16]},{"path":[4,44,2,0,1],"span":[765,17,21]},{"path":[4,44,2,0,3],"span":[765,24,25]},{"path":[4,44,2,1],"span":[766,2,29]},{"path":[4,44,2,1,4],"span":[766,2,10]},{"path":[4,44,2,1,5],"span":[766,11,16]},{"path":[4,44,2,1,1],"span":[766,17,24]},{"path":[4,44,2,1,3],"span":[766,27,28]},{"path":[4,44,2,2],"span":[767,2,28]},{"path":[4,44,2,2,4],"span":[767,2,10]},{"path":[4,44,2,2,5],"span":[767,11,16]},{"path":[4,44,2,2,1],"span":[767,17,23]},{"path":[4,44,2,2,3],"span":[767,26,27]},{"path":[4,44,2,3],"span":[770,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,44,2,3,4],"span":[770,2,10]},{"path":[4,44,2,3,5],"span":[770,11,16]},{"path":[4,44,2,3,1],"span":[770,17,24]},{"path":[4,44,2,3,3],"span":[770,27,28]},{"path":[4,44,2,4],"span":[773,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,44,2,4,4],"span":[773,2,10]},{"path":[4,44,2,4,5],"span":[773,11,16]},{"path":[4,44,2,4,1],"span":[773,17,22]},{"path":[4,44,2,4,3],"span":[773,25,26]},{"path":[4,44,2,5],"span":[776,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,44,2,5,4],"span":[776,2,10]},{"path":[4,44,2,5,5],"span":[776,11,16]},{"path":[4,44,2,5,1],"span":[776,17,26]},{"path":[4,44,2,5,3],"span":[776,29,30]},{"path":[4,44,2,6],"span":[778,2,32]},{"path":[4,44,2,6,4],"span":[778,2,10]},{"path":[4,44,2,6,5],"span":[778,11,17]},{"path":[4,44,2,6,1],"span":[778,18,27]},{"path":[4,44,2,6,3],"span":[778,30,31]},{"path":[4,44,2,7],"span":[779,2,31]},{"path":[4,44,2,7,4],"span":[779,2,10]},{"path":[4,44,2,7,5],"span":[779,11,17]},{"path":[4,44,2,7,1],"span":[779,18,26]},{"path":[4,44,2,7,3],"span":[779,29,30]},{"path":[4,44,2,8],"span":[780,2,32]},{"path":[4,44,2,8,4],"span":[780,2,10]},{"path":[4,44,2,8,5],"span":[780,11,17]},{"path":[4,44,2,8,1],"span":[780,18,27]},{"path":[4,44,2,8,3],"span":[780,30,31]},{"path":[4,44,2,9],"span":[781,2,28]},{"path":[4,44,2,9,4],"span":[781,2,10]},{"path":[4,44,2,9,5],"span":[781,11,17]},{"path":[4,44,2,9,1],"span":[781,18,22]},{"path":[4,44,2,9,3],"span":[781,25,27]},{"path":[4,44,2,10],"span":[782,2,31]},{"path":[4,44,2,10,4],"span":[782,2,10]},{"path":[4,44,2,10,5],"span":[782,11,17]},{"path":[4,44,2,10,1],"span":[782,18,25]},{"path":[4,44,2,10,3],"span":[782,28,30]},{"path":[4,44,2,11],"span":[783,2,34]},{"path":[4,44,2,11,4],"span":[783,2,10]},{"path":[4,44,2,11,5],"span":[783,11,17]},{"path":[4,44,2,11,1],"span":[783,18,28]},{"path":[4,44,2,11,3],"span":[783,31,33]},{"path":[4,44,2,12],"span":[784,2,31]},{"path":[4,44,2,12,4],"span":[784,2,10]},{"path":[4,44,2,12,5],"span":[784,11,17]},{"path":[4,44,2,12,1],"span":[784,18,25]},{"path":[4,44,2,12,3],"span":[784,28,30]},{"path":[4,44,2,13],"span":[785,2,29]},{"path":[4,44,2,13,4],"span":[785,2,10]},{"path":[4,44,2,13,5],"span":[785,11,17]},{"path":[4,44,2,13,1],"span":[785,18,23]},{"path":[4,44,2,13,3],"span":[785,26,28]},{"path":[4,44,2,14],"span":[786,2,28]},{"path":[4,44,2,14,4],"span":[786,2,10]},{"path":[4,44,2,14,5],"span":[786,11,17]},{"path":[4,44,2,14,1],"span":[786,18,22]},{"path":[4,44,2,14,3],"span":[786,25,27]},{"path":[4,44,2,15],"span":[787,2,28]},{"path":[4,44,2,15,4],"span":[787,2,10]},{"path":[4,44,2,15,5],"span":[787,11,17]},{"path":[4,44,2,15,1],"span":[787,18,22]},{"path":[4,44,2,15,3],"span":[787,25,27]},{"path":[4,44,2,16],"span":[789,2,27]},{"path":[4,44,2,16,4],"span":[789,2,10]},{"path":[4,44,2,16,5],"span":[789,11,17]},{"path":[4,44,2,16,1],"span":[789,18,21]},{"path":[4,44,2,16,3],"span":[789,24,26]},{"path":[4,44,2,17],"span":[791,2,23]},{"path":[4,44,2,17,6],"span":[791,2,13]},{"path":[4,44,2,17,1],"span":[791,14,17]},{"path":[4,44,2,17,3],"span":[791,20,22]},{"path":[4,44,2,18],"span":[792,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,44,2,18,4],"span":[792,2,10]},{"path":[4,44,2,18,5],"span":[792,11,17]},{"path":[4,44,2,18,1],"span":[792,18,26]},{"path":[4,44,2,18,3],"span":[792,29,31]},{"path":[4,44,2,19],"span":[793,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,44,2,19,4],"span":[793,2,10]},{"path":[4,44,2,19,5],"span":[793,11,17]},{"path":[4,44,2,19,1],"span":[793,18,26]},{"path":[4,44,2,19,3],"span":[793,29,31]},{"path":[4,44,2,20],"span":[796,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,44,2,20,4],"span":[796,2,10]},{"path":[4,44,2,20,6],"span":[796,11,23]},{"path":[4,44,2,20,1],"span":[796,24,37]},{"path":[4,44,2,20,3],"span":[796,40,42]},{"path":[4,44,2,21],"span":[798,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,44,2,21,4],"span":[798,2,10]},{"path":[4,44,2,21,6],"span":[798,11,26]},{"path":[4,44,2,21,1],"span":[798,27,43]},{"path":[4,44,2,21,3],"span":[798,46,48]},{"path":[4,44,2,22],"span":[800,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,44,2,22,4],"span":[800,2,10]},{"path":[4,44,2,22,6],"span":[800,11,26]},{"path":[4,44,2,22,1],"span":[800,27,41]},{"path":[4,44,2,22,3],"span":[800,44,46]},{"path":[4,45],"span":[806,0,820,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,45,1],"span":[806,8,19]},{"path":[4,45,2,0],"span":[807,2,18]},{"path":[4,45,2,0,5],"span":[807,2,8]},{"path":[4,45,2,0,1],"span":[807,9,13]},{"path":[4,45,2,0,3],"span":[807,16,17]},{"path":[4,45,2,1],"span":[809,2,29]},{"path":[4,45,2,1,4],"span":[809,2,10]},{"path":[4,45,2,1,5],"span":[809,11,17]},{"path":[4,45,2,1,1],"span":[809,18,24]},{"path":[4,45,2,1,3],"span":[809,27,28]},{"path":[4,45,2,2],"span":[810,2,30]},{"path":[4,45,2,2,4],"span":[810,2,10]},{"path":[4,45,2,2,5],"span":[810,11,17]},{"path":[4,45,2,2,1],"span":[810,18,25]},{"path":[4,45,2,2,3],"span":[810,28,29]},{"path":[4,45,2,3],"span":[811,2,27]},{"path":[4,45,2,3,4],"span":[811,2,10]},{"path":[4,45,2,3,5],"span":[811,11,17]},{"path":[4,45,2,3,1],"span":[811,18,22]},{"path":[4,45,2,3,3],"span":[811,25,26]},{"path":[4,45,2,4],"span":[812,2,31]},{"path":[4,45,2,4,4],"span":[812,2,10]},{"path":[4,45,2,4,5],"span":[812,11,17]},{"path":[4,45,2,4,1],"span":[812,18,26]},{"path":[4,45,2,4,3],"span":[812,29,30]},{"path":[4,45,2,5],"span":[813,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,45,2,5,4],"span":[813,2,10]},{"path":[4,45,2,5,5],"span":[813,11,17]},{"path":[4,45,2,5,1],"span":[813,18,22]},{"path":[4,45,2,5,3],"span":[813,25,26]},{"path":[4,45,2,6],"span":[814,2,54]},{"path":[4,45,2,6,4],"span":[814,2,10]},{"path":[4,45,2,6,6],"span":[814,11,36]},{"path":[4,45,2,6,1],"span":[814,37,49]},{"path":[4,45,2,6,3],"span":[814,52,53]},{"path":[4,45,2,7],"span":[815,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,45,2,7,4],"span":[815,2,10]},{"path":[4,45,2,7,5],"span":[815,11,17]},{"path":[4,45,2,7,1],"span":[815,18,29]},{"path":[4,45,2,7,3],"span":[815,32,33]},{"path":[4,45,2,8],"span":[817,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,45,2,8,4],"span":[817,2,10]},{"path":[4,45,2,8,5],"span":[817,11,17]},{"path":[4,45,2,8,1],"span":[817,18,23]},{"path":[4,45,2,8,3],"span":[817,26,27]},{"path":[4,45,2,9],"span":[819,2,37]},{"path":[4,45,2,9,4],"span":[819,2,10]},{"path":[4,45,2,9,5],"span":[819,11,15]},{"path":[4,45,2,9,1],"span":[819,16,31]},{"path":[4,45,2,9,3],"span":[819,34,36]},{"path":[4,46],"span":[824,0,858,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,46,1],"span":[824,8,20]},{"path":[4,46,2,0],"span":[825,2,16]},{"path":[4,46,2,0,5],"span":[825,2,7]},{"path":[4,46,2,0,1],"span":[825,9,11]},{"path":[4,46,2,0,3],"span":[825,14,15]},{"path":[4,46,2,1],"span":[826,2,23]},{"path":[4,46,2,1,5],"span":[826,2,8]},{"path":[4,46,2,1,1],"span":[826,9,18]},{"path":[4,46,2,1,3],"span":[826,21,22]},{"path":[4,46,2,2],"span":[828,2,32]},{"path":[4,46,2,2,4],"span":[828,2,10]},{"path":[4,46,2,2,5],"span":[828,11,16]},{"path":[4,46,2,2,1],"span":[828,17,26]},{"path":[4,46,2,2,3],"span":[828,29,31]},{"path":[4,46,2,3],"span":[829,2,58]},{"path":[4,46,2,3,4],"span":[829,2,10]},{"path":[4,46,2,3,6],"span":[829,11,36]},{"path":[4,46,2,3,1],"span":[829,37,53]},{"path":[4,46,2,3,3],"span":[829,56,57]},{"path":[4,46,2,4],"span":[831,2,35]},{"path":[4,46,2,4,4],"span":[831,2,10]},{"path":[4,46,2,4,5],"span":[831,11,17]},{"path":[4,46,2,4,1],"span":[831,18,30]},{"path":[4,46,2,4,3],"span":[831,33,34]},{"path":[4,46,2,5],"span":[832,2,37]},{"path":[4,46,2,5,4],"span":[832,2,10]},{"path":[4,46,2,5,5],"span":[832,11,17]},{"path":[4,46,2,5,1],"span":[832,18,32]},{"path":[4,46,2,5,3],"span":[832,35,36]},{"path":[4,46,2,6],"span":[833,2,39]},{"path":[4,46,2,6,4],"span":[833,2,10]},{"path":[4,46,2,6,5],"span":[833,11,17]},{"path":[4,46,2,6,1],"span":[833,18,34]},{"path":[4,46,2,6,3],"span":[833,37,38]},{"path":[4,46,2,7],"span":[834,2,35]},{"path":[4,46,2,7,4],"span":[834,2,10]},{"path":[4,46,2,7,5],"span":[834,11,17]},{"path":[4,46,2,7,1],"span":[834,18,30]},{"path":[4,46,2,7,3],"span":[834,33,34]},{"path":[4,46,2,8],"span":[835,2,43]},{"path":[4,46,2,8,4],"span":[835,2,10]},{"path":[4,46,2,8,5],"span":[835,11,17]},{"path":[4,46,2,8,1],"span":[835,18,37]},{"path":[4,46,2,8,3],"span":[835,40,42]},{"path":[4,46,2,9],"span":[836,2,35]},{"path":[4,46,2,9,4],"span":[836,2,10]},{"path":[4,46,2,9,5],"span":[836,11,17]},{"path":[4,46,2,9,1],"span":[836,18,29]},{"path":[4,46,2,9,3],"span":[836,32,34]},{"path":[4,46,2,10],"span":[837,2,35]},{"path":[4,46,2,10,4],"span":[837,2,10]},{"path":[4,46,2,10,5],"span":[837,11,17]},{"path":[4,46,2,10,1],"span":[837,18,29]},{"path":[4,46,2,10,3],"span":[837,32,34]},{"path":[4,46,2,11],"span":[838,2,37]},{"path":[4,46,2,11,4],"span":[838,2,10]},{"path":[4,46,2,11,5],"span":[838,11,17]},{"path":[4,46,2,11,1],"span":[838,18,31]},{"path":[4,46,2,11,3],"span":[838,34,36]},{"path":[4,46,2,12],"span":[839,2,40]},{"path":[4,46,2,12,4],"span":[839,2,10]},{"path":[4,46,2,12,5],"span":[839,11,17]},{"path":[4,46,2,12,1],"span":[839,18,34]},{"path":[4,46,2,12,3],"span":[839,37,39]},{"path":[4,46,2,13],"span":[840,2,39]},{"path":[4,46,2,13,4],"span":[840,2,10]},{"path":[4,46,2,13,5],"span":[840,11,17]},{"path":[4,46,2,13,1],"span":[840,18,33]},{"path":[4,46,2,13,3],"span":[840,36,38]},{"path":[4,46,2,14],"span":[841,2,36]},{"path":[4,46,2,14,4],"span":[841,2,10]},{"path":[4,46,2,14,5],"span":[841,11,17]},{"path":[4,46,2,14,1],"span":[841,18,30]},{"path":[4,46,2,14,3],"span":[841,33,35]},{"path":[4,46,2,15],"span":[842,2,43]},{"path":[4,46,2,15,4],"span":[842,2,10]},{"path":[4,46,2,15,5],"span":[842,11,17]},{"path":[4,46,2,15,1],"span":[842,18,37]},{"path":[4,46,2,15,3],"span":[842,40,42]},{"path":[4,46,2,16],"span":[843,2,37]},{"path":[4,46,2,16,4],"span":[843,2,10]},{"path":[4,46,2,16,5],"span":[843,11,17]},{"path":[4,46,2,16,1],"span":[843,18,31]},{"path":[4,46,2,16,3],"span":[843,34,36]},{"path":[4,46,2,17],"span":[844,2,40]},{"path":[4,46,2,17,4],"span":[844,2,10]},{"path":[4,46,2,17,5],"span":[844,11,17]},{"path":[4,46,2,17,1],"span":[844,18,34]},{"path":[4,46,2,17,3],"span":[844,37,39]},{"path":[4,46,2,18],"span":[845,2,41]},{"path":[4,46,2,18,4],"span":[845,2,10]},{"path":[4,46,2,18,5],"span":[845,11,17]},{"path":[4,46,2,18,1],"span":[845,18,35]},{"path":[4,46,2,18,3],"span":[845,38,40]},{"path":[4,46,2,19],"span":[846,2,39]},{"path":[4,46,2,19,4],"span":[846,2,10]},{"path":[4,46,2,19,5],"span":[846,11,17]},{"path":[4,46,2,19,1],"span":[846,18,33]},{"path":[4,46,2,19,3],"span":[846,36,38]},{"path":[4,46,2,20],"span":[847,2,41]},{"path":[4,46,2,20,4],"span":[847,2,10]},{"path":[4,46,2,20,5],"span":[847,11,17]},{"path":[4,46,2,20,1],"span":[847,18,35]},{"path":[4,46,2,20,3],"span":[847,38,40]},{"path":[4,46,2,21],"span":[848,2,38]},{"path":[4,46,2,21,4],"span":[848,2,10]},{"path":[4,46,2,21,5],"span":[848,11,17]},{"path":[4,46,2,21,1],"span":[848,18,32]},{"path":[4,46,2,21,3],"span":[848,35,37]},{"path":[4,46,2,22],"span":[850,2,36]},{"path":[4,46,2,22,4],"span":[850,2,10]},{"path":[4,46,2,22,5],"span":[850,11,15]},{"path":[4,46,2,22,1],"span":[850,16,30]},{"path":[4,46,2,22,3],"span":[850,33,35]},{"path":[4,46,2,23],"span":[851,2,36]},{"path":[4,46,2,23,4],"span":[851,2,10]},{"path":[4,46,2,23,5],"span":[851,11,15]},{"path":[4,46,2,23,1],"span":[851,16,30]},{"path":[4,46,2,23,3],"span":[851,33,35]},{"path":[4,46,2,24],"span":[852,2,36]},{"path":[4,46,2,24,4],"span":[852,2,10]},{"path":[4,46,2,24,5],"span":[852,11,15]},{"path":[4,46,2,24,1],"span":[852,16,30]},{"path":[4,46,2,24,3],"span":[852,33,35]},{"path":[4,46,2,25],"span":[853,2,38]},{"path":[4,46,2,25,4],"span":[853,2,10]},{"path":[4,46,2,25,5],"span":[853,11,15]},{"path":[4,46,2,25,1],"span":[853,16,32]},{"path":[4,46,2,25,3],"span":[853,35,37]},{"path":[4,46,2,26],"span":[854,2,38]},{"path":[4,46,2,26,4],"span":[854,2,10]},{"path":[4,46,2,26,5],"span":[854,11,15]},{"path":[4,46,2,26,1],"span":[854,16,32]},{"path":[4,46,2,26,3],"span":[854,35,37]},{"path":[4,46,2,27],"span":[855,2,38]},{"path":[4,46,2,27,4],"span":[855,2,10]},{"path":[4,46,2,27,5],"span":[855,11,15]},{"path":[4,46,2,27,1],"span":[855,16,32]},{"path":[4,46,2,27,3],"span":[855,35,37]},{"path":[4,46,2,28],"span":[857,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,46,2,28,4],"span":[857,2,10]},{"path":[4,46,2,28,5],"span":[857,11,16]},{"path":[4,46,2,28,1],"span":[857,17,28]},{"path":[4,46,2,28,3],"span":[857,31,33]},{"path":[4,47],"span":[860,0,895,1]},{"path":[4,47,1],"span":[860,8,20]},{"path":[4,47,2,0],"span":[861,2,15]},{"path":[4,47,2,0,5],"span":[861,2,7]},{"path":[4,47,2,0,1],"span":[861,8,10]},{"path":[4,47,2,0,3],"span":[861,13,14]},{"path":[4,47,2,1],"span":[863,2,20]},{"path":[4,47,2,1,5],"span":[863,2,7]},{"path":[4,47,2,1,1],"span":[863,8,15]},{"path":[4,47,2,1,3],"span":[863,18,19]},{"path":[4,47,2,2],"span":[864,2,26]},{"path":[4,47,2,2,5],"span":[864,2,8]},{"path":[4,47,2,2,1],"span":[864,9,21]},{"path":[4,47,2,2,3],"span":[864,24,25]},{"path":[4,47,2,3],"span":[866,2,36]},{"path":[4,47,2,3,4],"span":[866,2,10]},{"path":[4,47,2,3,5],"span":[866,11,16]},{"path":[4,47,2,3,1],"span":[866,17,31]},{"path":[4,47,2,3,3],"span":[866,34,35]},{"path":[4,47,2,4],"span":[867,2,40]},{"path":[4,47,2,4,4],"span":[867,2,10]},{"path":[4,47,2,4,5],"span":[867,11,17]},{"path":[4,47,2,4,1],"span":[867,18,35]},{"path":[4,47,2,4,3],"span":[867,38,39]},{"path":[4,47,2,5],"span":[869,2,32]},{"path":[4,47,2,5,4],"span":[869,2,10]},{"path":[4,47,2,5,5],"span":[869,11,16]},{"path":[4,47,2,5,1],"span":[869,17,26]},{"path":[4,47,2,5,3],"span":[869,29,31]},{"path":[4,47,2,6],"span":[870,2,31]},{"path":[4,47,2,6,4],"span":[870,2,10]},{"path":[4,47,2,6,5],"span":[870,11,15]},{"path":[4,47,2,6,1],"span":[870,16,25]},{"path":[4,47,2,6,3],"span":[870,28,30]},{"path":[4,47,2,7],"span":[871,2,34]},{"path":[4,47,2,7,4],"span":[871,2,10]},{"path":[4,47,2,7,5],"span":[871,11,17]},{"path":[4,47,2,7,1],"span":[871,18,28]},{"path":[4,47,2,7,3],"span":[871,31,33]},{"path":[4,47,2,8],"span":[872,2,31]},{"path":[4,47,2,8,4],"span":[872,2,10]},{"path":[4,47,2,8,5],"span":[872,11,17]},{"path":[4,47,2,8,1],"span":[872,18,25]},{"path":[4,47,2,8,3],"span":[872,28,30]},{"path":[4,47,2,9],"span":[873,2,55]},{"path":[4,47,2,9,4],"span":[873,2,10]},{"path":[4,47,2,9,6],"span":[873,11,36]},{"path":[4,47,2,9,1],"span":[873,37,49]},{"path":[4,47,2,9,3],"span":[873,52,54]},{"path":[4,47,2,10],"span":[874,2,52]},{"path":[4,47,2,10,4],"span":[874,2,10]},{"path":[4,47,2,10,6],"span":[874,11,36]},{"path":[4,47,2,10,1],"span":[874,37,46]},{"path":[4,47,2,10,3],"span":[874,49,51]},{"path":[4,47,2,11],"span":[875,2,51]},{"path":[4,47,2,11,4],"span":[875,2,10]},{"path":[4,47,2,11,6],"span":[875,11,36]},{"path":[4,47,2,11,1],"span":[875,37,45]},{"path":[4,47,2,11,3],"span":[875,48,50]},{"path":[4,47,2,12],"span":[876,2,43]},{"path":[4,47,2,12,4],"span":[876,2,10]},{"path":[4,47,2,12,5],"span":[876,11,17]},{"path":[4,47,2,12,1],"span":[876,18,37]},{"path":[4,47,2,12,3],"span":[876,40,42]},{"path":[4,47,2,13],"span":[878,2,35]},{"path":[4,47,2,13,4],"span":[878,2,10]},{"path":[4,47,2,13,5],"span":[878,11,17]},{"path":[4,47,2,13,1],"span":[878,18,29]},{"path":[4,47,2,13,3],"span":[878,32,34]},{"path":[4,47,2,14],"span":[879,2,37]},{"path":[4,47,2,14,4],"span":[879,2,10]},{"path":[4,47,2,14,5],"span":[879,11,17]},{"path":[4,47,2,14,1],"span":[879,18,31]},{"path":[4,47,2,14,3],"span":[879,34,36]},{"path":[4,47,2,15],"span":[881,2,39]},{"path":[4,47,2,15,4],"span":[881,2,10]},{"path":[4,47,2,15,5],"span":[881,11,17]},{"path":[4,47,2,15,1],"span":[881,18,33]},{"path":[4,47,2,15,3],"span":[881,36,38]},{"path":[4,47,2,16],"span":[882,2,43]},{"path":[4,47,2,16,4],"span":[882,2,10]},{"path":[4,47,2,16,5],"span":[882,11,17]},{"path":[4,47,2,16,1],"span":[882,18,37]},{"path":[4,47,2,16,3],"span":[882,40,42]},{"path":[4,47,2,17],"span":[883,2,38]},{"path":[4,47,2,17,4],"span":[883,2,10]},{"path":[4,47,2,17,5],"span":[883,11,17]},{"path":[4,47,2,17,1],"span":[883,18,32]},{"path":[4,47,2,17,3],"span":[883,35,37]},{"path":[4,47,2,18],"span":[884,2,38]},{"path":[4,47,2,18,4],"span":[884,2,10]},{"path":[4,47,2,18,5],"span":[884,11,17]},{"path":[4,47,2,18,1],"span":[884,18,32]},{"path":[4,47,2,18,3],"span":[884,35,37]},{"path":[4,47,2,19],"span":[885,2,41]},{"path":[4,47,2,19,4],"span":[885,2,10]},{"path":[4,47,2,19,5],"span":[885,11,15]},{"path":[4,47,2,19,1],"span":[885,18,35]},{"path":[4,47,2,19,3],"span":[885,38,40]},{"path":[4,47,2,20],"span":[886,2,42]},{"path":[4,47,2,20,4],"span":[886,2,10]},{"path":[4,47,2,20,5],"span":[886,11,17]},{"path":[4,47,2,20,1],"span":[886,18,36]},{"path":[4,47,2,20,3],"span":[886,39,41]},{"path":[4,47,2,21],"span":[888,2,32]},{"path":[4,47,2,21,4],"span":[888,2,10]},{"path":[4,47,2,21,5],"span":[888,11,17]},{"path":[4,47,2,21,1],"span":[888,18,26]},{"path":[4,47,2,21,3],"span":[888,29,31]},{"path":[4,47,2,22],"span":[890,2,33]},{"path":[4,47,2,22,4],"span":[890,2,10]},{"path":[4,47,2,22,5],"span":[890,11,16]},{"path":[4,47,2,22,1],"span":[890,17,27]},{"path":[4,47,2,22,3],"span":[890,30,32]},{"path":[4,47,2,23],"span":[892,2,59]},{"path":[4,47,2,23,4],"span":[892,2,10]},{"path":[4,47,2,23,6],"span":[892,11,36]},{"path":[4,47,2,23,1],"span":[892,37,53]},{"path":[4,47,2,23,3],"span":[892,56,58]},{"path":[4,47,2,24],"span":[894,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,47,2,24,4],"span":[894,2,10]},{"path":[4,47,2,24,5],"span":[894,11,16]},{"path":[4,47,2,24,1],"span":[894,17,28]},{"path":[4,47,2,24,3],"span":[894,31,33]},{"path":[4,48],"span":[897,0,930,1]},{"path":[4,48,1],"span":[897,8,17]},{"path":[4,48,2,0],"span":[898,2,15]},{"path":[4,48,2,0,5],"span":[898,2,7]},{"path":[4,48,2,0,1],"span":[898,8,10]},{"path":[4,48,2,0,3],"span":[898,13,14]},{"path":[4,48,2,1],"span":[900,2,21]},{"path":[4,48,2,1,5],"span":[900,2,8]},{"path":[4,48,2,1,1],"span":[900,9,16]},{"path":[4,48,2,1,3],"span":[900,19,20]},{"path":[4,48,2,2],"span":[902,2,33]},{"path":[4,48,2,2,4],"span":[902,2,10]},{"path":[4,48,2,2,5],"span":[902,11,17]},{"path":[4,48,2,2,1],"span":[902,18,28]},{"path":[4,48,2,2,3],"span":[902,31,32]},{"path":[4,48,2,3],"span":[903,2,32]},{"path":[4,48,2,3,4],"span":[903,2,10]},{"path":[4,48,2,3,5],"span":[903,11,17]},{"path":[4,48,2,3,1],"span":[903,18,26]},{"path":[4,48,2,3,3],"span":[903,29,31]},{"path":[4,48,2,4],"span":[904,2,38]},{"path":[4,48,2,4,4],"span":[904,2,10]},{"path":[4,48,2,4,5],"span":[904,11,17]},{"path":[4,48,2,4,1],"span":[904,18,33]},{"path":[4,48,2,4,3],"span":[904,36,37]},{"path":[4,48,2,5],"span":[906,2,33]},{"path":[4,48,2,5,4],"span":[906,2,10]},{"path":[4,48,2,5,5],"span":[906,11,16]},{"path":[4,48,2,5,1],"span":[906,17,28]},{"path":[4,48,2,5,3],"span":[906,31,32]},{"path":[4,48,2,6],"span":[907,2,29]},{"path":[4,48,2,6,4],"span":[907,2,10]},{"path":[4,48,2,6,5],"span":[907,11,16]},{"path":[4,48,2,6,1],"span":[907,17,24]},{"path":[4,48,2,6,3],"span":[907,27,28]},{"path":[4,48,2,7],"span":[908,2,31]},{"path":[4,48,2,7,4],"span":[908,2,10]},{"path":[4,48,2,7,5],"span":[908,11,16]},{"path":[4,48,2,7,1],"span":[908,17,26]},{"path":[4,48,2,7,3],"span":[908,29,30]},{"path":[4,48,2,8],"span":[910,2,54]},{"path":[4,48,2,8,4],"span":[910,2,10]},{"path":[4,48,2,8,6],"span":[910,11,36]},{"path":[4,48,2,8,1],"span":[910,37,49]},{"path":[4,48,2,8,3],"span":[910,52,53]},{"path":[4,48,2,9],"span":[911,2,51]},{"path":[4,48,2,9,4],"span":[911,2,10]},{"path":[4,48,2,9,6],"span":[911,11,36]},{"path":[4,48,2,9,1],"span":[911,37,45]},{"path":[4,48,2,9,3],"span":[911,48,50]},{"path":[4,48,2,10],"span":[912,2,51]},{"path":[4,48,2,10,4],"span":[912,2,10]},{"path":[4,48,2,10,6],"span":[912,11,36]},{"path":[4,48,2,10,1],"span":[912,37,45]},{"path":[4,48,2,10,3],"span":[912,48,50]},{"path":[4,48,2,11],"span":[913,2,52]},{"path":[4,48,2,11,4],"span":[913,2,10]},{"path":[4,48,2,11,6],"span":[913,11,36]},{"path":[4,48,2,11,1],"span":[913,37,46]},{"path":[4,48,2,11,3],"span":[913,49,51]},{"path":[4,48,2,12],"span":[914,2,43]},{"path":[4,48,2,12,4],"span":[914,2,10]},{"path":[4,48,2,12,5],"span":[914,11,17]},{"path":[4,48,2,12,1],"span":[914,18,37]},{"path":[4,48,2,12,3],"span":[914,40,42]},{"path":[4,48,2,13],"span":[915,2,38]},{"path":[4,48,2,13,4],"span":[915,2,10]},{"path":[4,48,2,13,5],"span":[915,11,17]},{"path":[4,48,2,13,1],"span":[915,18,32]},{"path":[4,48,2,13,3],"span":[915,35,37]},{"path":[4,48,2,14],"span":[916,2,40]},{"path":[4,48,2,14,4],"span":[916,2,10]},{"path":[4,48,2,14,5],"span":[916,11,17]},{"path":[4,48,2,14,1],"span":[916,18,34]},{"path":[4,48,2,14,3],"span":[916,37,39]},{"path":[4,48,2,15],"span":[917,2,36]},{"path":[4,48,2,15,4],"span":[917,2,10]},{"path":[4,48,2,15,5],"span":[917,11,17]},{"path":[4,48,2,15,1],"span":[917,18,30]},{"path":[4,48,2,15,3],"span":[917,33,35]},{"path":[4,48,2,16],"span":[918,2,43]},{"path":[4,48,2,16,4],"span":[918,2,10]},{"path":[4,48,2,16,5],"span":[918,11,17]},{"path":[4,48,2,16,1],"span":[918,18,37]},{"path":[4,48,2,16,3],"span":[918,40,42]},{"path":[4,48,2,17],"span":[919,2,35]},{"path":[4,48,2,17,4],"span":[919,2,10]},{"path":[4,48,2,17,5],"span":[919,11,17]},{"path":[4,48,2,17,1],"span":[919,18,29]},{"path":[4,48,2,17,3],"span":[919,32,34]},{"path":[4,48,2,18],"span":[920,2,35]},{"path":[4,48,2,18,4],"span":[920,2,10]},{"path":[4,48,2,18,5],"span":[920,11,17]},{"path":[4,48,2,18,1],"span":[920,18,29]},{"path":[4,48,2,18,3],"span":[920,32,34]},{"path":[4,48,2,19],"span":[921,2,37]},{"path":[4,48,2,19,4],"span":[921,2,10]},{"path":[4,48,2,19,5],"span":[921,11,17]},{"path":[4,48,2,19,1],"span":[921,18,31]},{"path":[4,48,2,19,3],"span":[921,34,36]},{"path":[4,48,2,20],"span":[922,2,40]},{"path":[4,48,2,20,4],"span":[922,2,10]},{"path":[4,48,2,20,5],"span":[922,11,17]},{"path":[4,48,2,20,1],"span":[922,18,34]},{"path":[4,48,2,20,3],"span":[922,37,39]},{"path":[4,48,2,21],"span":[923,2,39]},{"path":[4,48,2,21,4],"span":[923,2,10]},{"path":[4,48,2,21,5],"span":[923,11,17]},{"path":[4,48,2,21,1],"span":[923,18,33]},{"path":[4,48,2,21,3],"span":[923,36,38]},{"path":[4,48,2,22],"span":[925,2,32]},{"path":[4,48,2,22,4],"span":[925,2,10]},{"path":[4,48,2,22,5],"span":[925,11,17]},{"path":[4,48,2,22,1],"span":[925,18,26]},{"path":[4,48,2,22,3],"span":[925,29,31]},{"path":[4,48,2,23],"span":[927,2,59]},{"path":[4,48,2,23,4],"span":[927,2,10]},{"path":[4,48,2,23,6],"span":[927,11,36]},{"path":[4,48,2,23,1],"span":[927,37,53]},{"path":[4,48,2,23,3],"span":[927,56,58]},{"path":[4,48,2,24],"span":[929,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,48,2,24,4],"span":[929,2,10]},{"path":[4,48,2,24,5],"span":[929,11,16]},{"path":[4,48,2,24,1],"span":[929,17,28]},{"path":[4,48,2,24,3],"span":[929,31,33]},{"path":[4,49],"span":[932,0,962,1]},{"path":[4,49,1],"span":[932,8,23]},{"path":[4,49,2,0],"span":[933,2,15]},{"path":[4,49,2,0,5],"span":[933,2,7]},{"path":[4,49,2,0,1],"span":[933,8,10]},{"path":[4,49,2,0,3],"span":[933,13,14]},{"path":[4,49,2,1],"span":[934,2,21]},{"path":[4,49,2,1,5],"span":[934,2,8]},{"path":[4,49,2,1,1],"span":[934,9,16]},{"path":[4,49,2,1,3],"span":[934,19,20]},{"path":[4,49,2,2],"span":[936,2,33]},{"path":[4,49,2,2,4],"span":[936,2,10]},{"path":[4,49,2,2,5],"span":[936,11,17]},{"path":[4,49,2,2,1],"span":[936,18,28]},{"path":[4,49,2,2,3],"span":[936,31,32]},{"path":[4,49,2,3],"span":[937,2,36]},{"path":[4,49,2,3,4],"span":[937,2,10]},{"path":[4,49,2,3,5],"span":[937,11,17]},{"path":[4,49,2,3,1],"span":[937,18,31]},{"path":[4,49,2,3,3],"span":[937,34,35]},{"path":[4,49,2,4],"span":[938,2,33]},{"path":[4,49,2,4,4],"span":[938,2,10]},{"path":[4,49,2,4,5],"span":[938,11,17]},{"path":[4,49,2,4,1],"span":[938,18,28]},{"path":[4,49,2,4,3],"span":[938,31,32]},{"path":[4,49,2,5],"span":[939,2,30]},{"path":[4,49,2,5,4],"span":[939,2,10]},{"path":[4,49,2,5,5],"span":[939,11,17]},{"path":[4,49,2,5,1],"span":[939,18,25]},{"path":[4,49,2,5,3],"span":[939,28,29]},{"path":[4,49,2,6],"span":[940,2,31]},{"path":[4,49,2,6,4],"span":[940,2,10]},{"path":[4,49,2,6,5],"span":[940,11,17]},{"path":[4,49,2,6,1],"span":[940,18,26]},{"path":[4,49,2,6,3],"span":[940,29,30]},{"path":[4,49,2,7],"span":[942,2,29]},{"path":[4,49,2,7,4],"span":[942,2,10]},{"path":[4,49,2,7,5],"span":[942,11,16]},{"path":[4,49,2,7,1],"span":[942,17,24]},{"path":[4,49,2,7,3],"span":[942,27,28]},{"path":[4,49,2,8],"span":[943,2,31]},{"path":[4,49,2,8,4],"span":[943,2,10]},{"path":[4,49,2,8,5],"span":[943,11,16]},{"path":[4,49,2,8,1],"span":[943,17,26]},{"path":[4,49,2,8,3],"span":[943,29,30]},{"path":[4,49,2,9],"span":[944,2,32]},{"path":[4,49,2,9,4],"span":[944,2,10]},{"path":[4,49,2,9,5],"span":[944,11,16]},{"path":[4,49,2,9,1],"span":[944,17,26]},{"path":[4,49,2,9,3],"span":[944,29,31]},{"path":[4,49,2,10],"span":[946,2,31]},{"path":[4,49,2,10,4],"span":[946,2,10]},{"path":[4,49,2,10,5],"span":[946,11,17]},{"path":[4,49,2,10,1],"span":[946,18,25]},{"path":[4,49,2,10,3],"span":[946,28,30]},{"path":[4,49,2,11],"span":[947,2,35]},{"path":[4,49,2,11,4],"span":[947,2,10]},{"path":[4,49,2,11,5],"span":[947,11,17]},{"path":[4,49,2,11,1],"span":[947,18,29]},{"path":[4,49,2,11,3],"span":[947,32,34]},{"path":[4,49,2,12],"span":[949,2,55]},{"path":[4,49,2,12,4],"span":[949,2,10]},{"path":[4,49,2,12,6],"span":[949,11,36]},{"path":[4,49,2,12,1],"span":[949,37,49]},{"path":[4,49,2,12,3],"span":[949,52,54]},{"path":[4,49,2,13],"span":[950,2,51]},{"path":[4,49,2,13,4],"span":[950,2,10]},{"path":[4,49,2,13,6],"span":[950,11,36]},{"path":[4,49,2,13,1],"span":[950,37,45]},{"path":[4,49,2,13,3],"span":[950,48,50]},{"path":[4,49,2,14],"span":[951,2,51]},{"path":[4,49,2,14,4],"span":[951,2,10]},{"path":[4,49,2,14,6],"span":[951,11,36]},{"path":[4,49,2,14,1],"span":[951,37,45]},{"path":[4,49,2,14,3],"span":[951,48,50]},{"path":[4,49,2,15],"span":[952,2,52]},{"path":[4,49,2,15,4],"span":[952,2,10]},{"path":[4,49,2,15,6],"span":[952,11,36]},{"path":[4,49,2,15,1],"span":[952,37,46]},{"path":[4,49,2,15,3],"span":[952,49,51]},{"path":[4,49,2,16],"span":[953,2,43]},{"path":[4,49,2,16,4],"span":[953,2,10]},{"path":[4,49,2,16,5],"span":[953,11,17]},{"path":[4,49,2,16,1],"span":[953,18,37]},{"path":[4,49,2,16,3],"span":[953,40,42]},{"path":[4,49,2,17],"span":[955,2,33]},{"path":[4,49,2,17,4],"span":[955,2,10]},{"path":[4,49,2,17,5],"span":[955,11,15]},{"path":[4,49,2,17,1],"span":[955,16,27]},{"path":[4,49,2,17,3],"span":[955,30,32]},{"path":[4,49,2,18],"span":[956,2,37]},{"path":[4,49,2,18,4],"span":[956,2,10]},{"path":[4,49,2,18,5],"span":[956,11,15]},{"path":[4,49,2,18,1],"span":[956,16,31]},{"path":[4,49,2,18,3],"span":[956,34,36]},{"path":[4,49,2,19],"span":[957,2,37]},{"path":[4,49,2,19,4],"span":[957,2,10]},{"path":[4,49,2,19,5],"span":[957,11,15]},{"path":[4,49,2,19,1],"span":[957,16,31]},{"path":[4,49,2,19,3],"span":[957,34,36]},{"path":[4,49,2,20],"span":[959,2,59]},{"path":[4,49,2,20,4],"span":[959,2,10]},{"path":[4,49,2,20,6],"span":[959,11,36]},{"path":[4,49,2,20,1],"span":[959,37,53]},{"path":[4,49,2,20,3],"span":[959,56,58]},{"path":[4,49,2,21],"span":[961,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,49,2,21,4],"span":[961,2,10]},{"path":[4,49,2,21,5],"span":[961,11,16]},{"path":[4,49,2,21,1],"span":[961,17,28]},{"path":[4,49,2,21,3],"span":[961,31,34]},{"path":[4,50],"span":[964,0,1020,1]},{"path":[4,50,1],"span":[964,8,22]},{"path":[4,50,2,0],"span":[965,2,16]},{"path":[4,50,2,0,5],"span":[965,2,7]},{"path":[4,50,2,0,1],"span":[965,9,11]},{"path":[4,50,2,0,3],"span":[965,14,15]},{"path":[4,50,2,1],"span":[967,2,19]},{"path":[4,50,2,1,5],"span":[967,2,8]},{"path":[4,50,2,1,1],"span":[967,9,14]},{"path":[4,50,2,1,3],"span":[967,17,18]},{"path":[4,50,2,2],"span":[968,2,32]},{"path":[4,50,2,2,4],"span":[968,2,10]},{"path":[4,50,2,2,5],"span":[968,11,17]},{"path":[4,50,2,2,1],"span":[968,18,27]},{"path":[4,50,2,2,3],"span":[968,30,31]},{"path":[4,50,2,3],"span":[969,2,29]},{"path":[4,50,2,3,4],"span":[969,2,10]},{"path":[4,50,2,3,5],"span":[969,11,16]},{"path":[4,50,2,3,1],"span":[969,17,24]},{"path":[4,50,2,3,3],"span":[969,27,28]},{"path":[4,50,2,4],"span":[971,2,31]},{"path":[4,50,2,4,4],"span":[971,2,10]},{"path":[4,50,2,4,5],"span":[971,11,16]},{"path":[4,50,2,4,1],"span":[971,17,26]},{"path":[4,50,2,4,3],"span":[971,29,30]},{"path":[4,50,2,5],"span":[972,2,30]},{"path":[4,50,2,5,4],"span":[972,2,10]},{"path":[4,50,2,5,5],"span":[972,11,15]},{"path":[4,50,2,5,1],"span":[972,16,25]},{"path":[4,50,2,5,3],"span":[972,28,29]},{"path":[4,50,2,6],"span":[973,2,36]},{"path":[4,50,2,6,4],"span":[973,2,10]},{"path":[4,50,2,6,5],"span":[973,11,17]},{"path":[4,50,2,6,1],"span":[973,18,31]},{"path":[4,50,2,6,3],"span":[973,34,35]},{"path":[4,50,2,7],"span":[974,2,35]},{"path":[4,50,2,7,4],"span":[974,2,10]},{"path":[4,50,2,7,5],"span":[974,11,17]},{"path":[4,50,2,7,1],"span":[974,18,30]},{"path":[4,50,2,7,3],"span":[974,33,34]},{"path":[4,50,2,8],"span":[976,2,33]},{"path":[4,50,2,8,4],"span":[976,2,10]},{"path":[4,50,2,8,5],"span":[976,11,17]},{"path":[4,50,2,8,1],"span":[976,18,27]},{"path":[4,50,2,8,3],"span":[976,30,32]},{"path":[4,50,2,9],"span":[977,2,38]},{"path":[4,50,2,9,4],"span":[977,2,10]},{"path":[4,50,2,9,5],"span":[977,11,17]},{"path":[4,50,2,9,1],"span":[977,18,32]},{"path":[4,50,2,9,3],"span":[977,35,37]},{"path":[4,50,2,10],"span":[978,2,36]},{"path":[4,50,2,10,4],"span":[978,2,10]},{"path":[4,50,2,10,5],"span":[978,11,17]},{"path":[4,50,2,10,1],"span":[978,18,30]},{"path":[4,50,2,10,3],"span":[978,33,35]},{"path":[4,50,2,11],"span":[979,2,40]},{"path":[4,50,2,11,4],"span":[979,2,10]},{"path":[4,50,2,11,5],"span":[979,11,17]},{"path":[4,50,2,11,1],"span":[979,18,34]},{"path":[4,50,2,11,3],"span":[979,37,39]},{"path":[4,50,2,12],"span":[980,2,31]},{"path":[4,50,2,12,4],"span":[980,2,10]},{"path":[4,50,2,12,5],"span":[980,11,17]},{"path":[4,50,2,12,1],"span":[980,18,25]},{"path":[4,50,2,12,3],"span":[980,28,30]},{"path":[4,50,2,13],"span":[981,2,36]},{"path":[4,50,2,13,4],"span":[981,2,10]},{"path":[4,50,2,13,5],"span":[981,11,17]},{"path":[4,50,2,13,1],"span":[981,18,30]},{"path":[4,50,2,13,3],"span":[981,33,35]},{"path":[4,50,2,14],"span":[982,2,35]},{"path":[4,50,2,14,4],"span":[982,2,10]},{"path":[4,50,2,14,5],"span":[982,11,16]},{"path":[4,50,2,14,1],"span":[982,17,29]},{"path":[4,50,2,14,3],"span":[982,32,34]},{"path":[4,50,2,15],"span":[983,2,29]},{"path":[4,50,2,15,4],"span":[983,2,10]},{"path":[4,50,2,15,5],"span":[983,11,17]},{"path":[4,50,2,15,1],"span":[983,18,23]},{"path":[4,50,2,15,3],"span":[983,26,28]},{"path":[4,50,2,16],"span":[984,2,33]},{"path":[4,50,2,16,4],"span":[984,2,10]},{"path":[4,50,2,16,5],"span":[984,11,17]},{"path":[4,50,2,16,1],"span":[984,18,27]},{"path":[4,50,2,16,3],"span":[984,30,32]},{"path":[4,50,2,17],"span":[985,2,32]},{"path":[4,50,2,17,4],"span":[985,2,10]},{"path":[4,50,2,17,5],"span":[985,11,17]},{"path":[4,50,2,17,1],"span":[985,18,26]},{"path":[4,50,2,17,3],"span":[985,29,31]},{"path":[4,50,2,18],"span":[986,2,35]},{"path":[4,50,2,18,4],"span":[986,2,10]},{"path":[4,50,2,18,5],"span":[986,11,17]},{"path":[4,50,2,18,1],"span":[986,18,29]},{"path":[4,50,2,18,3],"span":[986,32,34]},{"path":[4,50,2,19],"span":[988,2,36]},{"path":[4,50,2,19,4],"span":[988,2,10]},{"path":[4,50,2,19,5],"span":[988,11,17]},{"path":[4,50,2,19,1],"span":[988,18,30]},{"path":[4,50,2,19,3],"span":[988,33,35]},{"path":[4,50,2,20],"span":[989,2,38]},{"path":[4,50,2,20,4],"span":[989,2,10]},{"path":[4,50,2,20,5],"span":[989,11,16]},{"path":[4,50,2,20,1],"span":[989,17,32]},{"path":[4,50,2,20,3],"span":[989,35,37]},{"path":[4,50,2,21],"span":[990,2,47]},{"path":[4,50,2,21,4],"span":[990,2,10]},{"path":[4,50,2,21,5],"span":[990,11,16]},{"path":[4,50,2,21,1],"span":[990,17,41]},{"path":[4,50,2,21,3],"span":[990,44,46]},{"path":[4,50,2,22],"span":[991,2,30]},{"path":[4,50,2,22,4],"span":[991,2,10]},{"path":[4,50,2,22,5],"span":[991,11,16]},{"path":[4,50,2,22,1],"span":[991,17,24]},{"path":[4,50,2,22,3],"span":[991,27,29]},{"path":[4,50,2,23],"span":[992,2,29]},{"path":[4,50,2,23,4],"span":[992,2,10]},{"path":[4,50,2,23,5],"span":[992,11,16]},{"path":[4,50,2,23,1],"span":[992,17,23]},{"path":[4,50,2,23,3],"span":[992,26,28]},{"path":[4,50,2,24],"span":[993,2,29]},{"path":[4,50,2,24,4],"span":[993,2,10]},{"path":[4,50,2,24,5],"span":[993,11,16]},{"path":[4,50,2,24,1],"span":[993,17,23]},{"path":[4,50,2,24,3],"span":[993,26,28]},{"path":[4,50,2,25],"span":[994,2,36]},{"path":[4,50,2,25,4],"span":[994,2,10]},{"path":[4,50,2,25,5],"span":[994,11,17]},{"path":[4,50,2,25,1],"span":[994,18,30]},{"path":[4,50,2,25,3],"span":[994,33,35]},{"path":[4,50,2,26],"span":[995,2,39]},{"path":[4,50,2,26,4],"span":[995,2,10]},{"path":[4,50,2,26,5],"span":[995,11,16]},{"path":[4,50,2,26,1],"span":[995,17,33]},{"path":[4,50,2,26,3],"span":[995,36,38]},{"path":[4,50,2,27],"span":[996,2,44]},{"path":[4,50,2,27,4],"span":[996,2,10]},{"path":[4,50,2,27,5],"span":[996,11,17]},{"path":[4,50,2,27,1],"span":[996,18,38]},{"path":[4,50,2,27,3],"span":[996,41,43]},{"path":[4,50,2,28],"span":[998,2,36]},{"path":[4,50,2,28,4],"span":[998,2,10]},{"path":[4,50,2,28,5],"span":[998,11,17]},{"path":[4,50,2,28,1],"span":[998,18,30]},{"path":[4,50,2,28,3],"span":[998,33,35]},{"path":[4,50,2,29],"span":[999,2,37]},{"path":[4,50,2,29,4],"span":[999,2,10]},{"path":[4,50,2,29,5],"span":[999,11,16]},{"path":[4,50,2,29,1],"span":[999,17,31]},{"path":[4,50,2,29,3],"span":[999,34,36]},{"path":[4,50,2,30],"span":[1000,2,42]},{"path":[4,50,2,30,4],"span":[1000,2,10]},{"path":[4,50,2,30,5],"span":[1000,11,17]},{"path":[4,50,2,30,1],"span":[1000,18,36]},{"path":[4,50,2,30,3],"span":[1000,39,41]},{"path":[4,50,2,31],"span":[1001,2,38]},{"path":[4,50,2,31,4],"span":[1001,2,10]},{"path":[4,50,2,31,5],"span":[1001,11,17]},{"path":[4,50,2,31,1],"span":[1001,18,32]},{"path":[4,50,2,31,3],"span":[1001,35,37]},{"path":[4,50,2,32],"span":[1002,2,42]},{"path":[4,50,2,32,4],"span":[1002,2,10]},{"path":[4,50,2,32,5],"span":[1002,11,17]},{"path":[4,50,2,32,1],"span":[1002,18,36]},{"path":[4,50,2,32,3],"span":[1002,39,41]},{"path":[4,50,2,33],"span":[1003,2,39]},{"path":[4,50,2,33,4],"span":[1003,2,10]},{"path":[4,50,2,33,5],"span":[1003,11,17]},{"path":[4,50,2,33,1],"span":[1003,18,33]},{"path":[4,50,2,33,3],"span":[1003,36,38]},{"path":[4,50,2,34],"span":[1004,2,34]},{"path":[4,50,2,34,4],"span":[1004,2,10]},{"path":[4,50,2,34,5],"span":[1004,11,17]},{"path":[4,50,2,34,1],"span":[1004,18,28]},{"path":[4,50,2,34,3],"span":[1004,31,33]},{"path":[4,50,2,35],"span":[1005,2,34]},{"path":[4,50,2,35,4],"span":[1005,2,10]},{"path":[4,50,2,35,5],"span":[1005,11,17]},{"path":[4,50,2,35,1],"span":[1005,18,28]},{"path":[4,50,2,35,3],"span":[1005,31,33]},{"path":[4,50,2,36],"span":[1006,2,33]},{"path":[4,50,2,36,4],"span":[1006,2,10]},{"path":[4,50,2,36,5],"span":[1006,11,17]},{"path":[4,50,2,36,1],"span":[1006,18,27]},{"path":[4,50,2,36,3],"span":[1006,30,32]},{"path":[4,50,2,37],"span":[1008,2,33]},{"path":[4,50,2,37,4],"span":[1008,2,10]},{"path":[4,50,2,37,5],"span":[1008,11,15]},{"path":[4,50,2,37,1],"span":[1008,16,27]},{"path":[4,50,2,37,3],"span":[1008,30,32]},{"path":[4,50,2,38],"span":[1009,2,36]},{"path":[4,50,2,38,4],"span":[1009,2,10]},{"path":[4,50,2,38,5],"span":[1009,11,15]},{"path":[4,50,2,38,1],"span":[1009,16,30]},{"path":[4,50,2,38,3],"span":[1009,33,35]},{"path":[4,50,2,39],"span":[1010,2,38]},{"path":[4,50,2,39,4],"span":[1010,2,10]},{"path":[4,50,2,39,5],"span":[1010,11,15]},{"path":[4,50,2,39,1],"span":[1010,16,32]},{"path":[4,50,2,39,3],"span":[1010,35,37]},{"path":[4,50,2,40],"span":[1011,2,34]},{"path":[4,50,2,40,4],"span":[1011,2,10]},{"path":[4,50,2,40,5],"span":[1011,11,15]},{"path":[4,50,2,40,1],"span":[1011,16,28]},{"path":[4,50,2,40,3],"span":[1011,31,33]},{"path":[4,50,2,41],"span":[1012,2,33]},{"path":[4,50,2,41,4],"span":[1012,2,10]},{"path":[4,50,2,41,5],"span":[1012,11,15]},{"path":[4,50,2,41,1],"span":[1012,16,27]},{"path":[4,50,2,41,3],"span":[1012,30,32]},{"path":[4,50,2,42],"span":[1013,2,38]},{"path":[4,50,2,42,4],"span":[1013,2,10]},{"path":[4,50,2,42,5],"span":[1013,11,15]},{"path":[4,50,2,42,1],"span":[1013,16,32]},{"path":[4,50,2,42,3],"span":[1013,35,37]},{"path":[4,50,2,43],"span":[1014,2,36]},{"path":[4,50,2,43,4],"span":[1014,2,10]},{"path":[4,50,2,43,5],"span":[1014,11,15]},{"path":[4,50,2,43,1],"span":[1014,16,30]},{"path":[4,50,2,43,3],"span":[1014,33,35]},{"path":[4,50,2,44],"span":[1016,2,59]},{"path":[4,50,2,44,4],"span":[1016,2,10]},{"path":[4,50,2,44,6],"span":[1016,11,36]},{"path":[4,50,2,44,1],"span":[1016,37,53]},{"path":[4,50,2,44,3],"span":[1016,56,58]},{"path":[4,50,2,45],"span":[1018,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,50,2,45,4],"span":[1018,2,10]},{"path":[4,50,2,45,5],"span":[1018,11,16]},{"path":[4,50,2,45,1],"span":[1018,17,28]},{"path":[4,50,2,45,3],"span":[1018,31,34]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|