confirmCodeCompliance
Validate code against HIPAA compliance checklists to ensure healthcare applications meet security and privacy rule requirements before implementation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | Yes |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"additionalProperties": false,
"properties": {
"checklist": {
"description": "The full text of the checklist the code must be validated against.",
"type": "string"
},
"codeSnippet": {
"description": "The proposed code the agent intends to write.",
"type": "string"
},
"justification": {
"description": "A point-by-point explanation of how the codeSnippet satisfies each item in the checklist.",
"type": "string"
}
},
"required": [
"codeSnippet",
"checklist",
"justification"
],
"type": "object"
}
},
"required": [
"schema"
],
"type": "object"
}