getValidationAndAuditInfo
Validate healthcare data schemas and generate audit information to ensure HIPAA compliance requirements are met for PHI handling and security rules.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| schema | Yes |
Implementation Reference
- server.ts:151-165 (registration)Registration of the 'getValidationAndAuditInfo' tool, including its description, empty input schema, and inline handler function that returns content from the HIPAA knowledge base.server.tool( 'getValidationAndAuditInfo', { description: 'Explains why there is no official "HIPAA Certification" and details how compliance is demonstrated through third-party audits and attestations like HITRUST and SOC 2.', schema: z.object({}), }, async () => { return { content: [{ type: 'text', text: hipaaData['who_validates_hipaa_compliance'] }] }; } );
- server.ts:157-164 (handler)Handler function for the tool, which retrieves and returns the text content about HIPAA validation and audits from the loaded hipaaData JSON.async () => { return { content: [{ type: 'text', text: hipaaData['who_validates_hipaa_compliance'] }] }; }
- server.ts:153-155 (schema)Tool schema definition: no input parameters required (z.object({})), with description of the tool's purpose.{ description: 'Explains why there is no official "HIPAA Certification" and details how compliance is demonstrated through third-party audits and attestations like HITRUST and SOC 2.', schema: z.object({}),