Properties
| Name | Type | Description |
|---|---|---|
| fieldNameSuffix | string | The suffix to append to the field name after hashing. |
| method | string | The hashing algorithm to use. |
| targetField | string | The name of the field to be hashed. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HashingMapperConfiguration",
"title": "Hashing",
"type": "object",
"properties": {
"fieldNameSuffix": {
"type": "string",
"title": "Field name suffix",
"description": "The suffix to append to the field name after hashing."
},
"method": {
"type": "string",
"enum": [
"MD2",
"MD5",
"SHA-1",
"SHA-224",
"SHA-256",
"SHA-384",
"SHA-512"
],
"title": "Hashing method",
"description": "The hashing algorithm to use."
},
"targetField": {
"type": "string",
"title": "Original Field Name",
"description": "The name of the field to be hashed."
}
},
"required": [
"fieldNameSuffix",
"method",
"targetField"
],
"x-speakeasy-component": true
}