fix: Updated schema to fix issue with fingerprinting raw mode.

https://telecominfraproject.atlassian.net/browse/WIFI-15031
Signed-off-by: Ivan Chvets <ivan.chvets@kinarasystems.com>
This commit is contained in:
Ivan Chvets
2025-12-10 11:48:03 -05:00
parent 384eba5c0e
commit 1c3e51f62b
5 changed files with 6 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ properties:
enum:
- polled
- final
- raw-data
- raw
default: final
minimum-age:
description:

View File

@@ -9561,8 +9561,8 @@ function instantiateServiceFingerprint(location, value, errors) {
if (type(value) != "string")
push(errors, [ location, "must be of type string" ]);
if (!(value in [ "polled", "final", "raw-data" ]))
push(errors, [ location, "must be one of \"polled\", \"final\" or \"raw-data\"" ]);
if (!(value in [ "polled", "final", "raw" ]))
push(errors, [ location, "must be one of \"polled\", \"final\" or \"raw\"" ]);
return value;
}

View File

@@ -4442,7 +4442,7 @@
"enum": [
"polled",
"final",
"raw-data"
"raw"
],
"default": "final"
},

View File

@@ -3384,7 +3384,7 @@
"enum": [
"polled",
"final",
"raw-data"
"raw"
],
"default": "final"
},

View File

@@ -3885,7 +3885,7 @@
"enum": [
"polled",
"final",
"raw-data"
"raw"
],
"default": "final"
},