validate_content_masking
Verify correct application of content masking by comparing original and masked inputs to ensure data protection and compliance.
Instructions
Validate that content masking was applied correctly
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maskedContent | Yes | Content after masking | |
originalContent | Yes | Original content before masking |
Input Schema (JSON Schema)
{
"properties": {
"maskedContent": {
"description": "Content after masking",
"type": "string"
},
"originalContent": {
"description": "Original content before masking",
"type": "string"
}
},
"required": [
"originalContent",
"maskedContent"
],
"type": "object"
}