{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/api_password_v1_PBKDF2Config", "title": "api_password_v1_PBKDF2Config", "type": "object", "properties": { "salt": { "type": "string", "description": "The salt value, which should be in a base64 encoded string form." }, "iteration_amount": { "type": "integer", "format": "int32", "description": "The iteration amount." }, "key_length": { "type": "integer", "format": "int32", "description": "The key length, also known as the hash length." }, "algorithm": { "type": "string", "description": "The algorithm that was used to generate the HMAC hash. Accepted values are \"sha512\" and sha256\". Defaults to sha256." } }, "required": [ "salt", "iteration_amount", "key_length", "algorithm" ] }