Hint Health · Schema

Interaction.LabSanitizer.ResultCodeSanitizer

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
code string LOINC code value (only LOINC is supported)
display string Human-readable name
View JSON Schema on GitHub

JSON Schema

interaction-labsanitizer-resultcodesanitizer.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/interaction-labsanitizer-resultcodesanitizer",
  "title": "Interaction.LabSanitizer.ResultCodeSanitizer",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "LOINC code value (only LOINC is supported)"
    },
    "display": {
      "type": "string",
      "description": "Human-readable name"
    }
  },
  "required": [
    "code",
    "display"
  ]
}