{ "module": "openapi_first.templates.vet_app.data", "content": { "path": "openapi_first.templates.vet_app.data", "docstring": "In-memory data store for the Veterinary Clinic example.\n\nThis module is NOT thread-safe and is intended for demos and scaffolds only.\n\nIt provides minimal, process-local data stores for the five veterinary\nclinic entities. Each store exposes standard CRUD operations backed by\na simple dictionary.\n\nThis module intentionally avoids:\n- persistence\n- concurrency guarantees\n- transactional semantics\n- validation beyond what Pydantic provides\n\nThis module is not part of the ``openapi_first`` library API surface.", "objects": { "date": { "name": "date", "kind": "alias", "path": "openapi_first.templates.vet_app.data.date", "signature": "", "docstring": null }, "datetime": { "name": "datetime", "kind": "alias", "path": "openapi_first.templates.vet_app.data.datetime", "signature": "", "docstring": null }, "timezone": { "name": "timezone", "kind": "alias", "path": "openapi_first.templates.vet_app.data.timezone", "signature": "", "docstring": null }, "Parent": { "name": "Parent", "kind": "alias", "path": "openapi_first.templates.vet_app.data.Parent", "signature": "", "docstring": null }, "ParentCreate": { "name": "ParentCreate", "kind": "alias", "path": "openapi_first.templates.vet_app.data.ParentCreate", "signature": "", "docstring": null }, "Vet": { "name": "Vet", "kind": "alias", "path": "openapi_first.templates.vet_app.data.Vet", "signature": "", "docstring": null }, "VetCreate": { "name": "VetCreate", "kind": "alias", "path": "openapi_first.templates.vet_app.data.VetCreate", "signature": "", "docstring": null }, "Treatment": { "name": "Treatment", "kind": "alias", "path": "openapi_first.templates.vet_app.data.Treatment", "signature": "", "docstring": null }, "TreatmentCreate": { "name": "TreatmentCreate", "kind": "alias", "path": "openapi_first.templates.vet_app.data.TreatmentCreate", "signature": "", "docstring": null }, "Procedure": { "name": "Procedure", "kind": "alias", "path": "openapi_first.templates.vet_app.data.Procedure", "signature": "", "docstring": null }, "BasicNote": { "name": "BasicNote", "kind": "alias", "path": "openapi_first.templates.vet_app.data.BasicNote", "signature": "", "docstring": null }, "HeartRateNote": { "name": "HeartRateNote", "kind": "alias", "path": "openapi_first.templates.vet_app.data.HeartRateNote", "signature": "", "docstring": null }, "DentalNote": { "name": "DentalNote", "kind": "alias", "path": "openapi_first.templates.vet_app.data.DentalNote", "signature": "", "docstring": null }, "VaccineNote": { "name": "VaccineNote", "kind": "alias", "path": "openapi_first.templates.vet_app.data.VaccineNote", "signature": "", "docstring": null }, "PreOpNote": { "name": "PreOpNote", "kind": "alias", "path": "openapi_first.templates.vet_app.data.PreOpNote", "signature": "", "docstring": null }, "SurgeryNote": { "name": "SurgeryNote", "kind": "alias", "path": "openapi_first.templates.vet_app.data.SurgeryNote", "signature": "", "docstring": null }, "Pet": { "name": "Pet", "kind": "alias", "path": "openapi_first.templates.vet_app.data.Pet", "signature": "", "docstring": null }, "PetCreate": { "name": "PetCreate", "kind": "alias", "path": "openapi_first.templates.vet_app.data.PetCreate", "signature": "", "docstring": null }, "Appointment": { "name": "Appointment", "kind": "alias", "path": "openapi_first.templates.vet_app.data.Appointment", "signature": "", "docstring": null }, "AppointmentCreate": { "name": "AppointmentCreate", "kind": "alias", "path": "openapi_first.templates.vet_app.data.AppointmentCreate", "signature": "", "docstring": null }, "list_parents": { "name": "list_parents", "kind": "function", "path": "openapi_first.templates.vet_app.data.list_parents", "signature": "", "docstring": null }, "get_parent": { "name": "get_parent", "kind": "function", "path": "openapi_first.templates.vet_app.data.get_parent", "signature": "", "docstring": null }, "create_parent": { "name": "create_parent", "kind": "function", "path": "openapi_first.templates.vet_app.data.create_parent", "signature": "", "docstring": null }, "update_parent": { "name": "update_parent", "kind": "function", "path": "openapi_first.templates.vet_app.data.update_parent", "signature": "", "docstring": null }, "delete_parent": { "name": "delete_parent", "kind": "function", "path": "openapi_first.templates.vet_app.data.delete_parent", "signature": "", "docstring": null }, "list_vets": { "name": "list_vets", "kind": "function", "path": "openapi_first.templates.vet_app.data.list_vets", "signature": "", "docstring": null }, "get_vet": { "name": "get_vet", "kind": "function", "path": "openapi_first.templates.vet_app.data.get_vet", "signature": "", "docstring": null }, "create_vet": { "name": "create_vet", "kind": "function", "path": "openapi_first.templates.vet_app.data.create_vet", "signature": "", "docstring": null }, "update_vet": { "name": "update_vet", "kind": "function", "path": "openapi_first.templates.vet_app.data.update_vet", "signature": "", "docstring": null }, "delete_vet": { "name": "delete_vet", "kind": "function", "path": "openapi_first.templates.vet_app.data.delete_vet", "signature": "", "docstring": null }, "list_treatments": { "name": "list_treatments", "kind": "function", "path": "openapi_first.templates.vet_app.data.list_treatments", "signature": "", "docstring": null }, "get_treatment": { "name": "get_treatment", "kind": "function", "path": "openapi_first.templates.vet_app.data.get_treatment", "signature": "", "docstring": null }, "create_treatment": { "name": "create_treatment", "kind": "function", "path": "openapi_first.templates.vet_app.data.create_treatment", "signature": "", "docstring": null }, "update_treatment": { "name": "update_treatment", "kind": "function", "path": "openapi_first.templates.vet_app.data.update_treatment", "signature": "", "docstring": null }, "delete_treatment": { "name": "delete_treatment", "kind": "function", "path": "openapi_first.templates.vet_app.data.delete_treatment", "signature": "", "docstring": null }, "list_pets": { "name": "list_pets", "kind": "function", "path": "openapi_first.templates.vet_app.data.list_pets", "signature": "", "docstring": null }, "get_pet": { "name": "get_pet", "kind": "function", "path": "openapi_first.templates.vet_app.data.get_pet", "signature": "", "docstring": null }, "create_pet": { "name": "create_pet", "kind": "function", "path": "openapi_first.templates.vet_app.data.create_pet", "signature": "", "docstring": null }, "update_pet": { "name": "update_pet", "kind": "function", "path": "openapi_first.templates.vet_app.data.update_pet", "signature": "", "docstring": null }, "delete_pet": { "name": "delete_pet", "kind": "function", "path": "openapi_first.templates.vet_app.data.delete_pet", "signature": "", "docstring": null }, "list_appointments": { "name": "list_appointments", "kind": "function", "path": "openapi_first.templates.vet_app.data.list_appointments", "signature": "", "docstring": null }, "get_appointment": { "name": "get_appointment", "kind": "function", "path": "openapi_first.templates.vet_app.data.get_appointment", "signature": "", "docstring": null }, "create_appointment": { "name": "create_appointment", "kind": "function", "path": "openapi_first.templates.vet_app.data.create_appointment", "signature": "", "docstring": null }, "update_appointment": { "name": "update_appointment", "kind": "function", "path": "openapi_first.templates.vet_app.data.update_appointment", "signature": "", "docstring": null }, "delete_appointment": { "name": "delete_appointment", "kind": "function", "path": "openapi_first.templates.vet_app.data.delete_appointment", "signature": "", "docstring": null } } } }