{"id":7566,"date":"2019-02-06T22:41:56","date_gmt":"2019-02-06T22:41:56","guid":{"rendered":"http:\/\/orionhealth.weareiceberg.co\/?p=615"},"modified":"2024-11-26T00:59:56","modified_gmt":"2024-11-26T00:59:56","slug":"what-is-the-fhir-bulk-data-extract","status":"publish","type":"post","link":"http:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/","title":{"rendered":"What is the FHIR Bulk Data Extract?"},"content":{"rendered":"\n<p>The\u00a0<a href=\"https:\/\/orionhealth.com\/blog\/fhir-release-4-is-published\/\">FHIR\u00ae specification (release 4)<\/a>\u00a0has been published, and along with this, the scope of\u00a0<a href=\"https:\/\/orionhealth.com\/blog\/fhir-the-basics\/\">FHIR<\/a>\u00a0is also increasing. Ancillary specifications are under development, these build on the core FHIR specification to meet specific and required needs. These specifications take common use cases and provide guides that describe them in detail. Along with architectural options and supporting FHIR artifacts, this helps prevent the same problem being solved in multiple ways by different implementers.<\/p>\n\n\n\n<p><strong><a href=\"https:\/\/github.com\/smart-on-fhir\/fhir-bulk-data-docs\/blob\/master\/export.md\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">The FHIR Bulk Data Export Specification<br><\/a><\/strong>One of these is the\u00a0FHIR Bulk Data Extract, which is designed to meet use cases where information from multiple patients, needs to be extracted from a data source such as an Electronic Health Record (EHR) or FHIR server, to support requirements such as:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Obtaining data:<\/strong>&nbsp;from an EHR for population-based research and training data for a machine learning algorithm or quality metrics.<\/li>\n\n\n\n<li><strong>Moving data:<\/strong>\u00a0in bulk between servers \u2013 perhaps when medical practices and EHR\u2019s merge or when an organisation changes their EHR. Another example would be moving directory data between servers as described in the\u00a0<a href=\"http:\/\/hl7.org\/fhir\/uv\/vhdir\/2018Sep\/technical-guidance.html#exchange\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Validated Hea<\/a><a aria-label=\"l (opens in a new tab)\" href=\"http:\/\/hl7.org\/fhir\/uv\/vhdir\/2018Sep\/technical-guidance.html#exchange\" target=\"_blank\" rel=\"noreferrer noopener\">l<\/a><a href=\"http:\/\/hl7.org\/fhir\/uv\/vhdir\/2018Sep\/technical-guidance.html#exchange\">thcare Directory Guide<\/a>\u00a0(VHDir) Implementation Guide.<\/li>\n\n\n\n<li><strong>Extracting data:&nbsp;<\/strong>entire data sets on patient groups for analytics \u2013 patients on a clinical trial or under Case Management.<\/li>\n<\/ul>\n\n\n\n<p>The data that is returned might include Personal Health Information (PHI), or it may have been de-identified if this is not appropriate. It\u2019s important to appreciate that this specification is in the early stages of development and like FHIR itself, is being tested as it is being developed at connectathons. Many major EHR vendors, as well as plenty of others, are involved in the FHIR bulk data extract development. Here are the high-level results from the connectathon held in January at the 2019 Working Group Meeting in\u00a0San Antonio.<\/p>\n\n\n\n<p>The client submits a request for data, and the server will create a file containing the data for the client to consume. The actual request can be specified in a number of ways:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Firstly, the extract could be across all the patients in the server, or just a subset of patients \u2013 as defined by the\u00a0<a href=\"http:\/\/hl7.org\/fhir\/group.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Group<\/a><\/li>\n\n\n\n<li>Also, then you can also specify which resource types you are interested in, and a \u2018resource modified\u2019 date.<\/li>\n\n\n\n<li>There\u2019s also a new \u2018type filter\u2019 that\u2019s being discussed that allows you to get more granular (e.g., include blood pressure and pulse observations only in the last six months).<\/li>\n<\/ul>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>The Asynchronous Approach<\/strong><\/h5>\n\n\n\n<p>Because of the large size of the data that can result from these searches, the specification describes an \u2018asynchronous\u2019 approach \u2013 in other words, the client doesn\u2019t wait for the server to create the extract as this could take a long time. The details of this are in the specification, a brief description is: &nbsp;<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>The client makes the request of the server called the \u2018kickoff\u2019 request. If the request is accepted, the server returns a location that the client can query to determine when the extraction has been completed.<\/li>\n\n\n\n<li>The client periodically polls the server using the address it has been given to monitor the progress of the extraction. When the extraction is complete, the server will return an \u2018outcome\u2019 response that has the location if the file\/s contain the extracted data, any errors that may have occurred, security details for actually downloading the data and others.<\/li>\n\n\n\n<li>The client then downloads the files containing the extracted data (in\u00a0<a href=\"http:\/\/ndjson.org\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">ndjson<\/a>\u00a0format \u2013 which describes how to have multiple JSON objects in a single file) from the specified location. Observing whatever security measures were specified, for example, it may have to provide a specific access token that was previously negotiated with the server.<\/li>\n\n\n\n<li>Finally, the client informs the server that the data has been downloaded, and the files can be deleted. (Of course, nothing is stopping the server doing this automatically after a time interval).<\/li>\n<\/ol>\n\n\n\n<p>So here\u2019s an example of a kickoff request that might be used to pull directory related resources from a registry into some other server:<\/p>\n\n\n\n<p>GET [base]\/$export ?_type=Organization, Location, Practitioner, PractitionerRole, HealthcareService<\/p>\n\n\n\n<p>Or how about moving terminology resources between terminology servers:&nbsp;<\/p>\n\n\n\n<p>GET [base]\/$export ?_type=ValueSet, CodeSystem, ConceptMap, NamingSystem,<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>The Importance of Security&nbsp;<\/strong><\/h5>\n\n\n\n<p>Security is front and centre in the specification. It notes that functionality such as this is a \u2018holy grail\u2019 for attackers \u2013 \u2018give me all your data\u2019 is an attractive operation to subvert!<\/p>\n\n\n\n<p>The details of this are in the specification, and the discussions are ongoing. The specification so far:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Any transport is secure (obviously)<\/li>\n\n\n\n<li>Authentication (identifying the client) is paramount, and there is work on specifying, which was tested at the\u00a0recent connectathon\u00a0based on the\u00a0<a href=\"https:\/\/orionhealth.com\/white-papers\/how-to-maximize-security-by-adding-smarts-to-your-fhir-apis\/\">SMART<\/a><\/li>\n\n\n\n<li>The server is obligated to preserve patient privacy. The exact mechanism of how this is to be done is dependent on the implementation, for example, a server could support \u2018opt-out\u2019 \u2013 or \u2018opt-in\u2019 consent like\u00a0<a href=\"http:\/\/syncfor.science\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Sync for Science.<\/a><\/li>\n\n\n\n<li>Only data that the client is able to access should be returned. Again, the exact mechanism will vary.<\/li>\n\n\n\n<li>The output may be encrypted in a format that only the client can decrypt.<\/li>\n<\/ul>\n\n\n\n<p>In conclusion, as FHIR matures and is increasingly accepted as the manner in which healthcare information is exchanged and at times stored, attention is being turned to how best to use FHIR for specific scenarios, sometimes this advice is in the form of Implementation Guides, but where the scenario is more general it is represented as a separate specification.<\/p>\n\n\n\n<p>To learn more about FHIR bulk data extract, have a look at these resources:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The\u00a0<a href=\"https:\/\/chat.fhir.org\/#narrow\/stream\/179250-bulk-data\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">FHIR chat<\/a>\u00a0dedicated to Bulk Data<\/li>\n\n\n\n<li>A\u00a0<a href=\"https:\/\/docs.google.com\/presentation\/d\/14ZHmam9hwz6-SsCG1YqUIQnJ56bvSqEatebltgEVR6c\/edit#slide=id.g2c65f63755_0_7\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">presentation<\/a>\u00a0created by the Bulk Data team<\/li>\n\n\n\n<li>The draft\u00a0<a href=\"https:\/\/github.com\/smart-on-fhir\/fhir-bulk-data-docs\/blob\/master\/export.md\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Implementation Guide<\/a><\/li>\n<\/ul>\n\n\n\n<p>Also, thanks to\u00a0<a href=\"https:\/\/www.linkedin.com\/in\/brianpos\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Brian Postlethwaite<\/a>\u00a0for helping out with this post.<\/p>\n\n\n\n<p>To learn more about FHIR, read my white paper Enabling the Ecosystem with FHIR which discusses how healthcare information can be made available where and when it is needed.<\/p>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/orionhealth.com\/white-papers\/enabling-the-ecosystem-with-fhir\/\">Go to White Paper<\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>The\u00a0FHIR\u00ae specification (release 4)\u00a0has been published, and along with this, the scope of\u00a0FHIR\u00a0is also increasing. Ancillary specifications are under development, these build on the core FHIR specification to meet specific and required needs. These specifications take common use cases and provide guides that describe them in detail. Along with architectural options and supporting FHIR artifacts, [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":7711814,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"content-type":"","footnotes":""},"categories":[1],"tags":[],"region":[23],"class_list":["post-7566","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","region-global"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is the FHIR Bulk Data Extract? - Orion Health<\/title>\n<meta name=\"description\" content=\"What is the FHIR Bulk Data Extract? The\u00a0FHIR\u00ae specification (release 4)\u00a0has been published, and along with this, the scope of\u00a0FHIR\u00a0is also..\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is the FHIR Bulk Data Extract? - Orion Health\" \/>\n<meta property=\"og:description\" content=\"What is the FHIR Bulk Data Extract? The\u00a0FHIR\u00ae specification (release 4)\u00a0has been published, and along with this, the scope of\u00a0FHIR\u00a0is also..\" \/>\n<meta property=\"og:url\" content=\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/\" \/>\n<meta property=\"og:site_name\" content=\"Orion Health\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/orionhealth\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-06T22:41:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T00:59:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/orionhealth.com\/wp-content\/uploads\/FHIR-Bulk-Data-Extract-Nurse-and-patient-in-wheelchair.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1180\" \/>\n\t<meta property=\"og:image:height\" content=\"804\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"MarkOps\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@OrionHealth\" \/>\n<meta name=\"twitter:site\" content=\"@OrionHealth\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"MarkOps\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/\"},\"author\":{\"name\":\"MarkOps\",\"@id\":\"https:\/\/orionhealth.com\/uk\/#\/schema\/person\/689ebe5a4696ea74129b3d0ec636d756\"},\"headline\":\"What is the FHIR Bulk Data Extract?\",\"datePublished\":\"2019-02-06T22:41:56+00:00\",\"dateModified\":\"2024-11-26T00:59:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/\"},\"wordCount\":983,\"publisher\":{\"@id\":\"https:\/\/orionhealth.com\/uk\/#organization\"},\"image\":{\"@id\":\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/orionhealth.com\/wp-content\/uploads\/FHIR-Bulk-Data-Extract-Nurse-and-patient-in-wheelchair.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"global\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/\",\"url\":\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/\",\"name\":\"What is the FHIR Bulk Data Extract? - Orion Health\",\"isPartOf\":{\"@id\":\"https:\/\/orionhealth.com\/uk\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/orionhealth.com\/wp-content\/uploads\/FHIR-Bulk-Data-Extract-Nurse-and-patient-in-wheelchair.jpg\",\"datePublished\":\"2019-02-06T22:41:56+00:00\",\"dateModified\":\"2024-11-26T00:59:56+00:00\",\"description\":\"What is the FHIR Bulk Data Extract? The\u00a0FHIR\u00ae specification (release 4)\u00a0has been published, and along with this, the scope of\u00a0FHIR\u00a0is also..\",\"inLanguage\":\"global\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"global\",\"@id\":\"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/#primaryimage\",\"url\":\"https:\/\/orionhealth.com\/wp-content\/uploads\/FHIR-Bulk-Data-Extract-Nurse-and-patient-in-wheelchair.jpg\",\"contentUrl\":\"https:\/\/orionhealth.com\/wp-content\/uploads\/FHIR-Bulk-Data-Extract-Nurse-and-patient-in-wheelchair.jpg\",\"width\":1180,\"height\":804},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/orionhealth.com\/uk\/#website\",\"url\":\"https:\/\/orionhealth.com\/uk\/\",\"name\":\"Orion Health\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/orionhealth.com\/uk\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/orionhealth.com\/uk\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"global\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/orionhealth.com\/uk\/#organization\",\"name\":\"Orion Health\",\"url\":\"https:\/\/orionhealth.com\/uk\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"global\",\"@id\":\"https:\/\/orionhealth.com\/uk\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/orionhealth.com\/wp-content\/uploads\/Orion-Health-Logo.png\",\"contentUrl\":\"https:\/\/orionhealth.com\/wp-content\/uploads\/Orion-Health-Logo.png\",\"width\":260,\"height\":96,\"caption\":\"Orion Health\"},\"image\":{\"@id\":\"https:\/\/orionhealth.com\/uk\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/orionhealth\/\",\"https:\/\/x.com\/OrionHealth\",\"https:\/\/www.linkedin.com\/company\/orion-health\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/orionhealth.com\/uk\/#\/schema\/person\/689ebe5a4696ea74129b3d0ec636d756\",\"name\":\"MarkOps\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"global\",\"@id\":\"https:\/\/orionhealth.com\/uk\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"MarkOps\"},\"url\":\"http:\/\/orionhealth.com\/global\/author\/markops\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is the FHIR Bulk Data Extract? - Orion Health","description":"What is the FHIR Bulk Data Extract? The\u00a0FHIR\u00ae specification (release 4)\u00a0has been published, and along with this, the scope of\u00a0FHIR\u00a0is also..","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/","og_locale":"en_US","og_type":"article","og_title":"What is the FHIR Bulk Data Extract? - Orion Health","og_description":"What is the FHIR Bulk Data Extract? The\u00a0FHIR\u00ae specification (release 4)\u00a0has been published, and along with this, the scope of\u00a0FHIR\u00a0is also..","og_url":"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/","og_site_name":"Orion Health","article_publisher":"https:\/\/www.facebook.com\/orionhealth\/","article_published_time":"2019-02-06T22:41:56+00:00","article_modified_time":"2024-11-26T00:59:56+00:00","og_image":[{"width":1180,"height":804,"url":"https:\/\/orionhealth.com\/wp-content\/uploads\/FHIR-Bulk-Data-Extract-Nurse-and-patient-in-wheelchair.jpg","type":"image\/jpeg"}],"author":"MarkOps","twitter_card":"summary_large_image","twitter_creator":"@OrionHealth","twitter_site":"@OrionHealth","twitter_misc":{"Written by":"MarkOps","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/#article","isPartOf":{"@id":"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/"},"author":{"name":"MarkOps","@id":"https:\/\/orionhealth.com\/uk\/#\/schema\/person\/689ebe5a4696ea74129b3d0ec636d756"},"headline":"What is the FHIR Bulk Data Extract?","datePublished":"2019-02-06T22:41:56+00:00","dateModified":"2024-11-26T00:59:56+00:00","mainEntityOfPage":{"@id":"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/"},"wordCount":983,"publisher":{"@id":"https:\/\/orionhealth.com\/uk\/#organization"},"image":{"@id":"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/#primaryimage"},"thumbnailUrl":"https:\/\/orionhealth.com\/wp-content\/uploads\/FHIR-Bulk-Data-Extract-Nurse-and-patient-in-wheelchair.jpg","articleSection":["Blog"],"inLanguage":"global"},{"@type":"WebPage","@id":"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/","url":"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/","name":"What is the FHIR Bulk Data Extract? - Orion Health","isPartOf":{"@id":"https:\/\/orionhealth.com\/uk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/#primaryimage"},"image":{"@id":"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/#primaryimage"},"thumbnailUrl":"https:\/\/orionhealth.com\/wp-content\/uploads\/FHIR-Bulk-Data-Extract-Nurse-and-patient-in-wheelchair.jpg","datePublished":"2019-02-06T22:41:56+00:00","dateModified":"2024-11-26T00:59:56+00:00","description":"What is the FHIR Bulk Data Extract? The\u00a0FHIR\u00ae specification (release 4)\u00a0has been published, and along with this, the scope of\u00a0FHIR\u00a0is also..","inLanguage":"global","potentialAction":[{"@type":"ReadAction","target":["https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/"]}]},{"@type":"ImageObject","inLanguage":"global","@id":"https:\/\/orionhealth.com\/global\/blog\/what-is-the-fhir-bulk-data-extract\/#primaryimage","url":"https:\/\/orionhealth.com\/wp-content\/uploads\/FHIR-Bulk-Data-Extract-Nurse-and-patient-in-wheelchair.jpg","contentUrl":"https:\/\/orionhealth.com\/wp-content\/uploads\/FHIR-Bulk-Data-Extract-Nurse-and-patient-in-wheelchair.jpg","width":1180,"height":804},{"@type":"WebSite","@id":"https:\/\/orionhealth.com\/uk\/#website","url":"https:\/\/orionhealth.com\/uk\/","name":"Orion Health","description":"","publisher":{"@id":"https:\/\/orionhealth.com\/uk\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/orionhealth.com\/uk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"global"},{"@type":"Organization","@id":"https:\/\/orionhealth.com\/uk\/#organization","name":"Orion Health","url":"https:\/\/orionhealth.com\/uk\/","logo":{"@type":"ImageObject","inLanguage":"global","@id":"https:\/\/orionhealth.com\/uk\/#\/schema\/logo\/image\/","url":"https:\/\/orionhealth.com\/wp-content\/uploads\/Orion-Health-Logo.png","contentUrl":"https:\/\/orionhealth.com\/wp-content\/uploads\/Orion-Health-Logo.png","width":260,"height":96,"caption":"Orion Health"},"image":{"@id":"https:\/\/orionhealth.com\/uk\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/orionhealth\/","https:\/\/x.com\/OrionHealth","https:\/\/www.linkedin.com\/company\/orion-health"]},{"@type":"Person","@id":"https:\/\/orionhealth.com\/uk\/#\/schema\/person\/689ebe5a4696ea74129b3d0ec636d756","name":"MarkOps","image":{"@type":"ImageObject","inLanguage":"global","@id":"https:\/\/orionhealth.com\/uk\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"MarkOps"},"url":"http:\/\/orionhealth.com\/global\/author\/markops\/"}]}},"_links":{"self":[{"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/posts\/7566","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/comments?post=7566"}],"version-history":[{"count":1,"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/posts\/7566\/revisions"}],"predecessor-version":[{"id":7711815,"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/posts\/7566\/revisions\/7711815"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/media\/7711814"}],"wp:attachment":[{"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/media?parent=7566"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/categories?post=7566"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/tags?post=7566"},{"taxonomy":"region","embeddable":true,"href":"http:\/\/orionhealth.com\/global\/wp-json\/wp\/v2\/region?post=7566"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}