1
0
mirror of synced 2025-12-22 03:16:52 -05:00

Update schema for secret scanning data (#42842)

This commit is contained in:
Rachael Sewell
2023-09-20 10:51:06 -07:00
committed by GitHub
parent 7bed72b4a0
commit 0e8216aae4

View File

@@ -53,19 +53,19 @@ export default {
versions: versionsProps, versions: versionsProps,
isPublic: { isPublic: {
description: 'whether the secret is publicly available', description: 'whether the secret is publicly available',
type: 'boolean', type: ['boolean', 'string'],
}, },
isPrivateWithGhas: { isPrivateWithGhas: {
description: 'whether the secret is available in GHAS', description: 'whether the secret is available in GHAS',
type: 'boolean', type: ['boolean', 'string'],
}, },
hasPushProtection: { hasPushProtection: {
description: 'whether the secret has push protection', description: 'whether the secret has push protection',
type: 'boolean', type: ['boolean', 'string'],
}, },
hasValidityCheck: { hasValidityCheck: {
description: 'whether the secret has its validation status checked', description: 'whether the secret has its validation status checked',
type: 'boolean', type: ['boolean', 'string'],
}, },
}, },
}, },