{"id":19668197,"url":"https://github.com/projkov/fhirpath-ui","last_synced_at":"2025-08-02T07:12:55.644Z","repository":{"id":246349951,"uuid":"820799554","full_name":"projkov/fhirpath-ui","owner":"projkov","description":"Open-source UI for FHIRPath","archived":false,"fork":false,"pushed_at":"2025-06-21T19:55:50.000Z","size":13456,"stargazers_count":2,"open_issues_count":8,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-06T22:07:12.924Z","etag":null,"topics":["fhir","fhirpath","reactjs","typescript"],"latest_commit_sha":null,"homepage":"https://projkov.github.io/fhirpath-ui/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/projkov.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-06-27T07:49:12.000Z","updated_at":"2025-06-21T19:55:54.000Z","dependencies_parsed_at":"2025-04-04T20:21:58.003Z","dependency_job_id":"13ac9751-a589-4fe5-a395-9925d05afc10","html_url":"https://github.com/projkov/fhirpath-ui","commit_stats":null,"previous_names":["projkov/fhirpath-ui"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/projkov/fhirpath-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projkov%2Ffhirpath-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projkov%2Ffhirpath-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projkov%2Ffhirpath-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projkov%2Ffhirpath-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/projkov","download_url":"https://codeload.github.com/projkov/fhirpath-ui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projkov%2Ffhirpath-ui/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268348343,"owners_count":24236295,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fhir","fhirpath","reactjs","typescript"],"created_at":"2024-11-11T16:34:46.004Z","updated_at":"2025-08-02T07:12:55.596Z","avatar_url":"https://github.com/projkov.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FHIRPath UI\n## Open-source UI for FHIRPath\n**Official website**: [https://projkov.github.io/fhirpath-ui/](https://projkov.github.io/fhirpath-ui/)\n![FHIRPath UI](./fhirpath-ui-5.png)\n### Motivation\nLately, I've been working a lot with FHIR IG and FHIR data. I frequently need to check the quality of data, extensions, etc. I found that FHIRPath is a perfect tool to manipulate FHIR data. Sometimes, I need to share the result of a FHIRPath expression for a target FHIR resource with my colleagues for work or educational purposes.\n\nA lot of web services exist with the ability to run FHIRPath expressions. However, I couldn't find a service where I could easily get a resource through a URL, write a FHIRPath expression, and share it. So, I decided to implement it myself. The current version is under development and has many problems, but I hope you find it useful. It's open-source, so you can do anything you want with it.\n\nIf you have any ideas on how to improve it, you are welcome to share them. You can email me at prozskov@gmail.com or create an issue on GitHub.\n\nThings that I want to add in the near future:\n1. Syntax highlighting for FHIRPath;\n2. Ability to set a color scheme;\n3. Ability to change the font size;\n4. Ability to share a custom FHIR resource, not only those available by URL.\n\nThanks,\n\nPavel Rozhkov\n### Examples\n1. [List of combo parameters for Observation resource](https://projkov.github.io/fhirpath-ui?url=https%3A%2F%2Fwww.hl7.org%2Ffhir%2Fus%2Fcore%2FCapabilityStatement-us-core-server.json\u0026expression=CapabilityStatement.rest.resource.where(%0A%20%20%20%20type%3D'Observation').extension.where(%0A%20%20%20%20%20%20%20%20url%3D'http%3A%2F%2Fhl7.org%2Ffhir%2FStructureDefinition%2Fcapabilitystatement-search-parameter-combination'))\n2. [List of Patient IDs with gender equal to 'male'](https://projkov.github.io/fhirpath-ui?url=https%3A%2F%2Fserver.fire.ly%2FPatient\u0026expression=Bundle.entry.resource.where(gender%3D'male').id)\n### Features\n1. Evaluate FHIRPath expressions online.\n2. Retrieve FHIR resources by link.\n3. Share your FHIRPath expressions with colleagues in one click.\n4. Authorization through the header\n5. Share your results\n6. Open-source.\n### Local Development\n#### Docker and Docker Compose\n```bash\ndocker compose up\n```\n#### YARN\n```bash\nyarn install\nyarn start\n```\n\nThe UI will be available at [http://localhost:3000](http://localhost:3000).\n\n### Contribute\n* **Found or want some new features?** Feel free to create issues.\n* **Want to contribute?** Feel free to fork the repository and send merge requests.\n* **Anything else?** You can write an email to me at prozskov@gmail.com.\n\n### Want to use it?\n1. Use the official website [https://projkov.github.io/fhirpath-ui/](https://projkov.github.io/fhirpath-ui/).\n2. Use this source code.\n\n### References\n1. [FHIRPath documentation](https://build.fhir.org/fhirpath.html)\n2. [FHIRPath implementation by beda.software](https://github.com/beda-software/fhirpath-py)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojkov%2Ffhirpath-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprojkov%2Ffhirpath-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojkov%2Ffhirpath-ui/lists"}