Merge pull request #76 from Telecominfraproject/WIFI-15031-fix-fingerprinting-raw-mode

WIFI-15031: fix: updated schema to fix fingerprinting raw mode issue
This commit is contained in:
i-chvets
2025-12-10 15:36:32 -05:00
committed by GitHub
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"
},