Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

URI

Content

/ws/rest/patient/uuid.json

default representation (not including audit info, including the patient's preferred name but not aliases, etc)

/ws/rest/patient/uuid.json?v=full

representation including all audit info, all names, all historic addresses, etc.

/ws/rest/patient/uuid.json?v=fullwithencounters

full representation plus summaries of all the patient's encounters (this can get very big)

/ws/rest/patient/uuid.json?v=ref

minimal representation, just containing a displayable string, the uri of the default rep, and the uuid

...

default

full

{
"personAddress" : {
"uuid" : "3350d0b5-821c-4e5e-ad1d-a9bce331e118",
"display" : "1050 Wishard Blvd., RG5, Indianapolis, IN",
"uri" : "http://.../ws/rest/person/puuid/personaddressaddress/3350d0b5-821c-4e5e-ad1d-a9bce331e118"
},
/* more stuff */
}

{
"personAddress" : {
"uuid" : "3350d0b5-821c-4e5e-ad1d-a9bce331e118",
"address1" : "1050 Wishard Blvd.",
"address2" : "RG5",
"cityVillage" : "Indianapolis",
"stateProvince" : "IN",
"uri" : "http://.../ws/rest/person/personaddresspuuid/address/3350d0b5-821c-4e5e-ad1d-a9bce331e118"
},
/* more stuff */

...