From 91dee5527999d2b3714903396deef600b6612c63 Mon Sep 17 00:00:00 2001 From: Tadgh Date: Wed, 30 Jun 2021 14:49:37 -0400 Subject: [PATCH] Correct docs --- .../uhn/hapi/fhir/docs/server_jpa_mdm/mdm_operations.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/server_jpa_mdm/mdm_operations.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/server_jpa_mdm/mdm_operations.md index 2c25378c45d..1d03c7a13e2 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/server_jpa_mdm/mdm_operations.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/server_jpa_mdm/mdm_operations.md @@ -18,16 +18,18 @@ Or if you are making a POST request ```http request POST http://example.com/$mdm-query-links ``` -You could use request body + +With request body: + ```json { "resourceType": "Parameters", "parameter": [ { "name": "_offset", - "valueInt": 0 + "valueInteger": 0 }, { "name": "_count", - "valueInt": 2 + "valueInteger": 2 } ] } ```