I'm tasked with writing a FHIR API in .NET.
For an API/server to be FHIR compatible does it have to implement the HATEOAS/links part - for example, does an Encounter
object have to have a link to its Patient
object, or can it have the entire Patient
object in the Encounter
's subject
field?
Thank you in advance!