put https://fhir-api.zapehr.com/r4b/Basic/
Basic on the FHIR specification website.
Basic is used for handling concepts not yet defined in FHIR, narrative-only resources that don't map to an existing resource, and custom resources not appropriate for inclusion in the FHIR specification.
The body should be a valid FHIR object for Basic.
Here is an example:
{
"resourceType": "Basic",
"id": "classModel",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p><b>Class1</b></p>\n <ul>\n <li>Attribute1: 1..*</li>\n <li>Attribute2: 0..1</li>\n </ul>\n </div>"
},
"extension": [
{
"url": "http://example.org/do-not-use/fhir-extensions/UMLclass",
"extension": [
{
"url": "name",
"valueString": "Class1"
},
{
"url": "attribute",
"extension": [
{
"url": "name",
"valueString": "attribute1"
},
{
"url": "minOccurs",
"valueInteger": 1
},
{
"url": "maxOccurs",
"valueCode": "*"
}
]
},
{
"url": "attribute",
"extension": [
{
"url": "name",
"valueString": "attribute2"
},
{
"url": "minOccurs",
"valueInteger": 0
},
{
"url": "maxOccurs",
"valueInteger": 1
}
]
}
]
}
],
"code": {
"coding": [
{
"system": "http://example.org/do-not-use/fhir-codes#resourceTypes",
"code": "UMLCLASSMODEL"
}
]
}
}
You can reference the FHIR documentation to determine the format for Basic
.