What problem does it solve? Building FHIR-compliant healthcare APIs requires precise knowledge of resource cardinality, value sets, HTTP status codes, and SMART on FHIR scopes; mistakes like requiring optional fields or returning wrong error codes break interoperability. ## Core Features & Use Cases - FHIR R4 Resource Guidance: Required fields, cardinality rules, value sets, and coding systems (LOINC, SNOMED, RxNorm, ICD-10) for Patient, Observation, Encounter, Condition, and MedicationRequest. - Validation & Error Handling: Correct HTTP status codes (422 for validation, 412 for ETag mismatch) and OperationOutcome error response patterns in FastAPI and Express. - SMART on FHIR & Bundles: OAuth scope syntax (v1/v2), backend services flow, transaction vs batch semantics, and search pagination. - Use Case: Scaffold a new FastAPI FHIR server with correct Pydantic v2 models and Patient CRUD endpoints using the included setup script. ## Quick Start Ask the assistant to create a FHIR Observation endpoint with proper validation and OperationOutcome error responses.