{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-signer/refs/heads/main/json-schema/amazon-signer-signing-configuration-schema.json", "title": "SigningConfiguration", "description": "The configuration of a code signing operation.", "type": "object", "properties": { "encryptionAlgorithmOptions": { "allOf": [ { "type": "object", "required": [ "allowedValues", "defaultValue" ], "properties": { "allowedValues": { "allOf": [ { "$ref": "#/components/schemas/EncryptionAlgorithms" }, { "description": "The set of accepted encryption algorithms that are allowed in a code signing job." } ] }, "defaultValue": { "allOf": [ { "$ref": "#/components/schemas/EncryptionAlgorithm" }, { "description": "The default encryption algorithm that is used by a code signing job." } ] } }, "description": "The encryption algorithm options that are available to a code signing job." }, { "description": "The encryption algorithm options that are available for a code signing job." } ] }, "hashAlgorithmOptions": { "allOf": [ { "type": "object", "required": [ "allowedValues", "defaultValue" ], "properties": { "allowedValues": { "allOf": [ { "$ref": "#/components/schemas/HashAlgorithms" }, { "description": "The set of accepted hash algorithms allowed in a code signing job." } ] }, "defaultValue": { "allOf": [ { "$ref": "#/components/schemas/HashAlgorithm" }, { "description": "The default hash algorithm that is used in a code signing job." } ] } }, "description": "The hash algorithms that are available to a code signing job." }, { "description": "The hash algorithm options that are available for a code signing job." } ] } }, "required": [ "encryptionAlgorithmOptions", "hashAlgorithmOptions" ] }