Stream: kazakhstan
Topic: HealthSamurai Training
nicola (RIO/SS) (Nov 30 2016 at 06:37):
Here is training subtopic
nicola (RIO/SS) (Nov 30 2016 at 06:40):
Mailing list - http://www.hl7.org/listservice/lyris.cfm?action=ls.subscribe
Igor Zhukov (Nov 30 2016 at 06:43):
https://github.com/InformConsulting
Alexey Lovchikov (Nov 30 2016 at 06:43):
Мой аккаунт aldeveloper
nicola (RIO/SS) (Nov 30 2016 at 06:44):
nicola (RIO/SS) (Nov 30 2016 at 06:44):
nicola (RIO/SS) (Nov 30 2016 at 06:45):
https://github.com/healthsamurai
nicola (RIO/SS) (Nov 30 2016 at 06:46):
https://github.com/furore-fhir
nicola (RIO/SS) (Nov 30 2016 at 06:49):
http://wiki.hl7.org/index.php?title=201609_Patient_Track_Proposal
nicola (RIO/SS) (Nov 30 2016 at 06:54):
List of FHIR servers - http://wiki.hl7.org/index.php?title=Publicly_Available_FHIR_Servers_for_testing
Igor Zhukov (Nov 30 2016 at 07:01):
http://fhirtest.uhn.ca/baseDstu3/Organization?_format=json&_pretty=true
Dmitriy Rypalov (Nov 30 2016 at 07:06):
https://github.com/Informonsulting/HelloWorldFHIR.git
Кирилл Казаченко (Nov 30 2016 at 07:07):
https://github.com/InformConsulting/FhirOpen/blob/master/client.py
nicola (RIO/SS) (Nov 30 2016 at 07:08):
myfhir create patient.json
will create patient
nicola (RIO/SS) (Nov 30 2016 at 07:10):
API docs - http://hl7.org/fhir/http.html#create
Кирилл Казаченко (Nov 30 2016 at 07:23):
https://github.com/InformConsulting/FhirOpen/blob/master/client.py
nicola (RIO/SS) (Nov 30 2016 at 07:23):
Alexey Lovchikov (Nov 30 2016 at 07:23):
{
"resourceType" : "Patient",
"active" : true,
"name" : ["ALDEVELOPER"],
"gender" : "male"
}
nicola (RIO/SS) (Nov 30 2016 at 07:25):
http://hl7.org/fhir/patient-examples.html
nicola (RIO/SS) (Nov 30 2016 at 07:26):
`myfhir read Patient <id>
nicola (RIO/SS) (Nov 30 2016 at 07:26):
myfhir delete Patient <id>
nicola (RIO/SS) (Nov 30 2016 at 07:28):
http://hl7.org/fhir/http.html#update
nicola (RIO/SS) (Nov 30 2016 at 07:28):
myfhir update Patient id <file-with-resource-content>
Кирилл Казаченко (Nov 30 2016 at 07:30):
{'resourceType': 'OperationOutcome', 'issue': [{'severity': 'information', 'code': 'informational', 'diagnostics': 'Successfully created resource "Patient/128788/_history/1" in 1ms'}], 'text': {'status': 'generated', 'div': '<div xmlns="http://www.w3.org/1999/xhtml"><h1>Operation Outcome</h1><table border="0"><tr><td style="font-weight: bold;">information</td><td>[]</td><td><pre>Successfully created resource "Patient/128788/_history/1" in 1ms</pre></td>\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t</tr>\n\t\t</table>\n\t</div>'}}
nicola (RIO/SS) (Nov 30 2016 at 07:34):
http://hl7.org/fhir/http.html#history
nicola (RIO/SS) (Nov 30 2016 at 07:39):
https://argonaut.aidbox.io/fhir/Patient
nicola (RIO/SS) (Nov 30 2016 at 07:39):
https://argonaut.aidbox.io/fhir
nicola (RIO/SS) (Nov 30 2016 at 07:50):
http://hl7.org/fhir/bundle.html
Alexey Lovchikov (Nov 30 2016 at 08:17):
# POST
REQUEST
{ "resourceType" : "Patient", "active" : true, "name" : [ { "given": ["TEST"] } ], "gender" : "male" }
RESPONSE
{ "resourceType": "Patient", "active": true, "name": [ { "given": [ "TEST" ] } ], "gender": "male", "id": "6b7ffd92-28d8-43cf-bfda-dd9f1e94b2d8", "meta": { "versionId": "fbe15e31-a02e-4322-a9a3-54d77038e638", "lastUpdated": "2016-11-30T08:16:50.105Z" } }
Alexey Lovchikov (Nov 30 2016 at 08:23):
- GET *
RESPONSE
{ "id": "6b7ffd92-28d8-43cf-bfda-dd9f1e94b2d8", "meta": { "versionId": "fbe15e31-a02e-4322-a9a3-54d77038e638", "lastUpdated": "2016-11-30T08:16:50.105Z" }, "name": [ { "given": [ "TEST" ] } ], "active": true, "gender": "male", "resourceType": "Patient" }
Alexey Lovchikov (Nov 30 2016 at 08:27):
# PUT
REQUEST
{ "id": "6b7ffd92-28d8-43cf-bfda-dd9f1e94b2d8", "resourceType" : "Patient", "gender" : "other" }
RESPONSE
{ "id": "6b7ffd92-28d8-43cf-bfda-dd9f1e94b2d8", "resourceType": "Patient", "gender": "other", "meta": { "versionId": "62b121a1-be6f-460c-bb90-17708bbfb345", "lastUpdated": "2016-11-30T08:27:22.654Z" } }
Alexey Lovchikov (Nov 30 2016 at 08:29):
# DELETE
REQUEST
EMPTY
RESPONSE
EMPTY
Alexey Lovchikov (Nov 30 2016 at 08:31):
# GET УДАЛЕННЫЙ РЕСУРС
RESPOSNSE
{ "resourceType": "OperationOutcome", "issue": [ { "severity": "error", "code": "not-found", "details": { "coding": [ { "code": "MSG_DELETED_ID", "display": "The resource \"6b7ffd92-28d8-43cf-bfda-dd9f1e94b2d8\" has been deleted" } ] }, "diagnostics": "Resource Id \"6b7ffd92-28d8-43cf-bfda-dd9f1e94b2d8\" with versionId \"undefined\" has been deleted", "extension": [ { "url": "http-status-code", "valueString": "410" } ] } ] }
Alexey Lovchikov (Nov 30 2016 at 08:37):
https://argonaut.aidbox.io/fhir/Patient/6b7ffd92-28d8-43cf-bfda-dd9f1e94b2d8/_history/1
Кирилл Казаченко (Nov 30 2016 at 08:39):
nicola (RIO/SS) (Nov 30 2016 at 08:41):
http://build.fhir.org/patient.html
nicola (RIO/SS) (Nov 30 2016 at 08:43):
http://hl7.org/fhir/search.html
nicola (RIO/SS) (Nov 30 2016 at 08:57):
http://hl7.org/fhir/search.html#2.1.1.4.13 - chained parameters search!
Alexey Lovchikov (Nov 30 2016 at 09:13):
http://fhirtest.uhn.ca/baseDstu3/Encounter?patient=Patient/194456
Кирилл Казаченко (Nov 30 2016 at 09:15):
http://fhirtest.uhn.ca/baseDstu2/Encounter?patient=5149&_pretty=true
Alexey Lovchikov (Nov 30 2016 at 09:21):
http://fhirtest.uhn.ca/baseDstu3/Encounter/_search?patient.name=ALDEVELOPER
nicola (RIO/SS) (Nov 30 2016 at 09:25):
http://hl7.org/fhir/search.html#prefix
nicola (RIO/SS) (Nov 30 2016 at 09:27):
http://hl7.org/fhir/search.html#date
nicola (RIO/SS) (Dec 01 2016 at 07:04):
https://www.hl7.org/fhir/http.html#conformance
nicola (RIO/SS) (Dec 01 2016 at 07:14):
https://touchstone.aegis.net/touchstone/
Кирилл Казаченко (Dec 01 2016 at 07:15):
http://localhost:5000/fhir/metadata
nicola (RIO/SS) (Dec 01 2016 at 07:16):
Кирилл Казаченко (Dec 01 2016 at 07:17):
https://github.com/InformConsulting/FhirOpen/blob/master/server.py
nicola (RIO/SS) (Dec 01 2016 at 07:17):
http://www.fhir.org/conformance-testing
nicola (RIO/SS) (Dec 01 2016 at 07:17):
nicola (RIO/SS) (Dec 01 2016 at 07:20):
http://hl7.org/fhir/2016Sep/testscript.html
nicola (RIO/SS) (Dec 01 2016 at 07:22):
https://github.com/prepor/fhir-testscript
Кирилл Казаченко (Dec 01 2016 at 07:23):
http://build.fhir.org/http.html#capabilities
nicola (RIO/SS) (Dec 01 2016 at 07:25):
https://github.com/fhirbase/fhirbase-plv8/blob/master/test/fhir/conformance_spec.coffee
nicola (RIO/SS) (Dec 01 2016 at 07:28):
https://twitter.com/fhir_furore :)
Alexey Lovchikov (Dec 01 2016 at 07:29):
http://aldeveloper.fwd.wf/fhir/metadata
nicola (RIO/SS) (Dec 01 2016 at 07:31):
https://projectcrucible.org/ nice test server
Alexey Lovchikov (Dec 01 2016 at 07:44):
https://pypi.python.org/pypi/jsonschema
nicola (RIO/SS) (Dec 01 2016 at 08:21):
https://www.hl7.org/fhir/patient.profile.json.html
nicola (RIO/SS) (Dec 02 2016 at 06:19):
https://www.hl7.org/fhir/terminologies.html
nicola (RIO/SS) (Dec 02 2016 at 06:20):
http://www.hl7.org/FHIR/terminology-service.html
nicola (RIO/SS) (Dec 02 2016 at 07:12):
Last updated: Apr 12 2022 at 19:14 UTC