FHIR Chat · HealthSamurai Training · kazakhstan

Stream: kazakhstan

Topic: HealthSamurai Training


view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 06:37):

Here is training subtopic

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 06:40):

Mailing list - http://www.hl7.org/listservice/lyris.cfm?action=ls.subscribe

view this post on Zulip Igor Zhukov (Nov 30 2016 at 06:43):

https://github.com/InformConsulting

view this post on Zulip Alexey Lovchikov (Nov 30 2016 at 06:43):

Мой аккаунт aldeveloper

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 06:44):

https://github.com/fhirbase

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 06:44):

https://github.com/hl7-fhir

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 06:45):

https://github.com/healthsamurai

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 06:46):

https://github.com/furore-fhir

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 06:49):

http://wiki.hl7.org/index.php?title=201609_Patient_Track_Proposal

view this post on Zulip 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

view this post on Zulip Igor Zhukov (Nov 30 2016 at 07:01):

http://fhirtest.uhn.ca/baseDstu3/Organization?_format=json&_pretty=true

view this post on Zulip Dmitriy Rypalov (Nov 30 2016 at 07:06):

https://github.com/Informonsulting/HelloWorldFHIR.git

view this post on Zulip Кирилл Казаченко (Nov 30 2016 at 07:07):

https://github.com/InformConsulting/FhirOpen/blob/master/client.py

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:08):

myfhir create patient.json will create patient

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:10):

API docs - http://hl7.org/fhir/http.html#create

view this post on Zulip Кирилл Казаченко (Nov 30 2016 at 07:23):

https://github.com/InformConsulting/FhirOpen/blob/master/client.py

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:23):

:+1:

view this post on Zulip Alexey Lovchikov (Nov 30 2016 at 07:23):

{
"resourceType" : "Patient",
"active" : true,
"name" : ["ALDEVELOPER"],
"gender" : "male"
}

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:25):

http://hl7.org/fhir/patient-examples.html

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:26):

`myfhir read Patient <id>

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:26):

myfhir delete Patient <id>

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:28):

http://hl7.org/fhir/http.html#update

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:28):

myfhir update Patient id <file-with-resource-content>

view this post on Zulip Кирилл Казаченко (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 &quot;Patient/128788/_history/1&quot; 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>'}}

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:34):

http://hl7.org/fhir/http.html#history

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:39):

https://argonaut.aidbox.io/fhir/Patient

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:39):

https://argonaut.aidbox.io/fhir

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 07:50):

http://hl7.org/fhir/bundle.html

view this post on Zulip 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"
  }
}

view this post on Zulip 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"
}

view this post on Zulip 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"
  }
}

view this post on Zulip Alexey Lovchikov (Nov 30 2016 at 08:29):

# DELETE
REQUEST

EMPTY

RESPONSE

EMPTY

view this post on Zulip 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"
        }
      ]
    }
  ]
}

view this post on Zulip Alexey Lovchikov (Nov 30 2016 at 08:37):

https://argonaut.aidbox.io/fhir/Patient/6b7ffd92-28d8-43cf-bfda-dd9f1e94b2d8/_history/1

view this post on Zulip Кирилл Казаченко (Nov 30 2016 at 08:39):

https://argonaut.aidbox.io/fhir/Patient/920fc6eb-b341-46b3-aa1a-e36605729be8/_history/5584a7e4-8e9f-4f24-b786-a5a896912013

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 08:41):

http://build.fhir.org/patient.html

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 08:43):

http://hl7.org/fhir/search.html

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 08:57):

http://hl7.org/fhir/search.html#2.1.1.4.13 - chained parameters search!

view this post on Zulip Alexey Lovchikov (Nov 30 2016 at 09:13):

http://fhirtest.uhn.ca/baseDstu3/Encounter?patient=Patient/194456

view this post on Zulip Кирилл Казаченко (Nov 30 2016 at 09:15):

http://fhirtest.uhn.ca/baseDstu2/Encounter?patient=5149&_pretty=true

view this post on Zulip Alexey Lovchikov (Nov 30 2016 at 09:21):

http://fhirtest.uhn.ca/baseDstu3/Encounter/_search?patient.name=ALDEVELOPER

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 09:25):

http://hl7.org/fhir/search.html#prefix

view this post on Zulip nicola (RIO/SS) (Nov 30 2016 at 09:27):

http://hl7.org/fhir/search.html#date

view this post on Zulip nicola (RIO/SS) (Dec 01 2016 at 07:04):

https://www.hl7.org/fhir/http.html#conformance

view this post on Zulip nicola (RIO/SS) (Dec 01 2016 at 07:14):

https://touchstone.aegis.net/touchstone/

view this post on Zulip Кирилл Казаченко (Dec 01 2016 at 07:15):

http://localhost:5000/fhir/metadata

view this post on Zulip nicola (RIO/SS) (Dec 01 2016 at 07:16):

https://forwardhq.com/

view this post on Zulip Кирилл Казаченко (Dec 01 2016 at 07:17):

https://github.com/InformConsulting/FhirOpen/blob/master/server.py

view this post on Zulip nicola (RIO/SS) (Dec 01 2016 at 07:17):

http://www.fhir.org/conformance-testing

view this post on Zulip nicola (RIO/SS) (Dec 01 2016 at 07:17):

https://projectcrucible.org/

view this post on Zulip nicola (RIO/SS) (Dec 01 2016 at 07:20):

http://hl7.org/fhir/2016Sep/testscript.html

view this post on Zulip nicola (RIO/SS) (Dec 01 2016 at 07:22):

https://github.com/prepor/fhir-testscript

view this post on Zulip Кирилл Казаченко (Dec 01 2016 at 07:23):

http://build.fhir.org/http.html#capabilities

view this post on Zulip nicola (RIO/SS) (Dec 01 2016 at 07:25):

https://github.com/fhirbase/fhirbase-plv8/blob/master/test/fhir/conformance_spec.coffee

view this post on Zulip nicola (RIO/SS) (Dec 01 2016 at 07:28):

https://twitter.com/fhir_furore :)

view this post on Zulip Alexey Lovchikov (Dec 01 2016 at 07:29):

http://aldeveloper.fwd.wf/fhir/metadata

view this post on Zulip nicola (RIO/SS) (Dec 01 2016 at 07:31):

https://projectcrucible.org/ nice test server

view this post on Zulip Alexey Lovchikov (Dec 01 2016 at 07:44):

https://pypi.python.org/pypi/jsonschema

view this post on Zulip nicola (RIO/SS) (Dec 01 2016 at 08:21):

https://www.hl7.org/fhir/patient.profile.json.html

view this post on Zulip nicola (RIO/SS) (Dec 02 2016 at 06:19):

https://www.hl7.org/fhir/terminologies.html

view this post on Zulip nicola (RIO/SS) (Dec 02 2016 at 06:20):

http://www.hl7.org/FHIR/terminology-service.html

view this post on Zulip nicola (RIO/SS) (Dec 02 2016 at 07:12):

https://simplifier.net/


Last updated: Apr 12 2022 at 19:14 UTC