@vetformat/ovf-types
v1.3.3
Published
TypeScript type definitions for the Open Vet Format (OVF)
Downloads
496
Maintainers
Readme
@vetformat/ovf-types
TypeScript type definitions for the Open Vet Format (OVF) — a FHIR-inspired JSON Schema standard for veterinary medical record exchange.
Installation
npm install @vetformat/ovf-typesUsage
import type { OvfDocument, Patient, Encounter } from "@vetformat/ovf-types";
const doc: OvfDocument = JSON.parse(rawJson);
console.log(doc.patient.name);
console.log(doc.patient.species);Available Types
OvfDocument— Root export documentPatient— Animal patient demographicsEncounter— Clinical visitsCondition— Diagnoses and health problemsObservation— Vital signs, lab resultsImmunization— Vaccination recordsProcedure— Surgeries, dental workAllergyIntolerance— Allergies and intolerancesMedicationStatement— Medication recordsDocumentReference— Attached documents and files
