patch https://fhir-api.zapehr.com/r4b/PlanDefinition/
PlanDefinition on the FHIR specification website.
This resource allows for the definition of various types of plans as a sharable, consumable, and executable artifact. The resource is general enough to support the description of a broad range of clinical and non-clinical artifacts such as clinical decision support rules, order sets, protocols, and drug quality specifications.
The body should be a list of valid JSON patches for PlanDefinition. For example, to update a Slot status to busy, this would be the body:
[
{
op: 'replace',
path: '/status',
value: 'busy',
},
],