diff options
| author | J08nY | 2025-09-26 13:24:16 +0200 |
|---|---|---|
| committer | J08nY | 2025-09-26 13:24:16 +0200 |
| commit | aed01539ed00d4173ba4e28e126a5dcff9bcee31 (patch) | |
| tree | 72337e5a7b0d952a177f0e762d5408a989d7151a /src | |
| parent | f2e934d0bed8a89dbb9e753de5cb13e98df2f74e (diff) | |
| download | sec-certs-aed01539ed00d4173ba4e28e126a5dcff9bcee31.tar.gz sec-certs-aed01539ed00d4173ba4e28e126a5dcff9bcee31.tar.zst sec-certs-aed01539ed00d4173ba4e28e126a5dcff9bcee31.zip | |
Fix FIPS schema nulls.
Diffstat (limited to 'src')
| -rw-r--r-- | src/sec_certs/serialization/schemas/fips_certificate.json | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/src/sec_certs/serialization/schemas/fips_certificate.json b/src/sec_certs/serialization/schemas/fips_certificate.json index 23005f3d..0eeffa8b 100644 --- a/src/sec_certs/serialization/schemas/fips_certificate.json +++ b/src/sec_certs/serialization/schemas/fips_certificate.json @@ -190,21 +190,15 @@ "description": "The URL of the certificate PDF document." }, "module_type": { - "anyOf": [ - { - "enum": [ - "Firmware", - "Firmware-Hybrid", - "Hardware", - "Software", - "Software-Hybrid", - "Hybrid" - ] - }, - { - "type": "null" - } - ], + "enum": [ + "Firmware", + "Firmware-Hybrid", + "Hardware", + "Software", + "Software-Hybrid", + "Hybrid", + null + ] "title": "Certified Module Type", "description": "The type of the certified module." }, @@ -212,7 +206,8 @@ "enum": [ "FIPS 140-1", "FIPS 140-2", - "FIPS 140-3" + "FIPS 140-3", + null ], "title": "FIPS Standard", "description": "The FIPS standard under which the module was certified." @@ -513,4 +508,4 @@ } }, "additionalProperties": false -}
\ No newline at end of file +} |
