dotimplement / HealthChain

Simplify prototyping and testing LLM applications in healthcare context 💫 🏥
https://dotimplement.github.io/HealthChain/
Apache License 2.0
10 stars 1 forks source link

resourceType field not appearing in generated data by default #44

Closed adamkells closed 2 months ago

adamkells commented 2 months ago

The resourceType field in the FHIR resource data doesn't appear in the generated resources by default.

The resourceType field should be refactored in all resource files from: resourceType: str = 'resource_name To: resourceType: str = Field('resource_name', const=True)