Thank you for your reply!
I defined the extension in Forge and added it to the Patient.
Next I send the update Patient StructureDefinition request
Then I create a new Patient, below is Payload:
{
“resourceType”: “Patient”,
“extension”: [
{
“brithPlace”: {
“url”:“http://hl7.org/fhir/StructureDefinition/patient-birthPlace”,
“valueAddress”: {
“use”: “home”,
“type”: “physical”,
“text”: “USA”,
“line”: [
“Address line 1”
],
“city”: “City1”,
“district”: “District1”,
“state”: “State1”,
“postalCode”: “Postalcode1”,
“country”: “County1”,
“period”: {
“start”: “2019-08-13T13:32:37.3764528-04:00”,
“end”: “2019-08-13T13:32:37.3764635-04:00”
}
}
}
}
],
“active”: false,
“name”: [
{
“family”: “Smith”,
“given”: [
“Alice”
]
},
{
“use”: “official”,
“family”: “Last”,
“given”: [
“First”,
“Second”
]
}
],
“telecom”: [
{
“system”: “phone”,
“value”: “1111111111”,
“use”: “mobile”,
“rank”: 1,
“period”: {
“start”: “2019-08-13T13:32:37.3718441-04:00”,
“end”: “2019-08-13T13:32:37.3718646-04:00”
}
}
],
“gender”: “male”,
“birthDate”: “2000-01-01”,
“deceasedDateTime”: “2019-08-13T13:32:37.3730984-04:00”,
“address”: [
{
“use”: “home”,
“type”: “physical”,
“text”: “USA”,
“line”: [
“Address line 1”
],
“city”: “City1”,
“district”: “District1”,
“state”: “State1”,
“postalCode”: “Postalcode1”,
“country”: “County1”,
“period”: {
“start”: “2019-08-13T13:32:37.3764528-04:00”,
“end”: “2019-08-13T13:32:37.3764635-04:00”
}
}
],
“maritalStatus”: {
“coding”: [
{
“system”: “Marital Status code URI”,
“version”: “V1”,
“code”: “Code1”,
“display”: “Display1”,
“userSelected”: true
}
],
“text”: “Codeable concept text2”
},
“multipleBirthBoolean”: false,
“photo”: [
{
“contentType”: “binary”,
“language”: “binary”,
“data”: “MTAxMDEwMTAxMTExMDAwMDAxMDEwMTA=”,
“url”: “photo.com”,
“size”: 32767,
“hash”: “MTIzNDU2Nzg5QUJDREVGMTIzNDU2”,
“title”: “Patient Photo”,
“creation”: “2000-01-01”
}
],
“managingOrganization”: {
“reference”: “Organization/55709”
}
}
But there is no birthPlace on the created Patient.
Is it wrong for me?