Laboratory portal
FHIR integration test
Review the supported capabilities and validate a FHIR bundle before sending it. This test does not store data.
{
"resourceType": "CapabilityStatement",
"status": "active",
"fhirVersion": "4.0.1",
"format": [
"json"
],
"rest": [
{
"mode": "server",
"resource": [
{
"type": "Bundle",
"interaction": [
{
"code": "create"
}
]
}
]
}
]
}Paste a transaction FHIR bundle. We will check its structure without storing data.
The bundle JSON is invalid.
We could not load the supported capabilities.
We could not validate the bundle.
{
"resourceType": "OperationOutcome",
"issue": [
{
"severity": "information",
"code": "informational",
"diagnostics": "Bundle aceptado."
}
]
}{
"resourceType": "OperationOutcome",
"issue": [
{
"severity": "warning",
"code": "not-found",
"diagnostics": "No se encontró un paciente para conciliar."
}
]
}{
"resourceType": "OperationOutcome",
"issue": [
{
"severity": "error",
"code": "structure",
"diagnostics": "El recurso Observation no cumple la estructura esperada."
}
]
}