getCoreDefinitions
Retrieve precise definitions for key HIPAA compliance terms including PHI, Business Associate, De-Identification, and Patient Rights to ensure accurate implementation of healthcare data regulations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | Yes |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"additionalProperties": false,
"properties": {
"term": {
"enum": [
"PHI",
"Business Associate",
"De-Identification",
"Patient Rights"
],
"type": "string"
}
},
"required": [
"term"
],
"type": "object"
}
},
"required": [
"schema"
],
"type": "object"
}