{"info":{"_postman_id":"e3944f78-5121-4042-8716-5b0f1460b9eb","name":"FHIR","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"6793498","collectionId":"e3944f78-5121-4042-8716-5b0f1460b9eb","publishedId":"2s8YsrxtuS","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-11-27T20:03:03.000Z"},"item":[{"name":"Authorization","item":[{"name":"Standalone Launch","item":[],"id":"6382dc3a-06a0-4c77-8a3a-34838785d899","description":"<h2 id=\"following-steps-should-be-followed-for-a-standalone-launch-\">Following steps should be followed for a Standalone launch:-</h2>\n<ol>\n<li>Your application request an Authorization code.\nYour app will be following OAuth 2.0 workflow for authentication.\nTo proceed with a launch, the app constructs a request for an authorization code.</li>\n</ol>\n<p>The app supplies the following parameters to the EHR’s “authorize” endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Is Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>response_type</td>\n<td>required</td>\n<td>Fixed value: code.</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>require</td>\n<td>The client's identifier.</td>\n</tr>\n<tr>\n<td>redirect_uri</td>\n<td>required</td>\n<td>Must match one of the client's pre-registered redirect URIs.</td>\n</tr>\n<tr>\n<td>launch</td>\n<td>conditional</td>\n<td>When using the EHR Launch flow, this must match the launch value received from the EHR. Omitted when using the Standalone Launch.</td>\n</tr>\n<tr>\n<td>scope</td>\n<td>required</td>\n<td>Must describe the access that the app needs</td>\n</tr>\n<tr>\n<td>state</td>\n<td>required</td>\n<td>An opaque value used by the client to maintain state between the request and callback. The authorization server includes this value when redirecting the user-agent back to the client. The parameter SHALL be used for preventing cross-site request forgery or session fixation attacks. The app SHALL use an unpredictable value for the state parameter with at least 122 bits of entropy (e.g., a properly configured random uuid is suitable).</td>\n</tr>\n<tr>\n<td>aud</td>\n<td>required</td>\n<td>URL of the EHR resource server from which the app wishes to retrieve FHIR data. This parameter prevents leaking a genuine bearer token to a counterfeit resource server.</td>\n</tr>\n<tr>\n<td>code_challenge</td>\n<td>required</td>\n<td>This parameter is generated by the app and used for the code challenge, as specified by PKCE. For example, when code_challenge_method is 'S256', this is the S256 hashed version of the code_verifier parameter</td>\n</tr>\n<tr>\n<td>code_challenge_method</td>\n<td>required</td>\n<td>Method used for the code_challenge parameter. Example value: S256</td>\n</tr>\n</tbody>\n</table>\n</div><ol>\n<li>Cozeva EHR's Authorization Server Authenticates the User and Authorizes Access<br />\nThe EHR's authorization server reviews the request from your application, authenticates the user , and authorizes access If approved, the authorization server redirects the browser to the redirect URL supplied in the initial request and appends the following querystring parameter.</li>\n</ol>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Is required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>required</td>\n<td>This parameter contains the authorization code generated by Cozeva, which will be exchanged for the access token in the next step.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>required</td>\n<td>This parameter will have the same value as the earlier state parameter.</td>\n</tr>\n</tbody>\n</table>\n</div><ol>\n<li>Your Application Exchanges the Authorization Code for an Access Token\nAfter receiving the authorization code, your application trades the code for a JSON object containing an access token and contextual information by sending an HTTP POST to the token endpoint using a Content-Type header with value of \"application/x-www-form-urlencoded\".</li>\n</ol>\n<p>For public apps, authentication not required because a client with no secret cannot prove its identity when it issues a call</p>\n<p>The following parameters are required in the POST body:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Is Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>grant_type</td>\n<td>required</td>\n<td>Fixed value: authorization_code</td>\n</tr>\n<tr>\n<td>code</td>\n<td>required</td>\n<td>Code that the app received from the authorization server</td>\n</tr>\n<tr>\n<td>redirect_uri</td>\n<td>required</td>\n<td>The same redirect_uri used in the initial authorization request</td>\n</tr>\n<tr>\n<td>code_verifier</td>\n<td>required</td>\n<td>This parameter is used to verify against the code_challenge parameter previously provided in the authorize request.</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>conditional</td>\n<td>Required for public apps. Omit for confidential apps.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The cozeva authorization server responds to the HTTP POST request with a JSON object that includes an access token. The response contains the following parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Is Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>access_token</td>\n<td>required</td>\n<td>The access token issued by the authorization server</td>\n</tr>\n<tr>\n<td>token_type</td>\n<td>required</td>\n<td>Fixed value: Bearer</td>\n</tr>\n<tr>\n<td>expires_in</td>\n<td>recommended</td>\n<td>Lifetime in seconds of the access token, after which the token SHALL NOT be accepted by the resource server</td>\n</tr>\n<tr>\n<td>scope</td>\n<td>required</td>\n<td>Scope of access authorized. Note that this can be different from the scopes requested by the app</td>\n</tr>\n<tr>\n<td>id_token</td>\n<td>optional</td>\n<td>Authenticated user identity and user details, if requested</td>\n</tr>\n<tr>\n<td>refresh_token</td>\n<td>optional</td>\n<td>Token that can be used to obtain a new access token, using the same or a subset of the original authorization grants</td>\n</tr>\n</tbody>\n</table>\n</div><p>At this point, authorization is complete and the web application can access the protected patient data it requested using FHIR APIs.</p>\n<ol>\n<li>From the access token response, an app has received an OAuth2 bearer-type access token (access_token property) that can be used to fetch clinical data. The app issues a request that includes an Authorization header that presents the access_token as a “Bearer” token:</li>\n</ol>\n<p>Authorization: Bearer {{access_token}}</p>\n<p>(Note that in a real request, {{access_token}} is replaced with the actual token value.)</p>\n<ol>\n<li>Use a refresh token to obtain a new access token.\nIf your app uses refresh tokens (i.e. it can securely store credentials), then you can use a refresh token to request a new access token when the current access token expires.\nYour application trades the refresh_token for a JSON object containing a new access token and contextual information by sending an HTTP POST to the token endpoint using a Content-TypeHTTP header with value of \"application/x-www-form-urlencoded\".</li>\n</ol>\n<p>The following parameters are required in the POST body:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>parameter</th>\n<th>Is required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>grant_type</td>\n<td>required</td>\n<td>Fixed value: refresh_token.</td>\n</tr>\n<tr>\n<td>refresh_token</td>\n<td>required</td>\n<td>The refresh token from a prior authorization response</td>\n</tr>\n<tr>\n<td>scope</td>\n<td>optional</td>\n<td>The scopes of access requested. If present, this value must be a strict sub-set of the scopes granted in the original launch (no new permissions can be obtained atrefresh time). A missing value indicates a request for the same scopes granted in the original launch.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The response is a JSON object containing a new access token, with the following claims:</p>\n<ul>\n<li>access_token -&gt; New access token issued by the authorization server.</li>\n<li>token_type -&gt; Fixed value: bearer</li>\n<li>expires_in    -&gt; The lifetime in seconds of the access token. For example, the value 3600 denotes that the access token will expire in one hour from the time the response was generated.</li>\n<li>scope -&gt; Scope of access authorized. Note that this will be the same as the scope of the original access token, and it can be different from the scopes requested by the app.</li>\n<li>refresh_token -&gt; The refresh token issued by the authorization server. If present, the app should discard any previous refresh_token associated with this launch and replace it with this new value.</li>\n</ul>\n<h2 id=\"offline-access-for-native-and-browser-based-application\">Offline Access for Native and Browser-Based Application</h2>\n<p>For a native client app (for example, an iOS mobile app or a Windows desktop app) or a browser-based app (for example, a single-page application) to use the confidential app profile in the SMART App Launch framework, that app needs to use \"additional technology (such as dynamic client registration and universal redirect_uris) to protect the secret.\" If you have a native client or browser-based app, you can register a dynamic client to integrate with Cozeva using the steps below.</p>\n<ol>\n<li><strong>Get the initial access token you'll use to register a dynamic client.</strong></li>\n</ol>\n<p>Your app uses a flow similar to that of a  Standalone Launch. Note your application will specifically not be using a client secret, and will use its initial client ID issued by Cozeva.\nThe end-result of this flow is your app obtaining an initial access token used for registering a client instance.\nThis token is intentionally one-time-use and should be used for registration immediately.</p>\n<ol>\n<li><strong>Register the dynamic client</strong></li>\n</ol>\n<p>To register the dynamic client, your application needs to:</p>\n<ul>\n<li>Generate a public-private key pair on the user’s phone or computer.</li>\n<li>Native apps can use the same strategies as backend apps to generate key sets.</li>\n<li>Browser-based apps can use the WebCrypto API.</li>\n<li>Securely store that device-specific key pair on the user’s device.</li>\n<li>Browser-based apps using WebCrypto should follow key storage recommendations</li>\n<li>Use the access token from step 1 to register a dynamic client using the OAuth 2.0 Dynamic Client Registration Protocol.</li>\n</ul>\n<p>This request must have two elements:</p>\n<ul>\n<li>software_id: This parameter must contain the application’s client ID issued by cozeva.</li>\n<li>jwks: This parameter contains a JSON Web Key Set containing the public key from the key pair your application generated in step 2A.</li>\n</ul>\n<p>The EHR stores your app’s public key, issues it a dynamic client ID, and returns a response.</p>\n<ol>\n<li><strong>Get an access token you can use to retrieve FHIR resources</strong></li>\n</ol>\n<p>Now that you have registered a dynamic client with its own credentials, there are two ways you can get an access token to make FHIR calls.  We recommend that you use the JWT bearer flow. In the JWT bearer flow, the client issues a JWT with its client ID as the \"sub\" (subject) claim, indicating the access token should be issued to the users who registered the client. It is also possible to use the SMART standalone launch sequence again to get a refresh token and then use the refresh token flow. Note that both flows involve your app making a JSON Web Token and signing it with its private key.</p>\n<p>3a.  <strong>Get an access token using the JWT bearer flow.</strong></p>\n<p>Your app posts the JWT to the server to get an access token. The following parameters are required in the POST body:</p>\n<ul>\n<li>grant_type: This parameter contains the static value urn:ietf:params:oauth:grant-type:jwt-bearer.</li>\n<li>assertion: This parameter contains the JWT your app generated above.</li>\n<li>client_id: This parameter contains the dynamic client ID assigned in step 2.</li>\n</ul>\n<p>The authorization server responds to the HTTP POST request with a JSON object that includes an access token.</p>\n<p>3b. <strong>Alternate flow with refresh tokens</strong><br />\nTo get a refresh token, your app would need to go through the Standalone Launch sequence a second time. The first time you were using the public app profile and weren't issued a refresh token.  Now that you have registered a dynamic client with its own credentials, you can use the confidential-asymmetric app profile.</p>\n<p><strong>Get an authorization code:-</strong> </p>\n<p>This is the same as the Get an authorization code step from Step 1 except:</p>\n<ul>\n<li>The client_id should be that of your dynamic client</li>\n<li>Your token request will resemble a backend services grant, using the following parameters:</li>\n<li>client_assertion – set to a JWT signed with your dynamic client’s private key</li>\n<li>client_assertion_type – set to urn:ietf:params:oauth:client-assertion-type:jwt-bearer</li>\n<li>An additional parameter per grant_type (code or refresh_token) described below.</li>\n</ul>\n<p>Note that the user will once again need to log in.</p>\n<p><strong>Exchange the authorization code for an access token</strong></p>\n<p>When your app makes this request to the token, it needs to authenticate itself to be issued a refresh token.  It uses the JWT it generated to authenticate itself.\nIn response to this request, you’ll get an access token and a refresh token.</p>\n<p><strong>Use the refresh token to get subsequent access tokens</strong></p>\n<p>When the access token expires, your app can generate a new JWT and use the refresh token flow to get a new access token.</p>\n","_postman_id":"6382dc3a-06a0-4c77-8a3a-34838785d899"},{"name":"SMART Backend Services","item":[],"id":"d6e9761f-e534-4c3a-bbd6-42fcba5c4d8f","description":"<h2 id=\"overview\">Overview</h2>\n<p>Backend apps (i.e. apps without direct end user or patient interaction) can also use OAuth 2.0 authentication through the client_credentials OAuth 2.0 grant type. This pattern allows for backend services to connect and interact with an EHR when there is no user directly involved in the launch process, or in other circumstances where permissions are assigned to the client out-of-band. Cozeva's OAuth 2.0 implementation for backend services follows the SMART Backend Services: Authorization Guide.</p>\n<h2 id=\"building-a-backend-oauth-20-app\">Building a Backend OAuth 2.0 App</h2>\n<p>To use the client_credentials OAuth 2.0 grant type to authorize your backend application's access to patient information, two pieces of information need to be shared between the authorization server and your application:</p>\n<ul>\n<li><strong>Client ID</strong>: The client ID identifies your application to authentication servers within Cozeva.</li>\n<li><strong>Public key</strong>: The public key is used to validate your signed JSON Web Token to confirm your identity.</li>\n</ul>\n<h2 id=\"using-a-jwt-to-obtain-an-access-token-for-a-backend-service\">Using a JWT to Obtain an Access Token for a Backend Service</h2>\n<p>You will generate a one-time use JSON Web Token (JWT) to authenticate your app to the authorization server and obtain an access token that can be used to authenticate your app's web service calls.</p>\n<p>Step 1: Creating the JWT<br />\nBefore a client can request an access token, it shall generate a one-time-use JSON Web Token (JWT) that will be used to authenticate the client to the FHIR authorization server. The authentication JWT shall include the following claims, and shall be signed with the client’s private key (which should be an RS384 or ES384 signature).<br /><br />\nAuthentication JWT Header Values:</p>\n<ul>\n<li>alg(required):    The JWA algorithm (e.g., RS384, ES384) used for signing the authentication JWT.</li>\n<li>kid(required):    The identifier of the key-pair used to sign this JWT. This identifier shall be unique within the client's JWK Set.</li>\n<li>typ(required):    Fixed value: JWT.</li>\n<li>jku(optional):    The TLS-protected URL to the JWK Set containing the public key(s) accessible without authentication or authorization. When present, this should match a value that the client supplied to theFHIR server at client registration time. (When absent, the FHIR server should fall back on the JWK Set URL or the JWK Set supplied at registration time.<br /></li>\n</ul>\n<p>Authentication JWT Claims:</p>\n<ul>\n<li>iss(required):    Issuer of the JWT -- the client's client_id, as determined during registration with the FHIR authorization server (note that this is the same as the value for the sub claim)</li>\n<li>sub(required):    The service's client_id, as determined during registration with the FHIR authorization server (note that this is the same as the value for the iss claim)</li>\n<li>aud(required):    The FHIR authorization server's \"token URL\" (the same URL to which this authentication JWT will be posted -- see below)</li>\n<li>exp(required):    Expiration time integer for this authentication JWT, expressed in seconds since the \"Epoch\" (1970-01-01T00:00:00Z UTC). This time shall be no more than five minutes in the future.</li>\n<li>jti(required):    A nonce string value that uniquely identifies this authentication JWT.</li>\n</ul>\n<p>Step 2: After generating an authentication JWT, the client requests a new access token via HTTP POST to the FHIR authorization server’s token endpoint URL, using content-type application/x-www-form-urlencoded with the following parameters:</p>\n<p>Parameters</p>\n<ul>\n<li>scope(required):    The scope of access requested. See note about scopes below</li>\n<li>grant_type(required):    Fixed value: client_credentials</li>\n<li>client_assertion_type(required):    Fixed value: urn:ietf:params:oauth:client-assertion-type:jwt-bearer</li>\n<li>client_assertion(required):    Signed authentication JWT value (see above)</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<p>Once the client has been authenticated, the authorization server shall mediate the request to assure that the scope requested is within the scope pre-authorized to the client.\nIf the access token request is valid and authorized, the authorization server shall issue an access token in response. The access token response shall be a JSON object with the following properties:</p>\n<p>Access token response: property names</p>\n<ul>\n<li>access_token(required):   The access token issued by the authorization server.</li>\n<li>token_type(required): Fixed value: bearer.</li>\n<li>expires_in(required): The lifetime in seconds of the access token. The recommended value is 300, for a five-minute token lifetime.</li>\n<li>scope(required):  Scope of access authorized. Note that this can be different from the scopes requested by the app.</li>\n</ul>\n","_postman_id":"d6e9761f-e534-4c3a-bbd6-42fcba5c4d8f"}],"id":"a86f81e0-80c8-4a40-ad85-160d8f36f6d7","description":"<p>Applications must secure and protect the privacy of patients and their data. To help meet this objective, Cozeva supports using the OAuth 2.0 framework to authenticate and authorize applications.</p>\n<h2 id=\"why-oauth-20\">Why OAuth 2.0?</h2>\n<p>OAuth 2.0 enables you to develop your application without having to build a credential management system. Instead of exposing login credentials to your application, your application and an EHR's authorization server exchange a series of authorization codes and access tokens. Your application can access protected patient data stored in an EHR's database after it obtains authorization from the EHR's authorization server.</p>\n<h2 id=\"before-you-get-started\">Before You Get Started</h2>\n<p>To use OAuth 2.0 to authorize your application's access to patient information, some information needs to be shared between the authorization server and your application:</p>\n<p><code>client_id</code>: The client_id identifies your application to authentication servers within the Cozeva community and allows you to connect to any organization.</p>\n<p><code>redirect_uri</code>: The redirect_uri confirms your identity and is used to validate and redirect authentication requests that originate from your application. Cozeva's implementation allows for multiple redirect_uris.</p>\n<p>Note that a redirect_uri is not needed for backend services using the client_credentials grant type.</p>\n<p>Credentials: Some apps, sometimes referred to as confidential clients, can use credentials registered for a given EHR system to obtain authorization to access the system without a user or a patient implicitly or explicitly authorizing the app. Examples of this are apps that use refresh tokens to allow users to launch the app outside of an Cozeva client without needing to log in every time they use the app, and backend services that need to access resources without a specific person launching the app, for example, fetching data on a scheduled basis.</p>\n<p>You can register your application for access to both the sandbox and Cozeva organizations by email to <code>fhir.developers@cozeva.com</code>. You'll provide information to us, including one or more redirect_uris, and Cozeva will generate a client_id for you.</p>\n<p>Apps can be launched from within an existing EHR or patient portal session, which is called an EHR launch. Alternatively, apps can be launched standalone from outside of an existing EHR session. Apps can also be backend services where no user is launching the app.</p>\n","_postman_id":"a86f81e0-80c8-4a40-ad85-160d8f36f6d7"},{"name":"Status and Error Codes","item":[],"id":"9052d916-57f5-484e-a5df-cab5b0a09051","description":"<p>All resources communicate error conditions with standard HTTP status codes. Below is an overview of all the supported codes, along with some suggestions that might help identify issues.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Response Code[header]</th>\n<th>Response Description[header]</th>\n<th>Response[body]</th>\n<th>Error Description</th>\n<th>Response Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>OK</td>\n<td>--API specific, as per documentation--</td>\n<td></td>\n<td>Success</td>\n</tr>\n<tr>\n<td>202</td>\n<td>OK</td>\n<td>Request Accepted</td>\n<td></td>\n<td>Success</td>\n</tr>\n<tr>\n<td>204</td>\n<td>No Data Found</td>\n<td></td>\n<td>Request was valid, but query parameter(s) could not be found</td>\n<td>Success</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad Request</td>\n<td>invalid_request/invalid_scope/</td>\n<td><ul><li>An unsupported scope was requested</li><li>Grant type is not supported</li><li>Missing parameters: username and password required</li></ul></td>\n<td>Client Error</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n<td>invalid_access</td>\n<td><ul><li>Invalid username and password combination</li><li>Invalid client_id and/or client_secret</li><li>Access token expired</li><li>Insufficient access to the provided API</li></ul></td>\n<td>Client Error</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden</td>\n<td>invalid_access</td>\n<td>Restricted IP</td>\n<td>Client Error</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found</td>\n<td>unsupported_api/invalid_version</td>\n<td>API invalid or does not exist or The provided version is invalid</td>\n<td>Client Error</td>\n</tr>\n<tr>\n<td>405</td>\n<td>Method Not Allowed</td>\n<td>invalid_method</td>\n<td>Wrong request method, please refer to the documentation</td>\n<td>Client Error</td>\n</tr>\n<tr>\n<td>406</td>\n<td>Not Acceptable</td>\n<td>invalid_parameters</td>\n<td>Invalid response format</td>\n<td>Client Error</td>\n</tr>\n<tr>\n<td>413</td>\n<td>Expectation Failed</td>\n<td>invalid_parameters</td>\n<td>Found extra parameters</td>\n<td>Client Error</td>\n</tr>\n<tr>\n<td>417</td>\n<td>Not Acceptable</td>\n<td>invalid_parameters</td>\n<td><ul><li>Missing required parameters</li><li>Parameter value is not correctly formatted</li><li>Too many IDs passed</li><li>Required parameter is missing</li></ul></td>\n<td>Client Error</td>\n</tr>\n<tr>\n<td>429</td>\n<td>Too Many Requests</td>\n<td>invalid_request</td>\n<td><ul><li>Invalid Parameters</li><li>Too many ID passed</li></ul></td>\n<td>Client Error</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error</td>\n<td>server_error</td>\n<td>API invalid or does not exist, or the provided version is invalid</td>\n<td>Client Error</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9052d916-57f5-484e-a5df-cab5b0a09051"},{"name":"Bulk Data","item":[],"id":"a788c9c0-b608-4149-90bc-3e422923ee3c","description":"<h1 id=\"bulk-data\">Bulk Data</h1>\n<h2 id=\"description\">Description</h2>\n<p> Bulk data exports large amounts of data for large groups of patients, which takes more time to complete the larger the data set or patient population.</p>\n<p>There are several factors that affect the amount of time it takes to complete a Bulk API export-</p>\n<p>The size of the population for which data was requested\n    The number of resource types requested\n    The time range of activity being requested\n    Inherent latency due to network issues and effects from concurrent requests to the system</p>\n<h3 id=\"example-use-cases\">Example use cases</h3>\n<p>Creating an internal clinical data warehouse for study purposes\n    Machine learning applications obtaining training data from EHR\n    Integration of population health system with an EHR system\n    Data transfer to payer database for care quality assessment\n    Submission to reportable disease (or other) registries</p>\n<p>The FHIR Bulk Data server uses the FHIR Base url as the service root url.</p>\n<h4 id=\"base-url\">Base URL</h4>\n<p><a href=\"https://stage-fhir.cozeva.com:16443\">https://stage-fhir.cozeva.com:16443</a></p>\n<h4 id=\"media-types\">Media Types</h4>\n<p>For file retrievals, application/fhir+ndjson is supported. All other requests support application/fhir+json.</p>\n","_postman_id":"a788c9c0-b608-4149-90bc-3e422923ee3c"},{"name":"Goal","item":[{"name":"Goal Search","id":"7aac6e96-0448-4b42-bbcb-e89648dc3e3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Goal?patient=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Goal?:parameter\">https://stage-fhir.cozeva.com:16443/4_0_0/Goal?:parameter</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for Goal that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Goal?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>External Ids for this goal</td>\n<td>false</td>\n</tr>\n<tr>\n<td>lifecycleStatus</td>\n<td>code</td>\n<td>proposed , planned , accepted , active , on-hold , completed , cancelled , entered-in-error , rejected</td>\n<td>true</td>\n</tr>\n<tr>\n<td>achievementStatus</td>\n<td>{ CodeableConcept }</td>\n<td>in-progress, improving, worsening, no-change, achieved, sustaining, not-achieved, no-progress, not-attainable</td>\n<td>false</td>\n</tr>\n<tr>\n<td>category</td>\n<td>[{ CodeableConcept }]</td>\n<td>E.g. Treatment, dietary, behavioral, etc.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>{ CodeableConcept }</td>\n<td>high-priority,medium-priority,low-priority</td>\n<td>false</td>\n</tr>\n<tr>\n<td>description</td>\n<td>{ CodeableConcept }</td>\n<td>Code or text describing goal</td>\n<td>true</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>{ Reference(Patient,Group,Organization) }</td>\n<td>Who this goal is intended for</td>\n<td>true</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>date</td>\n<td>When goal pursuit begins</td>\n<td>false</td>\n</tr>\n<tr>\n<td>startCodeableConcept</td>\n<td>{ CodeableConcept }</td>\n<td>When goal pursuit begins</td>\n<td>false</td>\n</tr>\n<tr>\n<td>target</td>\n<td>array</td>\n<td>Target outcome for the goal</td>\n<td>true</td>\n</tr>\n<tr>\n<td>target-measure</td>\n<td>{ CodeableConcept }</td>\n<td>The parameter whose value is being tracked</td>\n<td>false</td>\n</tr>\n<tr>\n<td>target-detailQuantity</td>\n<td>{ Quantity }</td>\n<td>The target value to be achieved</td>\n<td>false</td>\n</tr>\n<tr>\n<td>target-detailRange</td>\n<td>{ Range }</td>\n<td>The target value to be achieved</td>\n<td>false</td>\n</tr>\n<tr>\n<td>target-detailCodeableConcept</td>\n<td>{ CodeableConcept }</td>\n<td>The target value to be achieved</td>\n<td>false</td>\n</tr>\n<tr>\n<td>target-detailString</td>\n<td>string</td>\n<td>The target value to be achieved</td>\n<td>false</td>\n</tr>\n<tr>\n<td>target-detailBoolean</td>\n<td>boolean</td>\n<td>The target value to be achieved</td>\n<td>false</td>\n</tr>\n<tr>\n<td>target-detailInteger</td>\n<td>integer</td>\n<td>The target value to be achieved</td>\n<td>false</td>\n</tr>\n<tr>\n<td>target-detailRatio</td>\n<td>{ Ratio }</td>\n<td>The target value to be achieved</td>\n<td>false</td>\n</tr>\n<tr>\n<td>target-dueDate</td>\n<td>date</td>\n<td>Reach goal on or before</td>\n<td>true</td>\n</tr>\n<tr>\n<td>target-dueDuration</td>\n<td>{ Duration }</td>\n<td>Reach goal on or before</td>\n<td>false</td>\n</tr>\n<tr>\n<td>statusDate</td>\n<td>date</td>\n<td>When goal status took effect</td>\n<td>false</td>\n</tr>\n<tr>\n<td>statusReason</td>\n<td>string</td>\n<td>Reason for current status</td>\n<td>false</td>\n</tr>\n<tr>\n<td>expressedBy</td>\n<td>{ Reference(Patient,Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>Who's responsible for creating Goal?</td>\n<td>false</td>\n</tr>\n<tr>\n<td>addresses</td>\n<td>[{ Reference(Condition,Observation,MedicationStatement,NutritionOrder,ServiceRequest,RiskAssessment) }]</td>\n<td>Issues addressed by this goal</td>\n<td>false</td>\n</tr>\n<tr>\n<td>note</td>\n<td>[{ Annotation }]</td>\n<td>Comments about the goal</td>\n<td>false</td>\n</tr>\n<tr>\n<td>outcomeCode</td>\n<td>[{ CodeableConcept }]</td>\n<td>What result was achieved regarding the goal</td>\n<td>false</td>\n</tr>\n<tr>\n<td>outcomeReference</td>\n<td>[{ Reference(Observation) }]</td>\n<td>Observation that resulted from goal</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Goal"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93272"}],"variable":[]}},"response":[{"id":"e408ed60-3400-490f-b345-114d78abd933","name":"Goal Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/Goal?patient=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","Goal"],"query":[{"key":"patient","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"451-EuEy+68LhSpOKGCBTLdziu5si6M\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Sat, 26 Nov 2022 10:21:51 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-26T10:21:51.215Z\",\n    \"total\": 2,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Goal?patient=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"99689\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Goal/99689\",\n            \"resource\": {\n                \"resourceType\": \"Goal\",\n                \"id\": \"99689\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"lifecycleStatus\": \"accepted\",\n                \"achievementStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/goal-achievement\",\n                            \"code\": \"in-progress\"\n                        }\n                    ]\n                },\n                \"description\": {\n                    \"text\": \"Maintain blood pressure below 140/90 mm[Hg]\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"target\": [\n                    {\n                        \"dueDate\": \"2023-05-12\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"99690\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Goal/99690\",\n            \"resource\": {\n                \"resourceType\": \"Goal\",\n                \"id\": \"99690\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"lifecycleStatus\": \"accepted\",\n                \"achievementStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/goal-achievement\",\n                            \"code\": \"in-progress\"\n                        }\n                    ]\n                },\n                \"description\": {\n                    \"text\": \"Reduce sodium intake to no more than 2,400 mg/day\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"target\": [\n                    {\n                        \"dueDate\": \"2023-02-25\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"7aac6e96-0448-4b42-bbcb-e89648dc3e3a"},{"name":"Goal Read","id":"a5696251-f8ce-451b-810d-22e7e8144f14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Goal/99689","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Goal/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/Goal/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual Goal by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Goal/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Is Optional</th>\n<th>Is Array</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID (String)</td>\n<td>The Goal FHIR ID.</td>\n<td>false</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Goal","99689"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"d604229d-3943-4dd5-a19e-4afcf085cbb6","name":"Goal Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Goal/99689"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"357"},{"key":"Date","value":"Sat, 26 Nov 2022 10:24:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Goal\",\n    \"id\": \"99689\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"lifecycleStatus\": \"accepted\",\n    \"achievementStatus\": {\n        \"coding\": [\n            {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/goal-achievement\",\n                \"code\": \"in-progress\"\n            }\n        ]\n    },\n    \"description\": {\n        \"text\": \"Maintain blood pressure below 140/90 mm[Hg]\"\n    },\n    \"subject\": {\n        \"reference\": \"Patient/93272\"\n    },\n    \"target\": [\n        {\n            \"dueDate\": \"2023-05-12\"\n        }\n    ]\n}"}],"_postman_id":"a5696251-f8ce-451b-810d-22e7e8144f14"}],"id":"2af9d56c-a3b4-47c5-b323-32585fddf7bd","description":"<p>The Goal resource describes intended objectives for a patient. A Goal is typically expressed as a desired outcome or health state to be achieved by a patient over a period or at a specific point in time. A Goal may address preventative health or mitigation of a diagnosis or problem. Goals can be non-health care related (e.g. dance at a wedding).</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>External Ids for this goal</td>\n</tr>\n<tr>\n<td>lifecycleStatus</td>\n<td>code</td>\n<td>proposed , planned , accepted , active , on-hold , completed , cancelled , entered-in-error , rejected</td>\n</tr>\n<tr>\n<td>achievementStatus</td>\n<td>CodeableConcept</td>\n<td>in-progress, improving, worsening, no-change, achieved, sustaining, not-achieved, no-progress, not-attainable</td>\n</tr>\n<tr>\n<td>category</td>\n<td>CodeableConcept</td>\n<td>E.g. Treatment, dietary, behavioral, etc.</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>CodeableConcept</td>\n<td>high-priority,medium-priority,low-priority</td>\n</tr>\n<tr>\n<td>description</td>\n<td>CodeableConcept</td>\n<td>Code or text describing goal</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>Reference(Patient,Group,Organization)</td>\n<td>Who this goal is intended for</td>\n</tr>\n<tr>\n<td>start</td>\n<td>object</td>\n<td>When goal pursuit begins</td>\n</tr>\n<tr>\n<td>start.startDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>start.startCodeableConcept</td>\n<td>CodeableConcept</td>\n<td></td>\n</tr>\n<tr>\n<td>target</td>\n<td>object</td>\n<td>Target outcome for the goal</td>\n</tr>\n<tr>\n<td>target.measure</td>\n<td>CodeableConcept</td>\n<td>The parameter whose value is being tracked</td>\n</tr>\n<tr>\n<td>target.detail</td>\n<td>object</td>\n<td>The target value to be achieved</td>\n</tr>\n<tr>\n<td>target.detail.detailQuantity</td>\n<td>Quantity</td>\n<td></td>\n</tr>\n<tr>\n<td>target.detail.detailRange</td>\n<td>Range</td>\n<td></td>\n</tr>\n<tr>\n<td>target.detail.detailCodeableConcept</td>\n<td>CodeableConcept</td>\n<td></td>\n</tr>\n<tr>\n<td>target.detail.detailString</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>target.detail.detailBoolean</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>target.detail.detailInteger</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>target.detail.detailRatio</td>\n<td>Ratio</td>\n<td></td>\n</tr>\n<tr>\n<td>target.due</td>\n<td>object</td>\n<td>Reach goal on or before</td>\n</tr>\n<tr>\n<td>target.due.dueDate</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>target.due.dueDuration</td>\n<td>Duration</td>\n<td></td>\n</tr>\n<tr>\n<td>statusDate</td>\n<td>date</td>\n<td>When goal status took effect</td>\n</tr>\n<tr>\n<td>statusReason</td>\n<td>string</td>\n<td>Reason for current status</td>\n</tr>\n<tr>\n<td>expressedBy</td>\n<td>Reference(Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>Who's responsible for creating Goal?</td>\n</tr>\n<tr>\n<td>addresses</td>\n<td>Reference(Condition,Observation,MedicationStatement,NutritionOrder,ServiceRequest,RiskAssessment)</td>\n<td>Issues addressed by this goal</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Annotation</td>\n<td>Comments about the goal</td>\n</tr>\n<tr>\n<td>outcomeCode</td>\n<td>CodeableConcept</td>\n<td>What result was achieved regarding the goal</td>\n</tr>\n<tr>\n<td>outcomeReference</td>\n<td>Reference(Observation)</td>\n<td>Observation that resulted from goal</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"2af9d56c-a3b4-47c5-b323-32585fddf7bd"},{"name":"Condition","item":[{"name":"Condition Search","id":"90be1cd7-bdba-47a3-a595-8597482caecc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Condition?patient=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Condition?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/Condition?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for Conditions that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Condition?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>External Ids for this condition</td>\n<td>false</td>\n</tr>\n<tr>\n<td>clinicalStatus</td>\n<td>{ CodeableConcept }</td>\n<td>active,recurrence,relapse,inactive,remission,resolved</td>\n<td>true</td>\n</tr>\n<tr>\n<td>verificationStatus</td>\n<td>{ CodeableConcept }</td>\n<td>unconfirmed,provisional,differential,confirmed,refuted,entered-in-error</td>\n<td>true</td>\n</tr>\n<tr>\n<td>category</td>\n<td>[{ CodeableConcept }]</td>\n<td>problem-list-item,encounter-diagnosis</td>\n<td>true</td>\n</tr>\n<tr>\n<td>severity</td>\n<td>{ CodeableConcept }</td>\n<td>Subjective severity of condition</td>\n<td>false</td>\n</tr>\n<tr>\n<td>code</td>\n<td>{ CodeableConcept }</td>\n<td>Identification of the condition, problem or diagnosis</td>\n<td>true</td>\n</tr>\n<tr>\n<td>bodySite</td>\n<td>[{ CodeableConcept }]</td>\n<td>Anatomical location, if relevant</td>\n<td>false</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>{ Reference(Group,Patient) }</td>\n<td>Who has the condition?</td>\n<td>true</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>{ Reference(Encounter) }</td>\n<td>Encounter created as part of</td>\n<td>false</td>\n</tr>\n<tr>\n<td>onsetDateTime</td>\n<td>dateTime</td>\n<td>Estimated or actual date,  date-time</td>\n<td>false</td>\n</tr>\n<tr>\n<td>onsetAge</td>\n<td>{ Age }</td>\n<td>Estimated or actual age</td>\n<td>false</td>\n</tr>\n<tr>\n<td>onsetPeriod</td>\n<td>{ Period }</td>\n<td>Onset period</td>\n<td>false</td>\n</tr>\n<tr>\n<td>onsetRange</td>\n<td>{ Range }</td>\n<td>Onset range</td>\n<td>false</td>\n</tr>\n<tr>\n<td>onsetString</td>\n<td>string</td>\n<td>Onset string</td>\n<td>false</td>\n</tr>\n<tr>\n<td>abatementDateTime</td>\n<td>dateTime</td>\n<td>When in resolution/remission</td>\n<td>false</td>\n</tr>\n<tr>\n<td>abatementAge</td>\n<td>{ Age }</td>\n<td>When in resolution/remission</td>\n<td>false</td>\n</tr>\n<tr>\n<td>abatementPeriod</td>\n<td>{ Period }</td>\n<td>When in resolution/remission</td>\n<td>false</td>\n</tr>\n<tr>\n<td>abatementRange</td>\n<td>{ Range }</td>\n<td>When in resolution/remission</td>\n<td>false</td>\n</tr>\n<tr>\n<td>abatementString</td>\n<td>string</td>\n<td>When in resolution/remission</td>\n<td>false</td>\n</tr>\n<tr>\n<td>recordedDate</td>\n<td>dateTime</td>\n<td>Date record was first recorded</td>\n<td>false</td>\n</tr>\n<tr>\n<td>recorder</td>\n<td>{ Reference(Patient,Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>Who recorded the condition</td>\n<td>false</td>\n</tr>\n<tr>\n<td>asserter</td>\n<td>{ Reference(Patient,Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>Person who asserts this condition</td>\n<td>false</td>\n</tr>\n<tr>\n<td>stage</td>\n<td>array</td>\n<td>Stage/grade, usually assessed formally</td>\n<td>false</td>\n</tr>\n<tr>\n<td>stage-summary</td>\n<td>{ CodeableConcept }</td>\n<td>Simple summary (disease specific)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>stage-assessment</td>\n<td>[{ Reference(ClinicalImpression,DiagnosticReport,Observation)</td>\n<td>Formal record of assessment</td>\n<td>false</td>\n</tr>\n<tr>\n<td>stage-type</td>\n<td>{ CodeableConcept }</td>\n<td>Kind of staging</td>\n<td>false</td>\n</tr>\n<tr>\n<td>evidence</td>\n<td>array</td>\n<td>Supporting evidence</td>\n<td>false</td>\n</tr>\n<tr>\n<td>evidence-code</td>\n<td>[{ CodeableConcept }]</td>\n<td>Manifestation/symptom</td>\n<td>false</td>\n</tr>\n<tr>\n<td>evidence-detail</td>\n<td>[{ Reference(Any) }]</td>\n<td>Supporting information found elsewhere</td>\n<td>false</td>\n</tr>\n<tr>\n<td>note</td>\n<td>[{ Annotation }]</td>\n<td>Additional information about the Condition</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Condition"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93272"}],"variable":[]}},"response":[{"id":"d98b6510-0155-4d19-94b6-70490d81b6af","name":"Condition Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/Condition?patient=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","Condition"],"query":[{"key":"patient","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"9ee-QMLKQk5lHZLTHeZ0V5ufXURJvn0\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Sat, 26 Nov 2022 10:30:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-26T10:30:37.105Z\",\n    \"total\": 3,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Condition?patient=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"48641\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Condition/48641\",\n            \"resource\": {\n                \"resourceType\": \"Condition\",\n                \"id\": \"48641\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"clinicalStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n                            \"code\": \"active\"\n                        }\n                    ]\n                },\n                \"verificationStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n                            \"code\": \"confirmed\"\n                        }\n                    ]\n                },\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n                                \"code\": \"encounter-diagnosis\",\n                                \"display\": \"Encounter Diagnosis\"\n                            }\n                        ],\n                        \"text\": \"Encounter Diagnosis\"\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"446096008\"\n                        }\n                    ],\n                    \"text\": \"Perennial allergic rhinitis\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48689\"\n                }\n            }\n        },\n        {\n            \"id\": \"48642\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Condition/48642\",\n            \"resource\": {\n                \"resourceType\": \"Condition\",\n                \"id\": \"48642\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"clinicalStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n                            \"code\": \"active\"\n                        }\n                    ]\n                },\n                \"verificationStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n                            \"code\": \"confirmed\"\n                        }\n                    ]\n                },\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n                                \"code\": \"encounter-diagnosis\",\n                                \"display\": \"Encounter Diagnosis\"\n                            }\n                        ],\n                        \"text\": \"Encounter Diagnosis\"\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"59621000\"\n                        }\n                    ],\n                    \"text\": \"Hypertension\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48690\"\n                }\n            }\n        },\n        {\n            \"id\": \"48643\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Condition/48643\",\n            \"resource\": {\n                \"resourceType\": \"Condition\",\n                \"id\": \"48643\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"clinicalStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n                            \"code\": \"resolved\"\n                        }\n                    ]\n                },\n                \"verificationStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n                            \"code\": \"confirmed\"\n                        }\n                    ]\n                },\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n                                \"code\": \"encounter-diagnosis\",\n                                \"display\": \"Encounter Diagnosis\"\n                            }\n                        ],\n                        \"text\": \"Encounter Diagnosis\"\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"36971009\"\n                        }\n                    ],\n                    \"text\": \"Sinusitis (disorder)\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48693\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"90be1cd7-bdba-47a3-a595-8597482caecc"},{"name":"Condition Read","id":"c2a443dd-a70f-4519-9a87-8fb01cf34097","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Condition/48641","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Condition/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/Condition/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>String</td>\n<td>The Condition FHIR ID.</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual Condition by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Condition/{ID}\n</code></pre>","urlObject":{"path":["4_0_0","Condition","48641"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"3b2d4373-2697-4fc0-acfa-486c67b11d2e","name":"Condition Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Condition/48641"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"689"},{"key":"Date","value":"Sat, 26 Nov 2022 10:30:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Condition\",\n    \"id\": \"48641\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"clinicalStatus\": {\n        \"coding\": [\n            {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n                \"code\": \"active\"\n            }\n        ]\n    },\n    \"verificationStatus\": {\n        \"coding\": [\n            {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n                \"code\": \"confirmed\"\n            }\n        ]\n    },\n    \"category\": [\n        {\n            \"coding\": [\n                {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n                    \"code\": \"encounter-diagnosis\",\n                    \"display\": \"Encounter Diagnosis\"\n                }\n            ],\n            \"text\": \"Encounter Diagnosis\"\n        }\n    ],\n    \"code\": {\n        \"coding\": [\n            {\n                \"system\": \"http://snomed.info/sct\",\n                \"code\": \"446096008\"\n            }\n        ],\n        \"text\": \"Perennial allergic rhinitis\"\n    },\n    \"subject\": {\n        \"reference\": \"Patient/93272\"\n    },\n    \"encounter\": {\n        \"reference\": \"Encounter/48689\"\n    }\n}"}],"_postman_id":"c2a443dd-a70f-4519-9a87-8fb01cf34097"}],"id":"1340c51a-4253-42ad-8a19-2980ee515dea","description":"<p>The Condition resource is used to record problems, diagnoses, or other health matters that are concerning to a patient. Depending on the site, problems and diagnoses are used in different ways. Diagnoses are recorded on an encounter to document conditions addressed or treated during a specific patient visit. For U.S. clients, diagnoses support financial or reimbursement workflows. Problems are on-going or chronic conditions that are managed over every visit and not associated to a specific encounter. A condition may be both a diagnosis and a problem. Conditions, specifically diagnoses, are often associated to orders to document the medical necessity of a specific medication or procedure order and may be referenced by other resources as a “reason” for an action or order. Health concerns are also returned as part of the Condition resource and represent other concerns a patient may have such as financial or social risks.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>External Ids for this condition</td>\n</tr>\n<tr>\n<td>clinicalStatus</td>\n<td>CodeableConcept</td>\n<td>active,recurrence,relapse,inactive,remission,resolved</td>\n</tr>\n<tr>\n<td>verificationStatus</td>\n<td>CodeableConcept</td>\n<td>unconfirmed,provisional,differential,confirmed,refuted,entered-in-error</td>\n</tr>\n<tr>\n<td>category</td>\n<td>CodeableConcept</td>\n<td>problem-list-item,encounter-diagnosis</td>\n</tr>\n<tr>\n<td>severity</td>\n<td>CodeableConcept</td>\n<td>Subjective severity of condition</td>\n</tr>\n<tr>\n<td>code</td>\n<td>CodeableConcept</td>\n<td>Identification of the condition, problem or diagnosis</td>\n</tr>\n<tr>\n<td>bodySite</td>\n<td>CodeableConcept</td>\n<td>Anatomical location, if relevant</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>Reference(Group,Patient)</td>\n<td>Who has the condition?</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>Reference(Encounter)</td>\n<td>Encounter created as part of</td>\n</tr>\n<tr>\n<td>onset</td>\n<td>object</td>\n<td>Estimated or actual date, date-time, or age</td>\n</tr>\n<tr>\n<td>onset.onsetDateTime</td>\n<td>dateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>onset.onsetAge</td>\n<td>Age</td>\n<td></td>\n</tr>\n<tr>\n<td>onset.onsetPeriod</td>\n<td>Period</td>\n<td></td>\n</tr>\n<tr>\n<td>onset.onsetRange</td>\n<td>Range</td>\n<td></td>\n</tr>\n<tr>\n<td>onset.onsetString</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>abatement</td>\n<td>object</td>\n<td>When in resolution/remission</td>\n</tr>\n<tr>\n<td>abatement.abatementDateTime</td>\n<td>dateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>abatement.abatementAge</td>\n<td>Age</td>\n<td></td>\n</tr>\n<tr>\n<td>abatement.abatementPeriod</td>\n<td>Period</td>\n<td></td>\n</tr>\n<tr>\n<td>abatement.abatementRange</td>\n<td>Range</td>\n<td></td>\n</tr>\n<tr>\n<td>abatement.abatementString</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>recordedDate</td>\n<td>dateTime</td>\n<td>Date record was first recorded</td>\n</tr>\n<tr>\n<td>recorder</td>\n<td>Reference(Patient, Practitioner, PractitionerRole, RelatedPerson)</td>\n<td>Who recorded the condition</td>\n</tr>\n<tr>\n<td>asserter</td>\n<td>Reference(Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>Person who asserts this condition</td>\n</tr>\n<tr>\n<td>stage</td>\n<td>object</td>\n<td>Stage/grade, usually assessed formally</td>\n</tr>\n<tr>\n<td>stage.summary</td>\n<td>CodeableConcept</td>\n<td>Simple summary (disease specific)</td>\n</tr>\n<tr>\n<td>stage.assessment</td>\n<td>Reference(ClinicalImpression,DiagnosticReport,Observation)</td>\n<td>Formal record of assessment</td>\n</tr>\n<tr>\n<td>stage.type</td>\n<td>CodeableConcept</td>\n<td>Kind of staging</td>\n</tr>\n<tr>\n<td>evidence</td>\n<td>object</td>\n<td>Supporting evidence</td>\n</tr>\n<tr>\n<td>evidence.code</td>\n<td>CodeableConcept</td>\n<td>Manifestation/symptom</td>\n</tr>\n<tr>\n<td>evidence.detail</td>\n<td>Reference(Any)</td>\n<td>Supporting information found elsewhere</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Annotation</td>\n<td>Additional information about the Condition</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1340c51a-4253-42ad-8a19-2980ee515dea"},{"name":"Immunization","item":[{"name":"Immunization Search","id":"1b3aedf8-7009-49b3-a0bd-4de1d11d323a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Immunization?patient=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Immunization?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/Immunization?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for Immunization that meet supplied query parameters\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Immunization?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>Business identifier</td>\n<td>False</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>completed, entered-in-error, not-done</td>\n<td>True</td>\n</tr>\n<tr>\n<td>statusReason</td>\n<td>{ CodeableConcept }</td>\n<td>Reason not done</td>\n<td>True</td>\n</tr>\n<tr>\n<td>vaccineCode</td>\n<td>{ CodeableConcept }</td>\n<td>Vaccine product administered</td>\n<td>True</td>\n</tr>\n<tr>\n<td>patient</td>\n<td>{ Reference(Patient) }</td>\n<td>Who was immunized</td>\n<td>True</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>{ Reference(Encounter) }</td>\n<td>Encounter immunization was part of</td>\n<td>False</td>\n</tr>\n<tr>\n<td>occurrenceDateTime</td>\n<td>dateTime</td>\n<td>Vaccine administration date</td>\n<td>True</td>\n</tr>\n<tr>\n<td>occurrenceString</td>\n<td>string</td>\n<td>Vaccine administration date</td>\n<td>True</td>\n</tr>\n<tr>\n<td>recorded</td>\n<td>dateTime</td>\n<td>When the immunization was first captured in the subject's record</td>\n<td>False</td>\n</tr>\n<tr>\n<td>primarySource</td>\n<td>boolean</td>\n<td>Indicates context the data was recorded in</td>\n<td>True</td>\n</tr>\n<tr>\n<td>reportOrigin</td>\n<td>{ CodeableConcept }</td>\n<td>Indicates the source of a secondarily reported record</td>\n<td>False</td>\n</tr>\n<tr>\n<td>location</td>\n<td>{ Reference(Location) }</td>\n<td>Where immunization occurred</td>\n<td>False</td>\n</tr>\n<tr>\n<td>manufacturer</td>\n<td>{ Reference(Organization) }</td>\n<td>Vaccine manufacturer</td>\n<td>False</td>\n</tr>\n<tr>\n<td>lotNumber</td>\n<td>string</td>\n<td>Vaccine lot number</td>\n<td>False</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td>date</td>\n<td>Vaccine expiration date</td>\n<td>False</td>\n</tr>\n<tr>\n<td>site</td>\n<td>{ CodeableConcept }</td>\n<td>Body site vaccine  was administered</td>\n<td>False</td>\n</tr>\n<tr>\n<td>route</td>\n<td>{ CodeableConcept }</td>\n<td>How vaccine entered body</td>\n<td>False</td>\n</tr>\n<tr>\n<td>doseQuantity</td>\n<td>{ Quantity(SimpleQuantity) }</td>\n<td>Amount of vaccine administered</td>\n<td>False</td>\n</tr>\n<tr>\n<td>performer</td>\n<td>array</td>\n<td>Who performed event</td>\n<td>False</td>\n</tr>\n<tr>\n<td>performer-function</td>\n<td>{ CodeableConcept }</td>\n<td>What type of performance was done</td>\n<td>False</td>\n</tr>\n<tr>\n<td>performer-actor</td>\n<td>{ Reference(Practitioner,PractitionerRole,Organization) }</td>\n<td>Individual or organization who was performing</td>\n<td>False</td>\n</tr>\n<tr>\n<td>note</td>\n<td>[{ Annotation }]</td>\n<td>Additional immunization notes</td>\n<td>False</td>\n</tr>\n<tr>\n<td>reasonCode</td>\n<td>[{ CodeableConcept }]</td>\n<td>Why immunization occurred</td>\n<td>False</td>\n</tr>\n<tr>\n<td>reasonReference</td>\n<td>[{ Reference(Condition,Observation,DiagnosticReport) }]</td>\n<td>Why immunization occurred</td>\n<td>False</td>\n</tr>\n<tr>\n<td>isSubpotent</td>\n<td>boolean</td>\n<td>Dose potency</td>\n<td>False</td>\n</tr>\n<tr>\n<td>subpotentReason</td>\n<td>[{ CodeableConcept }]</td>\n<td>Reason for being subpotent</td>\n<td>False</td>\n</tr>\n<tr>\n<td>education</td>\n<td>array</td>\n<td>Educational material presented to patient</td>\n<td>False</td>\n</tr>\n<tr>\n<td>education-documentType</td>\n<td>string</td>\n<td>Educational material document identifier</td>\n<td>False</td>\n</tr>\n<tr>\n<td>education-reference</td>\n<td>uri</td>\n<td>Educational material reference pointer</td>\n<td>False</td>\n</tr>\n<tr>\n<td>education-publicationDate</td>\n<td>dateTime</td>\n<td>Educational material publication date</td>\n<td>False</td>\n</tr>\n<tr>\n<td>education-presentationDate</td>\n<td>dateTime</td>\n<td>Educational material presentation date</td>\n<td>False</td>\n</tr>\n<tr>\n<td>programEligibility</td>\n<td>[{ CodeableConcept }]</td>\n<td>Patient eligibility for a vaccination program</td>\n<td>False</td>\n</tr>\n<tr>\n<td>fundingSource</td>\n<td>{ CodeableConcept }</td>\n<td>Funding source for the vaccine</td>\n<td>False</td>\n</tr>\n<tr>\n<td>reaction</td>\n<td>array</td>\n<td>Details of a reaction that follows immunization</td>\n<td>False</td>\n</tr>\n<tr>\n<td>reaction-date</td>\n<td>dateTime</td>\n<td>When reaction started</td>\n<td>False</td>\n</tr>\n<tr>\n<td>reaction-detail</td>\n<td>{ Reference(Observation) }</td>\n<td>Additional information on reaction</td>\n<td>False</td>\n</tr>\n<tr>\n<td>reaction-reported</td>\n<td>boolean</td>\n<td>Indicates self-reported reaction</td>\n<td>False</td>\n</tr>\n<tr>\n<td>protocolApplied</td>\n<td>array</td>\n<td>Protocol followed by the provider</td>\n<td>False</td>\n</tr>\n<tr>\n<td>protocolApplied-series</td>\n<td>string</td>\n<td>Name of vaccine series</td>\n<td>False</td>\n</tr>\n<tr>\n<td>protocolApplied-authority</td>\n<td>{ Reference(Organization) }</td>\n<td>Who is responsible for publishing the recommendations</td>\n<td>False</td>\n</tr>\n<tr>\n<td>protocolApplied-targetDisease</td>\n<td>[{ CodeableConcept }]</td>\n<td>Vaccine preventatable disease being targetted</td>\n<td>False</td>\n</tr>\n<tr>\n<td>protocolApplied-doseNumberPositiveInt</td>\n<td>positiveInt</td>\n<td>Dose number within series</td>\n<td>False</td>\n</tr>\n<tr>\n<td>protocolApplied-doseNumberString</td>\n<td>string</td>\n<td>Dose number within series</td>\n<td>False</td>\n</tr>\n<tr>\n<td>protocolApplied-seriesDosesPositiveInt</td>\n<td>positiveInt</td>\n<td>Recommended number of doses for immunity</td>\n<td>False</td>\n</tr>\n<tr>\n<td>protocolApplied-seriesDosesString</td>\n<td>string</td>\n<td>Recommended number of doses for immunity</td>\n<td>False</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Immunization"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93272"}],"variable":[]}},"response":[{"id":"e448f7fe-4a1c-474e-880d-55449e764900","name":"Immunization Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/Immunization?patient=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","Immunization"],"query":[{"key":"patient","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"d77-9q4gDOY6breLpjJ+zhL59N+KpFk\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Sat, 26 Nov 2022 10:37:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-26T10:37:40.368Z\",\n    \"total\": 6,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Immunization?patient=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"35802\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Immunization/35802\",\n            \"resource\": {\n                \"resourceType\": \"Immunization\",\n                \"id\": \"35802\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"completed\",\n                \"vaccineCode\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://hl7.org/fhir/sid/cvx\",\n                            \"code\": \"140\",\n                            \"display\": \"Influenza, seasonal, injectable, preservative free\"\n                        }\n                    ],\n                    \"text\": \"Influenza, seasonal, injectable, preservative free\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48691\"\n                },\n                \"occurrenceDateTime\": \"2010-11-29T20:58:29.000Z\",\n                \"primarySource\": true\n            }\n        },\n        {\n            \"id\": \"35803\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Immunization/35803\",\n            \"resource\": {\n                \"resourceType\": \"Immunization\",\n                \"id\": \"35803\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"completed\",\n                \"vaccineCode\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://hl7.org/fhir/sid/cvx\",\n                            \"code\": \"113\",\n                            \"display\": \"Td (adult) preservative free\"\n                        }\n                    ],\n                    \"text\": \"Td (adult) preservative free\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48691\"\n                },\n                \"occurrenceDateTime\": \"2010-11-29T20:58:29.000Z\",\n                \"primarySource\": true\n            }\n        },\n        {\n            \"id\": \"35804\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Immunization/35804\",\n            \"resource\": {\n                \"resourceType\": \"Immunization\",\n                \"id\": \"35804\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"completed\",\n                \"vaccineCode\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://hl7.org/fhir/sid/cvx\",\n                            \"code\": \"140\",\n                            \"display\": \"Influenza, seasonal, injectable, preservative free\"\n                        }\n                    ],\n                    \"text\": \"Influenza, seasonal, injectable, preservative free\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48692\"\n                },\n                \"occurrenceDateTime\": \"2012-07-02T20:58:29.000Z\",\n                \"primarySource\": true\n            }\n        },\n        {\n            \"id\": \"35805\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Immunization/35805\",\n            \"resource\": {\n                \"resourceType\": \"Immunization\",\n                \"id\": \"35805\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"completed\",\n                \"vaccineCode\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://hl7.org/fhir/sid/cvx\",\n                            \"code\": \"140\",\n                            \"display\": \"Influenza, seasonal, injectable, preservative free\"\n                        }\n                    ],\n                    \"text\": \"Influenza, seasonal, injectable, preservative free\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48694\"\n                },\n                \"occurrenceDateTime\": \"2012-07-09T20:58:29.000Z\",\n                \"primarySource\": true\n            }\n        },\n        {\n            \"id\": \"35806\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Immunization/35806\",\n            \"resource\": {\n                \"resourceType\": \"Immunization\",\n                \"id\": \"35806\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"completed\",\n                \"vaccineCode\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://hl7.org/fhir/sid/cvx\",\n                            \"code\": \"140\",\n                            \"display\": \"Influenza, seasonal, injectable, preservative free\"\n                        }\n                    ],\n                    \"text\": \"Influenza, seasonal, injectable, preservative free\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48695\"\n                },\n                \"occurrenceDateTime\": \"2013-12-02T20:58:29.000Z\",\n                \"primarySource\": true\n            }\n        },\n        {\n            \"id\": \"35807\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Immunization/35807\",\n            \"resource\": {\n                \"resourceType\": \"Immunization\",\n                \"id\": \"35807\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"completed\",\n                \"vaccineCode\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://hl7.org/fhir/sid/cvx\",\n                            \"code\": \"140\",\n                            \"display\": \"Influenza, seasonal, injectable, preservative free\"\n                        }\n                    ],\n                    \"text\": \"Influenza, seasonal, injectable, preservative free\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48696\"\n                },\n                \"occurrenceDateTime\": \"2016-12-05T20:58:29.000Z\",\n                \"primarySource\": true\n            }\n        }\n    ]\n}"}],"_postman_id":"1b3aedf8-7009-49b3-a0bd-4de1d11d323a"},{"name":"Immunization Read","id":"7943417b-e91b-4138-ae47-f5730c4d4a40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Immunization/35803","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Immunization/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/Immunization/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual Immunization by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Immunization/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Is Optional</th>\n<th>Is Array</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID (String)</td>\n<td>The Immunization FHIR ID.</td>\n<td>false</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Immunization","35803"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"06fa889d-c76f-43e3-817c-e4e5bb9e9b34","name":"Immunizaation Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Immunization/35803"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"403"},{"key":"Date","value":"Sat, 26 Nov 2022 10:40:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Immunization\",\n    \"id\": \"35803\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"status\": \"completed\",\n    \"vaccineCode\": {\n        \"coding\": [\n            {\n                \"system\": \"http://hl7.org/fhir/sid/cvx\",\n                \"code\": \"113\",\n                \"display\": \"Td (adult) preservative free\"\n            }\n        ],\n        \"text\": \"Td (adult) preservative free\"\n    },\n    \"patient\": {\n        \"reference\": \"Patient/93272\"\n    },\n    \"encounter\": {\n        \"reference\": \"Encounter/48691\"\n    },\n    \"occurrenceDateTime\": \"2010-11-29T20:58:29.000Z\",\n    \"primarySource\": true\n}"}],"_postman_id":"7943417b-e91b-4138-ae47-f5730c4d4a40"}],"id":"19f83009-6ae7-4385-8f2e-c4d87eceec55","description":"<p>The Immunization resource includes the view of current and historical administration of vaccinations to a patient in all healthcare settings. This resource contains the functionality to query a patient’s immunization history.</p>\n<p>Detailed administration records may be found in MedicationAdministration, while the Immunization resource would represent the known vaccination history regardless of where the administration itself was done.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>Business identifier</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>completed, entered-in-error, not-done</td>\n</tr>\n<tr>\n<td>statusReason</td>\n<td>CodeableConcept</td>\n<td>Reason not done</td>\n</tr>\n<tr>\n<td>vaccineCode</td>\n<td>CodeableConcept</td>\n<td>Vaccine product administered</td>\n</tr>\n<tr>\n<td>patient</td>\n<td>Reference(Patient)</td>\n<td>Who was immunized</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>Reference(Encounter)</td>\n<td>Encounter immunization was part of</td>\n</tr>\n<tr>\n<td>occurrence</td>\n<td>object</td>\n<td>Vaccine administration date</td>\n</tr>\n<tr>\n<td>occurrence.occurrenceDateTime</td>\n<td>dateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>occurrence.occurrenceString</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>recorded</td>\n<td>dateTime</td>\n<td>When the immunization was first captured in the subject's record</td>\n</tr>\n<tr>\n<td>primarySource</td>\n<td>boolean</td>\n<td>Indicates context the data was recorded in</td>\n</tr>\n<tr>\n<td>reportOrigin</td>\n<td>CodeableConcept</td>\n<td>Indicates the source of a secondarily reported record</td>\n</tr>\n<tr>\n<td>location</td>\n<td>Reference(Location)</td>\n<td>Where immunization occurred</td>\n</tr>\n<tr>\n<td>manufacturer</td>\n<td>Reference(Organization)</td>\n<td>Vaccine manufacturer</td>\n</tr>\n<tr>\n<td>lotNumber</td>\n<td>string</td>\n<td>Vaccine lot number</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td>date</td>\n<td>Vaccine expiration date</td>\n</tr>\n<tr>\n<td>site</td>\n<td>CodeableConcept</td>\n<td>Body site vaccine  was administered</td>\n</tr>\n<tr>\n<td>route</td>\n<td>CodeableConcept</td>\n<td>How vaccine entered body</td>\n</tr>\n<tr>\n<td>doseQuantity</td>\n<td>Quantity(SimpleQuantity)</td>\n<td>Amount of vaccine administered</td>\n</tr>\n<tr>\n<td>performer</td>\n<td>object</td>\n<td>Who performed event</td>\n</tr>\n<tr>\n<td>performer.function</td>\n<td>CodeableConcept</td>\n<td>What type of performance was done</td>\n</tr>\n<tr>\n<td>performer.actor</td>\n<td>Reference(Practitioner,PractitionerRole,Organization)</td>\n<td>Individual or organization who was performing</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Annotation</td>\n<td>Additional immunization notes</td>\n</tr>\n<tr>\n<td>reasonCode</td>\n<td>CodeableConcept</td>\n<td>Why immunization occurred</td>\n</tr>\n<tr>\n<td>reasonReference</td>\n<td>Reference(Condition,Observation,DiagnosticReport)</td>\n<td>Why immunization occurred</td>\n</tr>\n<tr>\n<td>isSubpotent</td>\n<td>boolean</td>\n<td>Dose potency</td>\n</tr>\n<tr>\n<td>subpotentReason</td>\n<td>CodeableConcept</td>\n<td>Reason for being subpotent</td>\n</tr>\n<tr>\n<td>education</td>\n<td>object</td>\n<td>Educational material presented to patient</td>\n</tr>\n<tr>\n<td>education.documentType</td>\n<td>string</td>\n<td>Educational material document identifier</td>\n</tr>\n<tr>\n<td>education.reference</td>\n<td>uri</td>\n<td>Educational material reference pointer</td>\n</tr>\n<tr>\n<td>education.publicationDate</td>\n<td>dateTime</td>\n<td>Educational material publication date</td>\n</tr>\n<tr>\n<td>education.presentationDate</td>\n<td>dateTime</td>\n<td>Educational material presentation date</td>\n</tr>\n<tr>\n<td>programEligibility</td>\n<td>CodeableConcept</td>\n<td>Patient eligibility for a vaccination program</td>\n</tr>\n<tr>\n<td>fundingSource</td>\n<td>CodeableConcept</td>\n<td>Funding source for the vaccine</td>\n</tr>\n<tr>\n<td>reaction</td>\n<td>object</td>\n<td>Details of a reaction that follows immunization</td>\n</tr>\n<tr>\n<td>reaction.date</td>\n<td>dateTime</td>\n<td>When reaction started</td>\n</tr>\n<tr>\n<td>reaction.detail</td>\n<td>Reference(Observation)</td>\n<td>Additional information on reaction</td>\n</tr>\n<tr>\n<td>reaction.reported</td>\n<td>boolean</td>\n<td>Indicates self-reported reaction</td>\n</tr>\n<tr>\n<td>protocolApplied</td>\n<td>object</td>\n<td>Protocol followed by the provider</td>\n</tr>\n<tr>\n<td>protocolApplied.series</td>\n<td>string</td>\n<td>Name of vaccine series</td>\n</tr>\n<tr>\n<td>protocolApplied.authority</td>\n<td>Reference(Organization)</td>\n<td>Who is responsible for publishing the recommendations</td>\n</tr>\n<tr>\n<td>protocolApplied.targetDisease</td>\n<td>CodeableConcept</td>\n<td>Vaccine preventatable disease being targetted</td>\n</tr>\n<tr>\n<td>protocolApplied.doseNumber</td>\n<td>object</td>\n<td>Dose number within series</td>\n</tr>\n<tr>\n<td>protocolApplied.doseNumber.doseNumberPositiveInt</td>\n<td>positiveInt</td>\n<td></td>\n</tr>\n<tr>\n<td>protocolApplied.doseNumber.doseNumberString</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>protocolApplied.seriesDoses</td>\n<td>object</td>\n<td>Recommended number of doses for immunity</td>\n</tr>\n<tr>\n<td>protocolApplied.seriesDoses.seriesDosesPositiveInt</td>\n<td>positiveInt</td>\n<td></td>\n</tr>\n<tr>\n<td>protocolApplied.seriesDoses.seriesDosesString</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"19f83009-6ae7-4385-8f2e-c4d87eceec55"},{"name":"Procedure","item":[{"name":"Procedure Search","id":"74f8d374-a65d-4b0e-b563-8a4816a1422a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"{{SAVED_PATIENT}}","type":"text","disabled":true}]},"url":"{{API_BASE_URL}}/4_0_0/Procedure?patient=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Procedure?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/Procedure?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for Procedures that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Procedure?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>External Identifiers for this procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>instantiatesCanonical</td>\n<td>[{ canonical(ActivityDefinition,Measure,OperationDefinition,PlanDefinition,Questionnaire) }]</td>\n<td>Instantiates FHIR protocol or definition</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>instantiatesUri</td>\n<td>array</td>\n<td>Instantiates external protocol or definition</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>[{ Reference(CarePlan,ServiceRequest) }]</td>\n<td>A request for this procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>[{ Reference(MedicationAdministration,Observation,Procedure) }]</td>\n<td>Part of referenced event</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>preparation,in-progress,not-done,on-hold,stopped,completed,entered-in-error,unknown</td>\n<td>true</td>\n</tr>\n<tr>\n<td>statusReason</td>\n<td>{CodeableConcept}</td>\n<td>Reason for current status</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>category</td>\n<td>{CodeableConcept}</td>\n<td>Classification of the procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>code</td>\n<td>{CodeableConcept}</td>\n<td>Identification of the procedure</td>\n<td>true</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>{Reference(Group,Patient)}</td>\n<td>Who the procedure was performed on</td>\n<td>true</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>{Reference(Encounter)}</td>\n<td>Encounter created as part of</td>\n<td>false</td>\n</tr>\n<tr>\n<td>performedDateTime</td>\n<td>dateTime</td>\n<td>When the procedure was performed</td>\n<td>true</td>\n</tr>\n<tr>\n<td>performedPeriod</td>\n<td>Period</td>\n<td>When the procedure was performed</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>performedString</td>\n<td>string</td>\n<td>When the procedure was performed</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>performedAge</td>\n<td>Age</td>\n<td>When the procedure was performed</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>performedRange</td>\n<td>Range</td>\n<td>When the procedure was performed</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>recorder</td>\n<td>{ Reference(Patient,Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>Who recorded the procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>asserter</td>\n<td>{ Reference(Patient,Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>Person who asserts this procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>performer</td>\n<td>array</td>\n<td>The people who performed the procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>performer-function</td>\n<td>{CodeableConcept}</td>\n<td>Type of performance</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>performer-actor</td>\n<td>{ Reference(Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>The reference to the practitioner</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>performer-onBehalfOf</td>\n<td>{ Reference(Organization) }</td>\n<td>Organization the device or practitioner was acting for</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>location</td>\n<td>{ Reference(Location) }</td>\n<td>Where the procedure happened</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>reasonCode</td>\n<td>[{ CodeableConcept }]</td>\n<td>Coded reason procedure performed</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>reasonReference</td>\n<td>[{ Reference(Condition,DiagnosticReport,DocumentReference,Observation,Procedure) }]</td>\n<td>The justification that the procedure was performed</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>bodySite</td>\n<td>[{ CodeableConcept }]</td>\n<td>Target body sites</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>outcome</td>\n<td>{CodeableConcept}</td>\n<td>The result of procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>report</td>\n<td>[{ Reference(Composition,DiagnosticReport,DocumentReference) }]</td>\n<td>Any report resulting from the procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>complication</td>\n<td>[{ CodeableConcept }]</td>\n<td>Complication following the procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>complicationDetail</td>\n<td>[{ Reference(Condition) }]</td>\n<td>A condition that is a result of the procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>followUp</td>\n<td>[{ CodeableConcept }]</td>\n<td>Instructions for follow up</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>\"note\"</td>\n<td>[{ Annotation }]</td>\n<td>Additional information about the procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>focalDevice</td>\n<td>array</td>\n<td>Manipulated, implanted, or removed device</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>focalDevice-action</td>\n<td>{CodeableConcept}</td>\n<td>Kind of change to device</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>focalDevice-manipulated</td>\n<td>{ Reference(Device) }</td>\n<td>Device that was changed</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>usedReference</td>\n<td>[{ Reference(Device,Medication,Substance) }]</td>\n<td>Items used during procedure</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>usedCode</td>\n<td>[{ CodeableConcept }]</td>\n<td>Coded items used during the procedure</td>\n<td>fasle</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Procedure"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93272"}],"variable":[]}},"response":[{"id":"5932f530-7576-4662-b060-1c9572886efc","name":"Procedure Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/Procedure?patient=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","Procedure"],"query":[{"key":"patient","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"49c-O/bUcgUYIs/GvCuL2SkMrO97ljI\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Sat, 26 Nov 2022 10:47:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-26T10:47:46.128Z\",\n    \"total\": 2,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Procedure?patient=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"50063\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Procedure/50063\",\n            \"resource\": {\n                \"resourceType\": \"Procedure\",\n                \"id\": \"50063\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"completed\",\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"430193006\",\n                            \"display\": \"Medication Reconciliation (procedure)\"\n                        }\n                    ],\n                    \"text\": \"Medication Reconciliation (procedure)\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48694\"\n                },\n                \"performedDateTime\": \"2012-07-09T20:58:29.000Z\"\n            }\n        },\n        {\n            \"id\": \"50064\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Procedure/50064\",\n            \"resource\": {\n                \"resourceType\": \"Procedure\",\n                \"id\": \"50064\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"completed\",\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"430193006\",\n                            \"display\": \"Medication Reconciliation (procedure)\"\n                        }\n                    ],\n                    \"text\": \"Medication Reconciliation (procedure)\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48695\"\n                },\n                \"performedDateTime\": \"2013-12-02T20:58:29.000Z\"\n            }\n        }\n    ]\n}"}],"_postman_id":"74f8d374-a65d-4b0e-b563-8a4816a1422a"},{"name":"Procedure Read","id":"328cc856-8f8c-49b7-bec2-6569bc8e65b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Procedure/50063","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Procedure/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/Procedure/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual Procedure by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Procedure/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>String</td>\n<td>The Procedure FHIR ID.</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Procedure","50063"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"37dc0188-171b-428e-a25a-60f0a2f5af9d","name":"Procedure Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Procedure/50063"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"390"},{"key":"Date","value":"Sat, 26 Nov 2022 10:51:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Procedure\",\n    \"id\": \"50063\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"status\": \"completed\",\n    \"code\": {\n        \"coding\": [\n            {\n                \"system\": \"http://snomed.info/sct\",\n                \"code\": \"430193006\",\n                \"display\": \"Medication Reconciliation (procedure)\"\n            }\n        ],\n        \"text\": \"Medication Reconciliation (procedure)\"\n    },\n    \"subject\": {\n        \"reference\": \"Patient/93272\"\n    },\n    \"encounter\": {\n        \"reference\": \"Encounter/48694\"\n    },\n    \"performedDateTime\": \"2012-07-09T20:58:29.000Z\"\n}"}],"_postman_id":"328cc856-8f8c-49b7-bec2-6569bc8e65b5"}],"id":"6fc23297-0e09-4903-8540-bd3bf8b8b413","description":"<p>The Procedure resource returns medical and surgical procedures performed on or for a patient during their lifetime. Historical procedures, as well as procedures recorded during a specific visit, are returned. Surgical procedures from finalized surgical cases will be returned as free text procedures, if the solution has been configured to write procedures from finalized cases to Procedure History.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>External Identifiers for this procedure</td>\n</tr>\n<tr>\n<td>instantiatesCanonical</td>\n<td>canonical(ActivityDefinition,Measure,OperationDefinition,PlanDefinition,Questionnaire)</td>\n<td>Instantiates FHIR protocol or definition</td>\n</tr>\n<tr>\n<td>instantiatesUri</td>\n<td>array</td>\n<td>Instantiates external protocol or definition</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>Reference(CarePlan,ServiceRequest)</td>\n<td>A request for this procedure</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>Reference(MedicationAdministration,Observation,Procedure)</td>\n<td>Part of referenced event</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>preparation,in-progress,not-done,on-hold,stopped,completed,entered-in-error,unknown</td>\n</tr>\n<tr>\n<td>statusReason</td>\n<td>CodeableConcept</td>\n<td>Reason for current status</td>\n</tr>\n<tr>\n<td>category</td>\n<td>CodeableConcept</td>\n<td>Classification of the procedure</td>\n</tr>\n<tr>\n<td>code</td>\n<td>CodeableConcept</td>\n<td>Identification of the procedure</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>Reference(Group,Patient)</td>\n<td>Who the procedure was performed on</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>Reference(Encounter)</td>\n<td>Encounter created as part of</td>\n</tr>\n<tr>\n<td>performed</td>\n<td>object</td>\n<td>When the procedure was performed</td>\n</tr>\n<tr>\n<td>performed.performedDateTime</td>\n<td>dateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>performed.performedPeriod</td>\n<td>Period</td>\n<td></td>\n</tr>\n<tr>\n<td>performed.performedString</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>performed.performedAge</td>\n<td>Age</td>\n<td></td>\n</tr>\n<tr>\n<td>performed.performedRange</td>\n<td>Range</td>\n<td></td>\n</tr>\n<tr>\n<td>recorder</td>\n<td>Reference(Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>Who recorded the procedure</td>\n</tr>\n<tr>\n<td>asserter</td>\n<td>Reference(Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>Person who asserts this procedure</td>\n</tr>\n<tr>\n<td>performer</td>\n<td>object</td>\n<td>The people who performed the procedure</td>\n</tr>\n<tr>\n<td>performer.function</td>\n<td>CodeableConcept</td>\n<td>Type of performance</td>\n</tr>\n<tr>\n<td>performer.actor</td>\n<td>Reference(Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>The reference to the practitioner</td>\n</tr>\n<tr>\n<td>performer.onBehalfOf</td>\n<td>Reference(Organization)</td>\n<td>Organization the device or practitioner was acting for</td>\n</tr>\n<tr>\n<td>location</td>\n<td>Reference(Location)</td>\n<td>Where the procedure happened</td>\n</tr>\n<tr>\n<td>reasonCode</td>\n<td>CodeableConcept</td>\n<td>Coded reason procedure performed</td>\n</tr>\n<tr>\n<td>reasonReference</td>\n<td>Reference(Condition,DiagnosticReport,DocumentReference,Observation,Procedure)</td>\n<td>The justification that the procedure was performed</td>\n</tr>\n<tr>\n<td>bodySite</td>\n<td>CodeableConcept</td>\n<td>Target body sites</td>\n</tr>\n<tr>\n<td>outcome</td>\n<td>CodeableConcept</td>\n<td>The result of procedure</td>\n</tr>\n<tr>\n<td>report</td>\n<td>Reference(Composition,DiagnosticReport,DocumentReference)</td>\n<td>Any report resulting from the procedure</td>\n</tr>\n<tr>\n<td>complication</td>\n<td>CodeableConcept</td>\n<td>Complication following the procedure</td>\n</tr>\n<tr>\n<td>complicationDetail</td>\n<td>Reference(Condition)</td>\n<td>A condition that is a result of the procedure</td>\n</tr>\n<tr>\n<td>followUp</td>\n<td>CodeableConcept</td>\n<td>Instructions for follow up</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Annotation</td>\n<td>Additional information about the procedure</td>\n</tr>\n<tr>\n<td>focalDevice</td>\n<td>object</td>\n<td>Manipulated, implanted, or removed device</td>\n</tr>\n<tr>\n<td>focalDevice.action</td>\n<td>CodeableConcept</td>\n<td>Kind of change to device</td>\n</tr>\n<tr>\n<td>focalDevice.manipulated</td>\n<td>Reference(Device)</td>\n<td>Device that was changed</td>\n</tr>\n<tr>\n<td>usedReference</td>\n<td>Reference(Device,Medication,Substance)</td>\n<td>Items used during procedure</td>\n</tr>\n<tr>\n<td>usedCode</td>\n<td>CodeableConcept</td>\n<td>Coded items used during the procedure</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"6fc23297-0e09-4903-8540-bd3bf8b8b413"},{"name":"CarePlan","item":[{"name":"CarePlan Search","id":"a6aa40d0-ed50-429a-b05b-d3648f39ea69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/CarePlan?patient=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/CarePlan?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/CarePlan?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for CarePlans that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/CarePlan?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>External Ids for this plan</td>\n<td>false</td>\n</tr>\n<tr>\n<td>instantiatesCanonical</td>\n<td>[{canonical(ActivityDefinition,Measure,OperationDefinition,PlanDefinition,Questionnaire)}]</td>\n<td>Instantiates FHIR protocol or definition</td>\n<td>false</td>\n</tr>\n<tr>\n<td>instantiatesUri</td>\n<td>[uri]</td>\n<td>Instantiates external protocol or definition</td>\n<td>false</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>[{ Reference(CarePlan) }]</td>\n<td>Fulfills CarePlan</td>\n<td>false</td>\n</tr>\n<tr>\n<td>replaces</td>\n<td>[{ Reference(CarePlan) }]</td>\n<td>CarePlan replaced by this CarePlan</td>\n<td>false</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>[{ Reference(CarePlan) }]</td>\n<td>Part of referenced CarePlan</td>\n<td>false</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>draft, active, on-hold, revoked, completed, entered-in-error, unknown</td>\n<td>true</td>\n</tr>\n<tr>\n<td>intent</td>\n<td>code</td>\n<td>proposal, plan, order, option</td>\n<td>true</td>\n</tr>\n<tr>\n<td>category</td>\n<td>[{ CodeableConcept }]</td>\n<td>Type of plan</td>\n<td>true</td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Human-friendly name for the care plan</td>\n<td>false</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Summary of nature of plan</td>\n<td>false</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>{ Reference(Group,Patient) }</td>\n<td>Who the care plan is for</td>\n<td>true</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>{ Reference(Encounter) }</td>\n<td>Encounter created as part of</td>\n<td>false</td>\n</tr>\n<tr>\n<td>period</td>\n<td>{ Period }</td>\n<td>Time period plan covers</td>\n<td>false</td>\n</tr>\n<tr>\n<td>created</td>\n<td>dateTime</td>\n<td>Date record was first recorded</td>\n<td>false</td>\n</tr>\n<tr>\n<td>author</td>\n<td>{Reference(CareTeam,Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson)}</td>\n<td>Who is the designated responsible party</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contributor</td>\n<td>{Reference(CareTeam,Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson)}</td>\n<td>Who provided the content of the care plan</td>\n<td>false</td>\n</tr>\n<tr>\n<td>careTeam</td>\n<td>[{ Reference(CareTeam) }]</td>\n<td>Who's involved in plan?</td>\n<td>false</td>\n</tr>\n<tr>\n<td>addresses</td>\n<td>[{ Reference(Condition) }]</td>\n<td>Health issues this plan addresses</td>\n<td>false</td>\n</tr>\n<tr>\n<td>supportingInfo</td>\n<td>[{ Reference(Any) }]</td>\n<td>Information considered as part of plan</td>\n<td>false</td>\n</tr>\n<tr>\n<td>goal</td>\n<td>[{ Reference(Goal) }]</td>\n<td>Desired outcome of plan</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity\"</td>\n<td>array</td>\n<td>Action to occur as part of plan</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-outcomeCodeableConcept</td>\n<td>[{ CodeableConcept }]</td>\n<td>Results of the activity</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-outcomeReference</td>\n<td>[{ Reference(Any) }]</td>\n<td>Appointment, Encounter, Procedure, etc.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-progress</td>\n<td>[{ Annotation }]</td>\n<td>Comments about the activity status/progress</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-reference</td>\n<td>{ Reference(Appointment,CommunicationRequest,DeviceRequest,MedicationRequest,NutritionOrder,RequestGroup,ServiceRequest,Task,VisionPrescription) }</td>\n<td>Activity details defined in specific resource</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail</td>\n<td>object</td>\n<td>In-line definition of activity</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-kind</td>\n<td>code</td>\n<td>Appointment , CommunicationRequest , DeviceRequest , MedicationRequest , NutritionOrder , Task , ServiceRequest , VisionPrescription</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-instantiatesCanonical</td>\n<td>[{ canonical(ActivityDefinition,Measure,OperationDefinition,PlanDefinition,Questionnaire) }]</td>\n<td>Instantiates FHIR protocol or definition</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-instantiatesUri</td>\n<td>uri</td>\n<td>Instantiates external protocol or definition</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-code</td>\n<td>{ CodeableConcept }</td>\n<td>Detail type of activity</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-reasonCode</td>\n<td>[{ CodeableConcept }]</td>\n<td>Why activity should be done or why activity was prohibited</td>\n<td></td>\n</tr>\n<tr>\n<td>activity-detail-reasonReference</td>\n<td>[{ Reference(Condition,DiagnosticReport,DocumentReference,Observation) }]</td>\n<td>Why activity is needed</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-goal</td>\n<td>[{ Reference(Goal) }]</td>\n<td>Goals this activity relates to</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-status</td>\n<td>code</td>\n<td>not-started, scheduled, in-progress, on-hold, completed, cancelled, stopped, unknown , entered-in-error</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-statusReason</td>\n<td>{ CodeableConcept }</td>\n<td>Reason for current status</td>\n<td>false</td>\n</tr>\n<tr>\n<td>doNotPerform</td>\n<td>boolean</td>\n<td>If true, activity is prohibiting action</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-scheduledTiming</td>\n<td>{ Timing }</td>\n<td>When activity is to occur</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-scheduledPeriod</td>\n<td>{ Period }</td>\n<td>When activity is to occur</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-scheduledString</td>\n<td>string</td>\n<td>When activity is to occur</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-location</td>\n<td>{ Reference(Location) }</td>\n<td>Where it should happen</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-productCodeableConcept</td>\n<td>{ CodeableConcept }</td>\n<td>What is to be administered/supplied</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-productReference</td>\n<td>{ Reference(Medication,Substance) }</td>\n<td>What is to be administered/supplied</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-dailyAmount</td>\n<td>{ Quantity(SimpleQuantity) }</td>\n<td>How to consume/day?</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-quantity</td>\n<td>{ Quantity(SimpleQuantity) }</td>\n<td>How much to administer/supply/consume</td>\n<td>false</td>\n</tr>\n<tr>\n<td>activity-detail-description</td>\n<td>string</td>\n<td>Extra info describing activity to perform</td>\n<td>false</td>\n</tr>\n<tr>\n<td>note</td>\n<td>[{ Annotation }]</td>\n<td>Comments about the plan</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","CarePlan"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93272"}],"variable":[]}},"response":[{"id":"3acb049f-916c-47cb-b6c1-48e0ee251676","name":"CarePlan Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/CarePlan?patient=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","CarePlan"],"query":[{"key":"patient","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"718-I4MvjF05UNuox5m90h0WWDaKT0I\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Sat, 26 Nov 2022 10:54:08 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-26T10:54:08.343Z\",\n    \"total\": 2,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/CarePlan?patient=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"62531\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/CarePlan/62531\",\n            \"resource\": {\n                \"resourceType\": \"CarePlan\",\n                \"id\": \"62531\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"text\": {\n                    \"status\": \"generated\",\n                    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Care Plan for Self care.<br/>Activities: <ul><li>Self care</li><li>Self care</li><li>Self care</li></ul></div>\"\n                },\n                \"status\": \"active\",\n                \"intent\": \"order\",\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/careplan-category\",\n                                \"code\": \"assess-plan\"\n                            }\n                        ]\n                    },\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://snomed.info/sct\",\n                                \"code\": \"326051000000105\",\n                                \"display\": \"Self care\"\n                            }\n                        ],\n                        \"text\": \"Self care\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                }\n            }\n        },\n        {\n            \"id\": \"62532\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/CarePlan/62532\",\n            \"resource\": {\n                \"resourceType\": \"CarePlan\",\n                \"id\": \"62532\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"text\": {\n                    \"status\": \"generated\",\n                    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Care Plan for Lifestyle education regarding hypertension.<br/>Activities: <ul><li>Lifestyle education regarding hypertension</li><li>Lifestyle education regarding hypertension</li><li>Lifestyle education regarding hypertension</li><li>Lifestyle education regarding hypertension</li></ul><br/>Care plan is meant to treat Hypertension.</div>\"\n                },\n                \"status\": \"active\",\n                \"intent\": \"order\",\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/careplan-category\",\n                                \"code\": \"assess-plan\"\n                            }\n                        ]\n                    },\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://snomed.info/sct\",\n                                \"code\": \"443402002\",\n                                \"display\": \"Lifestyle education regarding hypertension\"\n                            }\n                        ],\n                        \"text\": \"Lifestyle education regarding hypertension\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"a6aa40d0-ed50-429a-b05b-d3648f39ea69"},{"name":"CarePlan Read","id":"9e9b787c-df75-4d20-927f-b884bad28512","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/CarePlan/62531","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/CarePlan/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/CarePlan/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual CarePlan by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/CarePlan/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Is Optional</th>\n<th>Is Array</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID (String)</td>\n<td>The CarePlan FHIR ID.</td>\n<td>false</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","CarePlan","62531"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"204bc3be-7c27-4dfe-9e09-dfe5b640d891","name":"CarePlan Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/CarePlan/62531"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"565"},{"key":"Date","value":"Sat, 26 Nov 2022 10:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"CarePlan\",\n    \"id\": \"62531\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"text\": {\n        \"status\": \"generated\",\n        \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Care Plan for Self care.<br/>Activities: <ul><li>Self care</li><li>Self care</li><li>Self care</li></ul></div>\"\n    },\n    \"status\": \"active\",\n    \"intent\": \"order\",\n    \"category\": [\n        {\n            \"coding\": [\n                {\n                    \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/careplan-category\",\n                    \"code\": \"assess-plan\"\n                }\n            ]\n        },\n        {\n            \"coding\": [\n                {\n                    \"system\": \"http://snomed.info/sct\",\n                    \"code\": \"326051000000105\",\n                    \"display\": \"Self care\"\n                }\n            ],\n            \"text\": \"Self care\"\n        }\n    ],\n    \"subject\": {\n        \"reference\": \"Patient/93272\"\n    }\n}"}],"_postman_id":"9e9b787c-df75-4d20-927f-b884bad28512"}],"id":"a7889182-5bb0-4f90-b83d-d2eb3273e585","description":"<p>The R4 CarePlan resource can be used to represent care plans.\nThe CarePlan resource describes the intentions of how one or more practitioners plan to deliver care to a specific patient. Care plans are used in a variety of areas and scopes ranging from encounter or visit specific to cross-visits. Care plans are used to group activities, goals and/or practitioners to create context. Care plans are intended to be specific to the patient. It is possible for a planned activity to stand alone without a care plan such as a scheduled appointment.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>External Ids for this plan</td>\n</tr>\n<tr>\n<td>instantiatesCanonical</td>\n<td>canonical(ActivityDefinition, Measure,OperationDefinition, PlanDefinition, Questionnaire)</td>\n<td>Instantiates FHIR protocol or definition</td>\n</tr>\n<tr>\n<td>instantiatesUri</td>\n<td>uri</td>\n<td>Instantiates external protocol or definition</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>Reference(CarePlan)</td>\n<td>Fulfills CarePlan</td>\n</tr>\n<tr>\n<td>replaces</td>\n<td>Reference(CarePlan)</td>\n<td>CarePlan replaced by this CarePlan</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>Reference(CarePlan)</td>\n<td>Part of referenced CarePlan</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>draft, active, on-hold, revoked, completed, entered-in-error, unknown</td>\n</tr>\n<tr>\n<td>intent</td>\n<td>code</td>\n<td>proposal, plan, order, option</td>\n</tr>\n<tr>\n<td>category</td>\n<td>CodeableConcept</td>\n<td>Type of plan</td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Human-friendly name for the care plan</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Summary of nature of plan</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>Reference(Group,Patient)</td>\n<td>Who the care plan is for</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>Reference(Encounter)</td>\n<td>Encounter created as part of</td>\n</tr>\n<tr>\n<td>period</td>\n<td>Period</td>\n<td>Time period plan covers</td>\n</tr>\n<tr>\n<td>created</td>\n<td>dateTime</td>\n<td>Date record was first recorded</td>\n</tr>\n<tr>\n<td>author</td>\n<td>Reference(CareTeam,Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>Who is the designated responsible party</td>\n</tr>\n<tr>\n<td>contributor</td>\n<td>Reference(CareTeam,Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>Who provided the content of the care plan</td>\n</tr>\n<tr>\n<td>careTeam</td>\n<td>Reference(CareTeam)</td>\n<td>Who's involved in plan?</td>\n</tr>\n<tr>\n<td>addresses</td>\n<td>Reference(Condition)</td>\n<td>Health issues this plan addresses</td>\n</tr>\n<tr>\n<td>supportingInfo</td>\n<td>Reference(Any)</td>\n<td>Information considered as part of plan</td>\n</tr>\n<tr>\n<td>goal</td>\n<td>Reference(Goal)</td>\n<td>Desired outcome of plan</td>\n</tr>\n<tr>\n<td>activity</td>\n<td>object</td>\n<td>Action to occur as part of plan</td>\n</tr>\n<tr>\n<td>activity.outcomeCodeableConcept</td>\n<td>CodeableConcept</td>\n<td>Results of the activity</td>\n</tr>\n<tr>\n<td>activity.outcomeReference</td>\n<td>Reference(Any)</td>\n<td>Appointment, Encounter, Procedure, etc.</td>\n</tr>\n<tr>\n<td>activity.progress</td>\n<td>Annotation</td>\n<td>Comments about the activity status/progress</td>\n</tr>\n<tr>\n<td>activity.reference</td>\n<td>Reference(Appointment,CommunicationRequest,DeviceRequest,MedicationRequest,NutritionOrder,RequestGroup,ServiceRequest,Task,VisionPrescription)</td>\n<td>Activity details defined in specific resource</td>\n</tr>\n<tr>\n<td>activity.detail</td>\n<td>object</td>\n<td>In-line definition of activity</td>\n</tr>\n<tr>\n<td>activity.detail.kind</td>\n<td>code</td>\n<td>Appointment , CommunicationRequest , DeviceRequest , MedicationRequest , NutritionOrder , Task , ServiceRequest , VisionPrescription</td>\n</tr>\n<tr>\n<td>activity.detail.instantiatesCanonical</td>\n<td>canonical(ActivityDefinition,Measure,OperationDefinition,PlanDefinition,Questionnaire)</td>\n<td>Instantiates FHIR protocol or definition</td>\n</tr>\n<tr>\n<td>activity.detail.instantiatesUri</td>\n<td>uri</td>\n<td>Instantiates external protocol or definition</td>\n</tr>\n<tr>\n<td>activity.detail.code</td>\n<td>CodeableConcept</td>\n<td>Detail type of activity</td>\n</tr>\n<tr>\n<td>activity.detail.reasonCode</td>\n<td>CodeableConcept</td>\n<td>Why activity should be done or why activity was prohibited</td>\n</tr>\n<tr>\n<td>activity.detail.reasonReference</td>\n<td>Reference(Condition,DiagnosticReport,DocumentReference,Observation)</td>\n<td>Why activity is needed</td>\n</tr>\n<tr>\n<td>activity.detail.goal</td>\n<td>Reference(Goal)</td>\n<td>Goals this activity relates to</td>\n</tr>\n<tr>\n<td>activity.detail.status</td>\n<td>code</td>\n<td>not-started, scheduled, in-progress, on-hold, completed, cancelled, stopped, unknown , entered-in-error</td>\n</tr>\n<tr>\n<td>activity.detail.statusReason</td>\n<td>CodeableConcept</td>\n<td>Reason for current status</td>\n</tr>\n<tr>\n<td>activity.detail.doNotPerform</td>\n<td>boolean</td>\n<td>If true, activity is prohibiting action</td>\n</tr>\n<tr>\n<td>activity.detail.scheduled</td>\n<td>object</td>\n<td>When activity is to occur</td>\n</tr>\n<tr>\n<td>activity.detail.scheduled.scheduledTiming</td>\n<td>Timing</td>\n<td></td>\n</tr>\n<tr>\n<td>activity.detail.scheduled.scheduledPeriod</td>\n<td>Period</td>\n<td></td>\n</tr>\n<tr>\n<td>activity.detail.scheduled.scheduledString</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>activity.detail.location</td>\n<td>Reference(Location)</td>\n<td>Where it should happen</td>\n</tr>\n<tr>\n<td>activity.detail.performer</td>\n<td>Reference(CareTeam, Device, HealthcareService, Organization, Patient, Practitioner, PractitionerRole, RelatedPerson)</td>\n<td>Who will be responsible?</td>\n</tr>\n<tr>\n<td>activity.detail.product</td>\n<td>object</td>\n<td>What is to be administered/supplied</td>\n</tr>\n<tr>\n<td>activity.detail.product.productCodeableConcept</td>\n<td>CodeableConcept</td>\n<td></td>\n</tr>\n<tr>\n<td>activity.detail.product.productReference</td>\n<td>Reference(Medication,Substance)</td>\n<td></td>\n</tr>\n<tr>\n<td>activity.detail.dailyAmount</td>\n<td>Quantity(SimpleQuantity)</td>\n<td>How to consume/day?</td>\n</tr>\n<tr>\n<td>activity.detail.quantity</td>\n<td>Quantity(SimpleQuantity)</td>\n<td>How much to administer/supply/consume</td>\n</tr>\n<tr>\n<td>activity.detail.description</td>\n<td>string</td>\n<td>Extra info describing activity to perform</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Annotation</td>\n<td>Comments about the plan</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a7889182-5bb0-4f90-b83d-d2eb3273e585"},{"name":"Device","item":[{"name":"Device Search","id":"f18753fd-ee06-4440-921f-3f3e93c2905c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Device?patient=93566","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Device?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/Device?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for Devices that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Device?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>Instance identifier</td>\n<td>false</td>\n</tr>\n<tr>\n<td>definition</td>\n<td>{ Reference(DeviceDefinition) }</td>\n<td>The reference to the definition for the device</td>\n<td>false</td>\n</tr>\n<tr>\n<td>udiCarrier</td>\n<td>array</td>\n<td>Unique Device Identifier (UDI) Barcode string</td>\n<td>true</td>\n</tr>\n<tr>\n<td>udiCarrier-deviceIdentifier</td>\n<td>string</td>\n<td>Mandatory fixed portion of UDI</td>\n<td>true</td>\n</tr>\n<tr>\n<td>udiCarrier-issuer</td>\n<td>uri</td>\n<td>UDI Issuing Organization</td>\n<td>false</td>\n</tr>\n<tr>\n<td>udiCarrier-jurisdiction</td>\n<td>uri</td>\n<td>Regional UDI authority</td>\n<td>false</td>\n</tr>\n<tr>\n<td>udiCarrier-carrierAIDC</td>\n<td>base64Binary</td>\n<td>UDI Machine Readable Barcode String</td>\n<td>true</td>\n</tr>\n<tr>\n<td>udiCarrier-carrierHRF</td>\n<td>string</td>\n<td>UDI Human Readable Barcode String</td>\n<td>true</td>\n</tr>\n<tr>\n<td>udiCarrier-entryType</td>\n<td>code</td>\n<td>barcode,rfid,manual</td>\n<td>false</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>active,inactive,entered-in-error,unknown</td>\n<td>false</td>\n</tr>\n<tr>\n<td>statusReason</td>\n<td>[{ CodeableConcept }]</td>\n<td>online,paused,standby,offline,not-ready,transduc-discon,hw-discon,off</td>\n<td>false</td>\n</tr>\n<tr>\n<td>distinctIdentifier</td>\n<td>string</td>\n<td>The distinct identification string</td>\n<td>true</td>\n</tr>\n<tr>\n<td>manufacturer</td>\n<td>string</td>\n<td>Name of device manufacturer</td>\n<td>false</td>\n</tr>\n<tr>\n<td>manufactureDate</td>\n<td>dateTime</td>\n<td>Date when the device was made</td>\n<td>true</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td>dateTime</td>\n<td>Date and time of expiry of this device (if applicable)</td>\n<td>true</td>\n</tr>\n<tr>\n<td>lotNumber</td>\n<td>string</td>\n<td>Lot number of manufacture</td>\n<td>true</td>\n</tr>\n<tr>\n<td>serialNumber</td>\n<td>string</td>\n<td>Serial number assigned by the manufacturer</td>\n<td>true</td>\n</tr>\n<tr>\n<td>deviceName</td>\n<td>array</td>\n<td>The name of the device as given by the manufacturer</td>\n<td>false</td>\n</tr>\n<tr>\n<td>deviceName-name</td>\n<td>string</td>\n<td>The name that identifies the device</td>\n<td>false</td>\n</tr>\n<tr>\n<td>deviceName-type</td>\n<td>code</td>\n<td>udi-label-name,user-friendly-name,patient-reported-name,manufacturer-name,model-name,other</td>\n<td>false</td>\n</tr>\n<tr>\n<td>modelNumber</td>\n<td>string</td>\n<td>The manufacturer's model number for the device</td>\n<td>false</td>\n</tr>\n<tr>\n<td>partNumber</td>\n<td>string</td>\n<td>The part number or catalog number of the device</td>\n<td>false</td>\n</tr>\n<tr>\n<td>type</td>\n<td>{ CodeableConcept }</td>\n<td>The kind or type of device</td>\n<td>false</td>\n</tr>\n<tr>\n<td>specialization</td>\n<td>array</td>\n<td>The capabilities supported on a  device, the standards to which the device conforms for a particular purpose, and used for the communication</td>\n<td>false</td>\n</tr>\n<tr>\n<td>specialization-systemType</td>\n<td>{ CodeableConcept }</td>\n<td>The standard that is used to operate and communicate</td>\n<td>false</td>\n</tr>\n<tr>\n<td>specialization-version</td>\n<td>string</td>\n<td>The version of the standard that is used to operate and communicate</td>\n<td>false</td>\n</tr>\n<tr>\n<td>version</td>\n<td>array</td>\n<td>The actual design of the device or software version running on the device</td>\n<td>false</td>\n</tr>\n<tr>\n<td>version-type</td>\n<td>{ CodeableConcept }</td>\n<td>The type of the device version, e.g. manufacturer, approved, internal</td>\n<td>false</td>\n</tr>\n<tr>\n<td>version-component</td>\n<td>{ Identifier }</td>\n<td>A single component of the device version</td>\n<td>false</td>\n</tr>\n<tr>\n<td>version-value</td>\n<td>string</td>\n<td>The version text</td>\n<td>false</td>\n</tr>\n<tr>\n<td>property</td>\n<td>array</td>\n<td>The actual configuration settings of a device as it actually operates, e.g., regulation status, time properties</td>\n<td>false</td>\n</tr>\n<tr>\n<td>property-type</td>\n<td>{ CodeableConcept }</td>\n<td>Code that specifies the property DeviceDefinitionPropetyCode (Extensible)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>property-valueQuantity</td>\n<td>[{ Quantity }]</td>\n<td>Property value as a quantity</td>\n<td>false</td>\n</tr>\n<tr>\n<td>property-valueCode</td>\n<td>[{ CodeableConcept }]</td>\n<td>Property value as a code, e.g., NTP4 (synced to NTP)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>patient</td>\n<td>{ Reference(Patient) }</td>\n<td>Patient to whom Device is affixed</td>\n<td>true</td>\n</tr>\n<tr>\n<td>owner</td>\n<td>{ Reference(Organization) }</td>\n<td>Organization responsible for device</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact</td>\n<td>[{ ContactPoint }]</td>\n<td>Details for human/organization for support</td>\n<td>false</td>\n</tr>\n<tr>\n<td>location</td>\n<td>{ Reference(Location) }</td>\n<td>Where the device is found</td>\n<td>false</td>\n</tr>\n<tr>\n<td>url</td>\n<td>uri</td>\n<td>Network address to contact device</td>\n<td>false</td>\n</tr>\n<tr>\n<td>note</td>\n<td>[{ Annotation }]</td>\n<td>Device notes and comments</td>\n<td>false</td>\n</tr>\n<tr>\n<td>safety</td>\n<td>[{ CodeableConcept }]</td>\n<td>Safety Characteristics of Device</td>\n<td>false</td>\n</tr>\n<tr>\n<td>parent</td>\n<td>{ Reference(Device) }</td>\n<td>The device that this device is attached to or is part of</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Device"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93566"}],"variable":[]}},"response":[{"id":"cc11a3b7-26b8-43bf-b148-961ec6032daa","name":"Device Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/Device?patient=93566","host":["{{API_BASE_URL}}"],"path":["4_0_0","Device"],"query":[{"key":"patient","value":"93566"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"847"},{"key":"ETag","value":"W/\"34f-UARpJWQ1225RZiyG+AO6udQ7cFs\""},{"key":"Date","value":"Sat, 26 Nov 2022 10:58:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-26T10:58:55.333Z\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Device?patient=93566\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"21220\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Device/21220\",\n            \"resource\": {\n                \"resourceType\": \"Device\",\n                \"id\": \"21220\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"udiCarrier\": [\n                    {\n                        \"deviceIdentifier\": \"61436448207950\",\n                        \"carrierHRF\": \"(01)61436448207950(11)800730(17)050814(10)55186(21)711487882423\"\n                    }\n                ],\n                \"distinctIdentifier\": \"61436448207950\",\n                \"manufactureDate\": \"1980-07-30T23:36:32.000Z\",\n                \"expirationDate\": \"2005-08-14T23:36:32.000Z\",\n                \"lotNumber\": \"55186\",\n                \"serialNumber\": \"711487882423\",\n                \"type\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"72506001\",\n                            \"display\": \"Implantable defibrillator, device (physical object)\"\n                        }\n                    ]\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93566\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"f18753fd-ee06-4440-921f-3f3e93c2905c"},{"name":"Device Read","id":"50960391-8e37-48f2-9f93-ba21d60b1aa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Device/21220","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Device/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/Device/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual Device by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Device/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>String</td>\n<td>The Device FHIR ID.</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Device","21220"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"5803799a-21c4-456f-af0f-4765a07c7d41","name":"Device Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Device/21220"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"550"},{"key":"Date","value":"Sat, 26 Nov 2022 10:59:42 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Device\",\n    \"id\": \"21220\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"udiCarrier\": [\n        {\n            \"deviceIdentifier\": \"61436448207950\",\n            \"carrierHRF\": \"(01)61436448207950(11)800730(17)050814(10)55186(21)711487882423\"\n        }\n    ],\n    \"distinctIdentifier\": \"61436448207950\",\n    \"manufactureDate\": \"1980-07-30T23:36:32.000Z\",\n    \"expirationDate\": \"2005-08-14T23:36:32.000Z\",\n    \"lotNumber\": \"55186\",\n    \"serialNumber\": \"711487882423\",\n    \"type\": {\n        \"coding\": [\n            {\n                \"system\": \"http://snomed.info/sct\",\n                \"code\": \"72506001\",\n                \"display\": \"Implantable defibrillator, device (physical object)\"\n            }\n        ]\n    },\n    \"patient\": {\n        \"reference\": \"Patient/93566\"\n    }\n}"}],"_postman_id":"50960391-8e37-48f2-9f93-ba21d60b1aa4"}],"id":"4527e59e-8ce0-47bb-afd3-0f91d1b3e958","description":"<p>The Device resource implementation is currently limited to devices implanted in a patient such as a pacemaker or insulin pump. As such, this resource currently exposes the known implant history for a patient at this site.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>Instance identifier</td>\n</tr>\n<tr>\n<td>definition</td>\n<td>Reference(DeviceDefinition)</td>\n<td>The reference to the definition for the device</td>\n</tr>\n<tr>\n<td>udiCarrier</td>\n<td>object</td>\n<td>Unique Device Identifier (UDI) Barcode string</td>\n</tr>\n<tr>\n<td>udiCarrier.deviceIdentifier</td>\n<td>string</td>\n<td>Mandatory fixed portion of UDI</td>\n</tr>\n<tr>\n<td>udiCarrier.issuer</td>\n<td>uri</td>\n<td>UDI Issuing Organization</td>\n</tr>\n<tr>\n<td>udiCarrier.jurisdiction</td>\n<td>uri</td>\n<td>Regional UDI authority</td>\n</tr>\n<tr>\n<td>udiCarrier.carrierAIDC</td>\n<td>base64Binary</td>\n<td>UDI Machine Readable Barcode String</td>\n</tr>\n<tr>\n<td>udiCarrier.carrierHRF</td>\n<td>string</td>\n<td>UDI Human Readable Barcode String</td>\n</tr>\n<tr>\n<td>udiCarrier.entryType</td>\n<td>code</td>\n<td>barcode,rfid,manual</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>active,inactive,entered-in-error,unknown</td>\n</tr>\n<tr>\n<td>statusReason</td>\n<td>CodeableConcept</td>\n<td>online,paused,standby,offline,not-ready,transduc-discon,hw-discon,off</td>\n</tr>\n<tr>\n<td>distinctIdentifier</td>\n<td>string</td>\n<td>The distinct identification string</td>\n</tr>\n<tr>\n<td>manufacturer</td>\n<td>string</td>\n<td>Name of device manufacturer</td>\n</tr>\n<tr>\n<td>manufactureDate</td>\n<td>dateTime</td>\n<td>Date when the device was made</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td>dateTime</td>\n<td>Date and time of expiry of this device (if applicable)</td>\n</tr>\n<tr>\n<td>lotNumber</td>\n<td>string</td>\n<td>Lot number of manufacture</td>\n</tr>\n<tr>\n<td>serialNumber</td>\n<td>string</td>\n<td>Serial number assigned by the manufacturer</td>\n</tr>\n<tr>\n<td>deviceName</td>\n<td>object</td>\n<td>The name of the device as given by the manufacturer</td>\n</tr>\n<tr>\n<td>deviceName.name</td>\n<td>string</td>\n<td>The name that identifies the device</td>\n</tr>\n<tr>\n<td>deviceName.type</td>\n<td>code</td>\n<td>udi-label-name, user-friendly-name, patient-reported-name, manufacturer-name, model-name, other</td>\n</tr>\n<tr>\n<td>modelNumber</td>\n<td>string</td>\n<td>The manufacturer's model number for the device</td>\n</tr>\n<tr>\n<td>partNumber</td>\n<td>string</td>\n<td>The part number or catalog number of the device</td>\n</tr>\n<tr>\n<td>type</td>\n<td>CodeableConcept</td>\n<td>The kind or type of device</td>\n</tr>\n<tr>\n<td>specialization</td>\n<td>object</td>\n<td>The capabilities supported on a  device, the standards to which the device conforms for a particular purpose, and used for the communication</td>\n</tr>\n<tr>\n<td>specialization.systemType</td>\n<td>CodeableConcept</td>\n<td>The standard that is used to operate and communicate</td>\n</tr>\n<tr>\n<td>specialization.version</td>\n<td>string</td>\n<td>The version of the standard that is used to operate and communicate</td>\n</tr>\n<tr>\n<td>version</td>\n<td>object</td>\n<td>The actual design of the device or software version running on the device</td>\n</tr>\n<tr>\n<td>version.type</td>\n<td>CodeableConcept</td>\n<td>The type of the device version, e.g. manufacturer, approved, internal</td>\n</tr>\n<tr>\n<td>version.component</td>\n<td>Identifier</td>\n<td>A single component of the device version</td>\n</tr>\n<tr>\n<td>version.value</td>\n<td>string</td>\n<td>The version text</td>\n</tr>\n<tr>\n<td>property</td>\n<td>object</td>\n<td>The actual configuration settings of a device as it actually operates, e.g., regulation status, time properties</td>\n</tr>\n<tr>\n<td>property.type</td>\n<td>CodeableConcept</td>\n<td>Code that specifies the property DeviceDefinitionPropetyCode (Extensible)</td>\n</tr>\n<tr>\n<td>property.valueQuantity</td>\n<td>Quantity</td>\n<td>Property value as a quantity</td>\n</tr>\n<tr>\n<td>property.valueCode</td>\n<td>CodeableConcept</td>\n<td>Property value as a code, e.g., NTP4 (synced to NTP)</td>\n</tr>\n<tr>\n<td>patient</td>\n<td>Reference(Patient)</td>\n<td>Patient to whom Device is affixed</td>\n</tr>\n<tr>\n<td>owner</td>\n<td>Reference(Organization)</td>\n<td>Organization responsible for device</td>\n</tr>\n<tr>\n<td>contact</td>\n<td>ContactPoint</td>\n<td>Details for human/organization for support</td>\n</tr>\n<tr>\n<td>location</td>\n<td>Reference(Location)</td>\n<td>Where the device is found</td>\n</tr>\n<tr>\n<td>url</td>\n<td>uri</td>\n<td>Network address to contact device</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Annotation</td>\n<td>Device notes and comments</td>\n</tr>\n<tr>\n<td>safety</td>\n<td>CodeableConcept</td>\n<td>Safety Characteristics of Device</td>\n</tr>\n<tr>\n<td>parent</td>\n<td>Reference(Device)</td>\n<td>The device that this device is attached to or is part of</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4527e59e-8ce0-47bb-afd3-0f91d1b3e958"},{"name":"Patient","item":[{"name":"Patient Search","id":"668b4bab-2160-4e88-8fc3-8c9c69db1bf1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Patient?_id=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Patient?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/Patient?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for Patients that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Patient?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>An identifier for this patient</td>\n<td>true</td>\n</tr>\n<tr>\n<td>active</td>\n<td>boolean</td>\n<td>Whether this patient's record is in active use</td>\n<td>false</td>\n</tr>\n<tr>\n<td>name</td>\n<td>[{ HumanName }]</td>\n<td>A name associated with the patient</td>\n<td>true</td>\n</tr>\n<tr>\n<td>telecom</td>\n<td>[{ ContactPoint }]</td>\n<td>A contact detail for the individual</td>\n<td>true</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>code</td>\n<td>male, female, other, unknown</td>\n<td>true</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>date</td>\n<td>The date of birth for the individual</td>\n<td>true</td>\n</tr>\n<tr>\n<td>deceasedBoolean</td>\n<td>boolean</td>\n<td>Indicates if the individual is deceased or no</td>\n<td>false</td>\n</tr>\n<tr>\n<td>deceasedDateTime</td>\n<td>dateTime</td>\n<td>Indicates if the individual is deceased or no</td>\n<td>false</td>\n</tr>\n<tr>\n<td>address</td>\n<td>[{ Address }]</td>\n<td>address for the individual</td>\n<td>true</td>\n</tr>\n<tr>\n<td>maritalStatus</td>\n<td>{ CodeableConcept }</td>\n<td>Marital (civil) status of a patient</td>\n<td>false</td>\n</tr>\n<tr>\n<td>multipleBirthBoolean</td>\n<td>boolean</td>\n<td>Whether patient is part of a multiple birth</td>\n<td>false</td>\n</tr>\n<tr>\n<td>multipleBirthInteger</td>\n<td>integer</td>\n<td>Whether patient is part of a multiple birth</td>\n<td>false</td>\n</tr>\n<tr>\n<td>photo</td>\n<td>[{ Attachment }]</td>\n<td>Image of the patient</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact</td>\n<td>array</td>\n<td>A contact party (e.g. guardian, partner, friend) for the patient</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact-relationship\"</td>\n<td>[{ CodeableConcept }]</td>\n<td>The kind of relationship</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact-name</td>\n<td>{ HumanName }</td>\n<td>A name associated with the contact person</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact-telecom</td>\n<td>[{ ContactPoint }]</td>\n<td>A contact detail for the person</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact-address</td>\n<td>{ Address }</td>\n<td>Address for the contact person</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact-gender</td>\n<td>code</td>\n<td>male , female, other, unknown</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact-organization</td>\n<td>{ Reference(Organization) }</td>\n<td>Organization that is associated with the contact</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact-period</td>\n<td>{ Period }</td>\n<td>The period during which this contact person or organization is valid to be contacted relating to this patient</td>\n<td>false</td>\n</tr>\n<tr>\n<td>communication</td>\n<td>array</td>\n<td>A language which may be used to communicate with the patient about his or her health</td>\n<td>true</td>\n</tr>\n<tr>\n<td>communication-language</td>\n<td>{ CodeableConcept }</td>\n<td>The language which can be used to communicate with the patient about his or her health</td>\n<td>true</td>\n</tr>\n<tr>\n<td>communication-preferred</td>\n<td>boolean</td>\n<td>Language preference indicator</td>\n<td>false</td>\n</tr>\n<tr>\n<td>generalPractitioner</td>\n<td>[{Reference(Organization,Practitioner,PractitionerRole)}]</td>\n<td>Patient's nominated primary care provider</td>\n<td>false</td>\n</tr>\n<tr>\n<td>managingOrganization</td>\n<td>{ Reference(Organization) }</td>\n<td>Organization that is the custodian of the patient record</td>\n<td>false</td>\n</tr>\n<tr>\n<td>link</td>\n<td>array</td>\n<td>Link to another patient resource that concerns the same actual person</td>\n<td>false</td>\n</tr>\n<tr>\n<td>link-other</td>\n<td>{ Reference(Patient,RelatedPerson) }</td>\n<td>The other patient or related person resource that the link refers to</td>\n<td>false</td>\n</tr>\n<tr>\n<td>link-type</td>\n<td>code</td>\n<td></td>\n<td>false</td>\n</tr>\n<tr>\n<td>extension-race</td>\n<td>(Complex)</td>\n<td>Concepts classifying the person into a named category of humans sharing common history, traits, geographical origin or nationality.</td>\n<td>true</td>\n</tr>\n<tr>\n<td>extension-ethnicity</td>\n<td>(Complex)</td>\n<td>Concepts classifying the person into a named category of humans sharing common history, traits, geographical origin or nationality.</td>\n<td>true</td>\n</tr>\n<tr>\n<td>extension-birthsex</td>\n<td>code</td>\n<td>A code classifying the person's sex assigned at birth as specified by the Office of the National Coordinator for Health IT (ONC)</td>\n<td>true</td>\n</tr>\n<tr>\n<td>extension-genderIdentity</td>\n<td>CodeableConcept</td>\n<td>This extension provides concepts to describe the gender a person identifies as.</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Patient"],"host":["{{API_BASE_URL}}"],"query":[{"key":"_id","value":"93272"}],"variable":[]}},"response":[{"id":"25f8f763-b965-4280-8795-73e7a394337d","name":"Patient Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/Patient?_id=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","Patient"],"query":[{"key":"_id","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"85c-ydP/jsCnO9gFlDuF/ckeudMFFdE\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Mon, 28 Nov 2022 05:35:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-28T05:35:10.039Z\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Patient?_id=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"93272\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Patient/93272\",\n            \"resource\": {\n                \"resourceType\": \"Patient\",\n                \"id\": \"93272\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"extension\": [\n                    {\n                        \"extension\": [\n                            {\n                                \"url\": \"ombCategory\",\n                                \"valueCoding\": {\n                                    \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n                                    \"code\": \"2106-3\",\n                                    \"display\": \"White\"\n                                }\n                            },\n                            {\n                                \"url\": \"text\",\n                                \"valueString\": \"White\"\n                            }\n                        ],\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-race\"\n                    },\n                    {\n                        \"extension\": [\n                            {\n                                \"url\": \"ombCategory\",\n                                \"valueCoding\": {\n                                    \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n                                    \"code\": \"2186-5\",\n                                    \"display\": \"Not Hispanic or Latino\"\n                                }\n                            },\n                            {\n                                \"url\": \"text\",\n                                \"valueString\": \"Not Hispanic or Latino\"\n                            }\n                        ],\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity\"\n                    },\n                    {\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex\",\n                        \"valueCode\": \"M\"\n                    },\n                    {\n                        \"url\": \"http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName\",\n                        \"valueString\": \"Wood\"\n                    },\n                    {\n                        \"url\": \"http://hl7.org/fhir/StructureDefinition/patient-birthPlace\",\n                        \"valueAddress\": {\n                            \"city\": \"Irvine\",\n                            \"state\": \"CA\",\n                            \"country\": \"US\"\n                        }\n                    }\n                ],\n                \"identifier\": [\n                    {\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"93272\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"use\": \"official\",\n                        \"family\": \"Sorensen\",\n                        \"given\": [\n                            \"Noah\"\n                        ],\n                        \"prefix\": [\n                            \"Mr.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"555-851-3963\",\n                        \"use\": \"home\"\n                    }\n                ],\n                \"gender\": \"male\",\n                \"birthDate\": \"1979-09-17\",\n                \"deceasedBoolean\": false,\n                \"address\": [\n                    {\n                        \"use\": \"home\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"Suite 201\",\n                            \"4950 Barranca Pkwy\"\n                        ],\n                        \"city\": \"Sacramento\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95815\",\n                        \"country\": \"US\",\n                        \"period\": {\n                            \"start\": \"1979-09-17\"\n                        }\n                    },\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"Suite #200\",\n                            \"1420 River Park Drive\"\n                        ],\n                        \"city\": \"Sacramento\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95815\",\n                        \"country\": \"US\",\n                        \"period\": {\n                            \"start\": \"2004-01-12\"\n                        }\n                    }\n                ],\n                \"maritalStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n                            \"code\": \"M\",\n                            \"display\": \"M\"\n                        }\n                    ]\n                },\n                \"communication\": [\n                    {\n                        \"language\": {\n                            \"coding\": [\n                                {\n                                    \"system\": \"urn:ietf:bcp:47\",\n                                    \"code\": \"en-GB\",\n                                    \"display\": \"English (Great Britain)\"\n                                }\n                            ],\n                            \"text\": \"English (Great Britain)\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"668b4bab-2160-4e88-8fc3-8c9c69db1bf1"},{"name":"Patient Read","id":"2568a63b-2165-4cfe-89eb-6a58b802a0b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Patient/93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Patient/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/Patient/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual Patient by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Patient/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Is Optional</th>\n<th>Is Array</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID (String)</td>\n<td>The patient FHIR ID.</td>\n<td>false</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Patient","93272"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"4c3579a9-da6c-4f38-81a7-dca035d8e1a3","name":"Patient Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Patient/93272"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Mon, 28 Nov 2022 05:35:27 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Patient\",\n    \"id\": \"93272\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"extension\": [\n        {\n            \"extension\": [\n                {\n                    \"url\": \"ombCategory\",\n                    \"valueCoding\": {\n                        \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n                        \"code\": \"2106-3\",\n                        \"display\": \"White\"\n                    }\n                },\n                {\n                    \"url\": \"text\",\n                    \"valueString\": \"White\"\n                }\n            ],\n            \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-race\"\n        },\n        {\n            \"extension\": [\n                {\n                    \"url\": \"ombCategory\",\n                    \"valueCoding\": {\n                        \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n                        \"code\": \"2186-5\",\n                        \"display\": \"Not Hispanic or Latino\"\n                    }\n                },\n                {\n                    \"url\": \"text\",\n                    \"valueString\": \"Not Hispanic or Latino\"\n                }\n            ],\n            \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity\"\n        },\n        {\n            \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex\",\n            \"valueCode\": \"M\"\n        },\n        {\n            \"url\": \"http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName\",\n            \"valueString\": \"Wood\"\n        },\n        {\n            \"url\": \"http://hl7.org/fhir/StructureDefinition/patient-birthPlace\",\n            \"valueAddress\": {\n                \"city\": \"Irvine\",\n                \"state\": \"CA\",\n                \"country\": \"US\"\n            }\n        }\n    ],\n    \"identifier\": [\n        {\n            \"system\": \"https://stage.cozeva.com\",\n            \"value\": \"93272\"\n        }\n    ],\n    \"active\": true,\n    \"name\": [\n        {\n            \"use\": \"official\",\n            \"family\": \"Sorensen\",\n            \"given\": [\n                \"Noah\"\n            ],\n            \"prefix\": [\n                \"Mr.\"\n            ]\n        }\n    ],\n    \"telecom\": [\n        {\n            \"system\": \"phone\",\n            \"value\": \"555-851-3963\",\n            \"use\": \"home\"\n        }\n    ],\n    \"gender\": \"male\",\n    \"birthDate\": \"1979-09-17\",\n    \"deceasedBoolean\": false,\n    \"address\": [\n        {\n            \"use\": \"home\",\n            \"type\": \"both\",\n            \"line\": [\n                \"Suite 201\",\n                \"4950 Barranca Pkwy\"\n            ],\n            \"city\": \"Sacramento\",\n            \"state\": \"CA\",\n            \"postalCode\": \"95815\",\n            \"country\": \"US\",\n            \"period\": {\n                \"start\": \"1979-09-17\"\n            }\n        },\n        {\n            \"use\": \"work\",\n            \"type\": \"both\",\n            \"line\": [\n                \"Suite #200\",\n                \"1420 River Park Drive\"\n            ],\n            \"city\": \"Sacramento\",\n            \"state\": \"CA\",\n            \"postalCode\": \"95815\",\n            \"country\": \"US\",\n            \"period\": {\n                \"start\": \"2004-01-12\"\n            }\n        }\n    ],\n    \"maritalStatus\": {\n        \"coding\": [\n            {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n                \"code\": \"M\",\n                \"display\": \"M\"\n            }\n        ]\n    },\n    \"communication\": [\n        {\n            \"language\": {\n                \"coding\": [\n                    {\n                        \"system\": \"urn:ietf:bcp:47\",\n                        \"code\": \"en-GB\",\n                        \"display\": \"English (Great Britain)\"\n                    }\n                ],\n                \"text\": \"English (Great Britain)\"\n            }\n        }\n    ]\n}"}],"_postman_id":"2568a63b-2165-4cfe-89eb-6a58b802a0b6"}],"id":"50ff5c6b-a2ea-410f-b2d9-05f58cfc0e6c","description":"<p>The Patient Resource provides general demographic information about a person receiving health care services from a specific organization. Common demographic fields include patient id, patient name, gender, date of birth, address, phone, primary language and marital status.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>An identifier for this patient</td>\n</tr>\n<tr>\n<td>active</td>\n<td>boolean</td>\n<td>Whether this patient's record is in active use</td>\n</tr>\n<tr>\n<td>name</td>\n<td>HumanName</td>\n<td>A name associated with the patient</td>\n</tr>\n<tr>\n<td>telecom</td>\n<td>ContactPoint</td>\n<td>A contact detail for the individual</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>code</td>\n<td>male, female, other, unknown</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>date</td>\n<td>The date of birth for the individual</td>\n</tr>\n<tr>\n<td>deceased</td>\n<td>object</td>\n<td>Indicates if the individual is deceased or not</td>\n</tr>\n<tr>\n<td>deceased.deceasedBoolean</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>deceased.deceasedDateTime</td>\n<td>dateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>address</td>\n<td>Address</td>\n<td>address for the individual</td>\n</tr>\n<tr>\n<td>maritalStatus</td>\n<td>CodeableConcept</td>\n<td>Marital (civil) status of a patient</td>\n</tr>\n<tr>\n<td>multipleBirth</td>\n<td>object</td>\n<td>Whether patient is part of a multiple birth</td>\n</tr>\n<tr>\n<td>multipleBirth.multipleBirthBoolean</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>multipleBirth.multipleBirthInteger</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>photo</td>\n<td>Attachment</td>\n<td>Image of the Patient</td>\n</tr>\n<tr>\n<td>contact</td>\n<td>object</td>\n<td>A contact party (e.g. guardian, partner, friend) for the patient</td>\n</tr>\n<tr>\n<td>contact.relationship</td>\n<td>CodeableConcept</td>\n<td>The kind of relationship</td>\n</tr>\n<tr>\n<td>contact.name</td>\n<td>HumanName</td>\n<td>A name associated with the contact person</td>\n</tr>\n<tr>\n<td>contact.telecom</td>\n<td>ContactPoint</td>\n<td>A contact detail for the person</td>\n</tr>\n<tr>\n<td>contact.address</td>\n<td>Address</td>\n<td>Address for the contact person</td>\n</tr>\n<tr>\n<td>contact.gender</td>\n<td>code</td>\n<td>male , female, other, unknown</td>\n</tr>\n<tr>\n<td>contact.organization</td>\n<td>Reference(Organization)</td>\n<td>Organization that is associated with the contact</td>\n</tr>\n<tr>\n<td>contact.period</td>\n<td>Period</td>\n<td>The period during which this contact person or organization is valid to be contacted relating to this patient</td>\n</tr>\n<tr>\n<td>communication</td>\n<td>object</td>\n<td>A language which may be used to communicate with the patient about his or her health</td>\n</tr>\n<tr>\n<td>communication.language</td>\n<td>CodeableConcept</td>\n<td>The language which can be used to communicate with the patient about his or her health</td>\n</tr>\n<tr>\n<td>communication.preferred</td>\n<td>boolean</td>\n<td>Language preference indicator</td>\n</tr>\n<tr>\n<td>generalPractitioner</td>\n<td>Reference(Organization, Practitioner, PractitionerRole)</td>\n<td>Patient's nominated primary care provider</td>\n</tr>\n<tr>\n<td>managingOrganization</td>\n<td>Reference(Organization)</td>\n<td>Organization that is the custodian of the patient record</td>\n</tr>\n<tr>\n<td>link</td>\n<td>object</td>\n<td>Link to another patient resource that concerns the same actual person</td>\n</tr>\n<tr>\n<td>link.other</td>\n<td>Reference(Patient, RelatedPerson)</td>\n<td>The other patient or related person resource that the link refers to</td>\n</tr>\n<tr>\n<td>link.type</td>\n<td>code</td>\n<td>type of link</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"50ff5c6b-a2ea-410f-b2d9-05f58cfc0e6c"},{"name":"AllergyIntolerance","item":[{"name":"AllergyIntolerance Search","id":"f1a79bb7-f839-4eb0-a56c-d96fd72f0b2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/AllergyIntolerance?patient=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for AllergyIntolerances that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>External ids for this item</td>\n<td>flase</td>\n</tr>\n<tr>\n<td>clinicalStatus</td>\n<td>{ CodeableConcept</td>\n<td>active, inactive, resolved</td>\n<td>true</td>\n</tr>\n<tr>\n<td>verificationStatus</td>\n<td>{ CodeableConcept</td>\n<td>unconfirmed, confirmed, refuted, entered-in-error</td>\n<td>true</td>\n</tr>\n<tr>\n<td>type</td>\n<td>code</td>\n<td>allergy,intolerance - Underlying mechanism (if known)</td>\n<td>fasle</td>\n</tr>\n<tr>\n<td>category</td>\n<td>code</td>\n<td>food,medication,environment,biologic</td>\n<td>false</td>\n</tr>\n<tr>\n<td>criticality</td>\n<td>code</td>\n<td>low,high,unable-to-assess</td>\n<td>false</td>\n</tr>\n<tr>\n<td>code</td>\n<td>{ CodeableConcept</td>\n<td>Code that identifies the allergy or intolerance</td>\n<td>true</td>\n</tr>\n<tr>\n<td>patient</td>\n<td>{ Reference(Patient) }</td>\n<td>Who the sensitivity is for</td>\n<td>true</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>{ Reference(Encounter) }</td>\n<td>Encounter when the allergy or intolerance was asserted</td>\n<td>false</td>\n</tr>\n<tr>\n<td>onsetDateTime</td>\n<td>dateTime</td>\n<td>When allergy or intolerance was identified</td>\n<td>false</td>\n</tr>\n<tr>\n<td>onsetAge</td>\n<td>{ Age }</td>\n<td>When allergy or intolerance was identified</td>\n<td>false</td>\n</tr>\n<tr>\n<td>onsetPeriod</td>\n<td>{ Period }</td>\n<td>When allergy or intolerance was identified</td>\n<td>false</td>\n</tr>\n<tr>\n<td>onsetRange</td>\n<td>{ Range }</td>\n<td>When allergy or intolerance was identified</td>\n<td>false</td>\n</tr>\n<tr>\n<td>onsetString</td>\n<td>string</td>\n<td>When allergy or intolerance was identified</td>\n<td>false</td>\n</tr>\n<tr>\n<td>recordedDate</td>\n<td>dateTime</td>\n<td>Date first version of the resource instance was recorded</td>\n<td>false</td>\n</tr>\n<tr>\n<td>recorder</td>\n<td>{ Reference(Patient,Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>Who recorded the sensitivity</td>\n<td>false</td>\n</tr>\n<tr>\n<td>asserter</td>\n<td>{ Reference(Patient,Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>Source of the information about the allergy</td>\n<td>false</td>\n</tr>\n<tr>\n<td>lastOccurrence</td>\n<td>dateTime</td>\n<td>Date(/time) of last known occurrence of a reaction</td>\n<td>false</td>\n</tr>\n<tr>\n<td>note</td>\n<td>[{ Annotation }]</td>\n<td>Additional text not captured in other fields</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reaction\"</td>\n<td>array</td>\n<td>Adverse Reaction Events linked to exposure to substance</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reaction-substance</td>\n<td>{ CodeableConcept }</td>\n<td>Specific substance or pharmaceutical product considered to be responsible for event</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reaction-manifestation</td>\n<td>[{ CodeableConcept }]</td>\n<td>Clinical symptoms/signs associated with the Event</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reaction-description</td>\n<td>string</td>\n<td>Description of the event as a whole</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reaction-onset</td>\n<td>dateTime</td>\n<td>Date(/time) when manifestations showed</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reaction-severity</td>\n<td>code</td>\n<td>mild, moderate, severe (of event as a whole)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reaction-exposureRoute</td>\n<td>{ CodeableConcept }</td>\n<td>How the subject was exposed to the substance</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reaction-note</td>\n<td>[{ Annotation }]</td>\n<td>Text about event not captured in other fields</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","AllergyIntolerance"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93272"}],"variable":[]}},"response":[{"id":"7a7aed4b-b942-4dff-b850-48f83f03204e","name":"AllergyIntolerance Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/AllergyIntolerance?patient=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","AllergyIntolerance"],"query":[{"key":"patient","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"154b-NT/ewWBPEDlDkgGe1K4cYJ9fqMw\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Sat, 26 Nov 2022 13:51:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-26T13:51:04.098Z\",\n    \"total\": 7,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance?patient=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"23169\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance/23169\",\n            \"resource\": {\n                \"resourceType\": \"AllergyIntolerance\",\n                \"id\": \"23169\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"clinicalStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n                            \"code\": \"active\"\n                        }\n                    ]\n                },\n                \"verificationStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n                            \"code\": \"confirmed\"\n                        }\n                    ]\n                },\n                \"criticality\": \"low\",\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"419474003\",\n                            \"display\": \"Allergy to mould\"\n                        }\n                    ],\n                    \"text\": \"Allergy to mould\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"onsetDateTime\": \"1981-01-20T20:58:29.000Z\",\n                \"recordedDate\": \"1981-01-20T20:58:29.000Z\"\n            }\n        },\n        {\n            \"id\": \"23170\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance/23170\",\n            \"resource\": {\n                \"resourceType\": \"AllergyIntolerance\",\n                \"id\": \"23170\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"clinicalStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n                            \"code\": \"active\"\n                        }\n                    ]\n                },\n                \"verificationStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n                            \"code\": \"confirmed\"\n                        }\n                    ]\n                },\n                \"criticality\": \"low\",\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"232350006\",\n                            \"display\": \"House dust mite allergy\"\n                        }\n                    ],\n                    \"text\": \"House dust mite allergy\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"onsetDateTime\": \"1981-01-20T20:58:29.000Z\",\n                \"recordedDate\": \"1981-01-20T20:58:29.000Z\"\n            }\n        },\n        {\n            \"id\": \"23171\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance/23171\",\n            \"resource\": {\n                \"resourceType\": \"AllergyIntolerance\",\n                \"id\": \"23171\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"clinicalStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n                            \"code\": \"active\"\n                        }\n                    ]\n                },\n                \"verificationStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n                            \"code\": \"confirmed\"\n                        }\n                    ]\n                },\n                \"criticality\": \"low\",\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"232347008\",\n                            \"display\": \"Dander (animal) allergy\"\n                        }\n                    ],\n                    \"text\": \"Dander (animal) allergy\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"onsetDateTime\": \"1981-01-20T20:58:29.000Z\",\n                \"recordedDate\": \"1981-01-20T20:58:29.000Z\"\n            }\n        },\n        {\n            \"id\": \"23172\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance/23172\",\n            \"resource\": {\n                \"resourceType\": \"AllergyIntolerance\",\n                \"id\": \"23172\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"clinicalStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n                            \"code\": \"active\"\n                        }\n                    ]\n                },\n                \"verificationStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n                            \"code\": \"confirmed\"\n                        }\n                    ]\n                },\n                \"criticality\": \"low\",\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"418689008\",\n                            \"display\": \"Allergy to grass pollen\"\n                        }\n                    ],\n                    \"text\": \"Allergy to grass pollen\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"onsetDateTime\": \"1981-01-20T20:58:29.000Z\",\n                \"recordedDate\": \"1981-01-20T20:58:29.000Z\"\n            }\n        },\n        {\n            \"id\": \"23173\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance/23173\",\n            \"resource\": {\n                \"resourceType\": \"AllergyIntolerance\",\n                \"id\": \"23173\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"clinicalStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n                            \"code\": \"active\"\n                        }\n                    ]\n                },\n                \"verificationStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n                            \"code\": \"confirmed\"\n                        }\n                    ]\n                },\n                \"criticality\": \"low\",\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"419263009\",\n                            \"display\": \"Allergy to tree pollen\"\n                        }\n                    ],\n                    \"text\": \"Allergy to tree pollen\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"onsetDateTime\": \"1981-01-20T20:58:29.000Z\",\n                \"recordedDate\": \"1981-01-20T20:58:29.000Z\"\n            }\n        },\n        {\n            \"id\": \"23174\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance/23174\",\n            \"resource\": {\n                \"resourceType\": \"AllergyIntolerance\",\n                \"id\": \"23174\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"clinicalStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n                            \"code\": \"active\"\n                        }\n                    ]\n                },\n                \"verificationStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n                            \"code\": \"confirmed\"\n                        }\n                    ]\n                },\n                \"criticality\": \"low\",\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"300913006\",\n                            \"display\": \"Shellfish allergy\"\n                        }\n                    ],\n                    \"text\": \"Shellfish allergy\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"onsetDateTime\": \"1981-01-20T20:58:29.000Z\",\n                \"recordedDate\": \"1981-01-20T20:58:29.000Z\"\n            }\n        },\n        {\n            \"id\": \"23175\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance/23175\",\n            \"resource\": {\n                \"resourceType\": \"AllergyIntolerance\",\n                \"id\": \"23175\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"clinicalStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n                            \"code\": \"active\"\n                        }\n                    ]\n                },\n                \"verificationStatus\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n                            \"code\": \"confirmed\"\n                        }\n                    ]\n                },\n                \"criticality\": \"high\",\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"91934008\",\n                            \"display\": \"Allergy to nut\"\n                        }\n                    ],\n                    \"text\": \"Allergy to nut\"\n                },\n                \"patient\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"onsetDateTime\": \"1981-01-20T20:58:29.000Z\",\n                \"recordedDate\": \"1981-01-20T20:58:29.000Z\",\n                \"reaction\": [\n                    {\n                        \"manifestation\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://snomed.info/sct\",\n                                        \"code\": \"39579001\",\n                                        \"display\": \"Anaphylactic reaction\"\n                                    }\n                                ],\n                                \"text\": \"Anaphylactic reaction\"\n                            }\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"f1a79bb7-f839-4eb0-a56c-d96fd72f0b2e"},{"name":"AllergyIntolerence Read","id":"adcf8c78-b3ce-481d-afef-ccb1bf454708","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/AllergyIntolerance/23175","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual AllergyIntolerance by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/AllergyIntolerance/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Is Optional</th>\n<th>Is Array</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID (String)</td>\n<td>The AllergyIntolerance ID.</td>\n<td>false</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","AllergyIntolerance","23175"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"800f3fc2-7990-4315-921f-ca982e03d828","name":"AllergyIntolerence Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/AllergyIntolerance/23175"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"772"},{"key":"Date","value":"Tue, 29 Nov 2022 07:47:57 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"AllergyIntolerance\",\n    \"id\": \"23175\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"clinicalStatus\": {\n        \"coding\": [\n            {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n                \"code\": \"active\"\n            }\n        ]\n    },\n    \"verificationStatus\": {\n        \"coding\": [\n            {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n                \"code\": \"confirmed\"\n            }\n        ]\n    },\n    \"criticality\": \"high\",\n    \"code\": {\n        \"coding\": [\n            {\n                \"system\": \"http://snomed.info/sct\",\n                \"code\": \"91934008\",\n                \"display\": \"Allergy to nut\"\n            }\n        ],\n        \"text\": \"Allergy to nut\"\n    },\n    \"patient\": {\n        \"reference\": \"Patient/93272\"\n    },\n    \"onsetDateTime\": \"1981-01-20T20:58:29.000Z\",\n    \"recordedDate\": \"1981-01-20T20:58:29.000Z\",\n    \"reaction\": [\n        {\n            \"manifestation\": [\n                {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"39579001\",\n                            \"display\": \"Anaphylactic reaction\"\n                        }\n                    ],\n                    \"text\": \"Anaphylactic reaction\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"adcf8c78-b3ce-481d-afef-ccb1bf454708"}],"id":"da254603-e108-482d-b2f1-73f3605dc946","description":"<p>The AllergyIntolerance resource provides the clinical assessment of a patient’s allergy or intolerance when exposed to a specific substance or class of substance including information about the adverse reaction. Substances include, but are not limited to, medications, foods, environment (such as plants and animals), and insect bites. The Allergy/Intolerance list exists as a patient safety tool for clinical decision support when ordering medications and nutrition or guiding clinical treatments. This resource does not include adverse reactions or adverse events which are expected for the circumstance such as an over-dose or drug-drug interaction or an error/failure in the clinical process</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>External ids for this item</td>\n</tr>\n<tr>\n<td>clinicalStatus</td>\n<td>CodeableConcept</td>\n<td>active, inactive, resolved</td>\n</tr>\n<tr>\n<td>verificationStatus</td>\n<td>CodeableConcept</td>\n<td>unconfirmed, confirmed, refuted, entered-in-error</td>\n</tr>\n<tr>\n<td>type</td>\n<td>code</td>\n<td>allergy,intolerance - Underlying mechanism (if known)</td>\n</tr>\n<tr>\n<td>category</td>\n<td>code</td>\n<td>food,medication,environment,biologic</td>\n</tr>\n<tr>\n<td>criticality</td>\n<td>code</td>\n<td>low,high,unable-to-assess</td>\n</tr>\n<tr>\n<td>code</td>\n<td>CodeableConcept</td>\n<td>Code that identifies the allergy or intolerance</td>\n</tr>\n<tr>\n<td>patient</td>\n<td>Reference(Patient)</td>\n<td>Who the sensitivity is for</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>Reference(Encounter)</td>\n<td>Encounter when the allergy or intolerance was asserted</td>\n</tr>\n<tr>\n<td>onset</td>\n<td>object</td>\n<td>When allergy or intolerance was identified</td>\n</tr>\n<tr>\n<td>onset.onsetDateTime</td>\n<td>dateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>onset.onsetAge</td>\n<td>Age</td>\n<td></td>\n</tr>\n<tr>\n<td>onset.onsetPeriod</td>\n<td>Period</td>\n<td></td>\n</tr>\n<tr>\n<td>onset.onsetRange</td>\n<td>Range</td>\n<td></td>\n</tr>\n<tr>\n<td>onset.onsetString</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>recordedDate</td>\n<td>dateTime</td>\n<td>Date first version of the resource instance was recorded</td>\n</tr>\n<tr>\n<td>recorder</td>\n<td>Reference(Patient, Practitioner, PractitionerRole,   RelatedPerson)</td>\n<td>Who recorded the sensitivity</td>\n</tr>\n<tr>\n<td>asserter</td>\n<td>Reference(Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>Source of the information about the allergy</td>\n</tr>\n<tr>\n<td>lastOccurrence</td>\n<td>dateTime</td>\n<td>Date(/time) of last known occurrence of a reaction</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Annotation</td>\n<td>Additional text not captured in other fields</td>\n</tr>\n<tr>\n<td>reaction</td>\n<td>object</td>\n<td>Adverse Reaction Events linked to exposure to substance</td>\n</tr>\n<tr>\n<td>reaction.substance</td>\n<td>CodeableConcept</td>\n<td>Specific substance or pharmaceutical product considered to be responsible for event</td>\n</tr>\n<tr>\n<td>reaction.manifestation</td>\n<td>CodeableConcept</td>\n<td>Clinical symptoms/signs associated with the Event</td>\n</tr>\n<tr>\n<td>reaction.description</td>\n<td>string</td>\n<td>Description of the event as a whole</td>\n</tr>\n<tr>\n<td>reaction.onset</td>\n<td>dateTime</td>\n<td>Date(/time) when manifestations showed</td>\n</tr>\n<tr>\n<td>reaction.severity</td>\n<td>code</td>\n<td>mild, moderate, severe (of event as a whole)</td>\n</tr>\n<tr>\n<td>reaction.exposureRoute</td>\n<td>CodeableConcept</td>\n<td>How the subject was exposed to the substance</td>\n</tr>\n<tr>\n<td>reaction.note</td>\n<td>Annotation</td>\n<td>Text about event not captured in other fields</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"da254603-e108-482d-b2f1-73f3605dc946"},{"name":"DiagnosticReport","item":[{"name":"DiagnosticReport Search","id":"850e667c-0829-4f50-ba5d-daf406a27b74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/DiagnosticReport?patient=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/DiagnosticReport?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/DiagnosticReport?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for DiagnosticReport that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/DiagnosticReport?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>Business identifier for report</td>\n<td>false</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>[{ Reference(CarePlan,ImmunizationRecommendation,MedicationRequest,NutritionOrder,ServiceRequest) }]</td>\n<td>What was requested</td>\n<td>false</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>registered,partial,preliminary,final</td>\n<td>true</td>\n</tr>\n<tr>\n<td>category</td>\n<td>[{ CodeableConcept }]</td>\n<td>Service category</td>\n<td>true</td>\n</tr>\n<tr>\n<td>code</td>\n<td>{ CodeableConcept }</td>\n<td>Name/Code for this diagnostic report</td>\n<td>true</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>{ Reference(BiologicallyDerivedProduct,Device,Group,Location,Medication,Organization,Patient,Practitioner,Procedure,Substance) }</td>\n<td>The subject of the report - usually, but not always, the patient</td>\n<td>true</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>{ Reference(Encounter) }</td>\n<td>Health care event when test ordered effective[x]: Clinically relevant time/time-period for report. One of these 2:</td>\n<td>true</td>\n</tr>\n<tr>\n<td>effectiveDateTime</td>\n<td>dateTime</td>\n<td></td>\n<td>true</td>\n</tr>\n<tr>\n<td>effectivePeriod</td>\n<td>{ Period }</td>\n<td></td>\n<td>false</td>\n</tr>\n<tr>\n<td>issued</td>\n<td>instant</td>\n<td>DateTime this version was made</td>\n<td>true</td>\n</tr>\n<tr>\n<td>performer</td>\n<td>[{ Reference(CareTeam,Organization,Practitioner,PractitionerRole) }]</td>\n<td>Responsible Diagnostic Service</td>\n<td>true</td>\n</tr>\n<tr>\n<td>resultsInterpreter</td>\n<td>[{ Reference(CareTeam,Organization,Practitioner,PractitionerRole) }]</td>\n<td>Primary result interpreter</td>\n<td>false</td>\n</tr>\n<tr>\n<td>specimen</td>\n<td>[{ Reference(Specimen) }]</td>\n<td>Specimens this report is based on</td>\n<td>false</td>\n</tr>\n<tr>\n<td>result</td>\n<td>[{ Reference(Observation) }]</td>\n<td>Observations</td>\n<td>true</td>\n</tr>\n<tr>\n<td>imagingStudy</td>\n<td>Reference(ImagingStudy)</td>\n<td>Reference to full details of imaging associated with the diagnostic report</td>\n<td>false</td>\n</tr>\n<tr>\n<td>note</td>\n<td>[{ Annotation }]</td>\n<td>Comments about the diagnostic report</td>\n<td>false</td>\n</tr>\n<tr>\n<td>study</td>\n<td>[{ Reference(GenomicStudy,ImagingStudy) }]</td>\n<td>Reference to full details of an analysis associated with the diagnostic report</td>\n<td>false</td>\n</tr>\n<tr>\n<td>supportingInfo</td>\n<td>array</td>\n<td>Additional information supporting the diagnostic report</td>\n<td>false</td>\n</tr>\n<tr>\n<td>supportingInfo-type</td>\n<td>{ CodeableConcept }</td>\n<td>Supporting information role code icon</td>\n<td>false</td>\n</tr>\n<tr>\n<td>supportingInfo-reference</td>\n<td>{ Reference(Citation,DiagnosticReport,Observation,Procedure) }</td>\n<td>Supporting information reference</td>\n<td>false</td>\n</tr>\n<tr>\n<td>media</td>\n<td>array</td>\n<td>Key images or data associated with this report</td>\n<td>false</td>\n</tr>\n<tr>\n<td>media-comment</td>\n<td>string</td>\n<td>Comment about the image or data (e.g. explanation)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>media-link</td>\n<td>{ Reference(DocumentReference) }</td>\n<td>Reference to the image or data source</td>\n<td>false</td>\n</tr>\n<tr>\n<td>composition</td>\n<td>{ Reference(Composition) }</td>\n<td>Reference to a Composition resource for the DiagnosticReport structure</td>\n<td>false</td>\n</tr>\n<tr>\n<td>conclusion</td>\n<td>string</td>\n<td>Clinical conclusion (interpretation) of test results</td>\n<td>false</td>\n</tr>\n<tr>\n<td>conclusionCode</td>\n<td>[{ CodeableConcept }]</td>\n<td>Codes for the clinical conclusion of test results</td>\n<td>false</td>\n</tr>\n<tr>\n<td>presentedForm</td>\n<td>[{ Attachment }]</td>\n<td>Entire report as issued</td>\n<td>true</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>code</td>\n<td>Mime type of the content, with charset etc.</td>\n<td>true</td>\n</tr>\n<tr>\n<td>data</td>\n<td>base64Binary</td>\n<td>Data inline, base64ed</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","DiagnosticReport"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93272"}],"variable":[]}},"response":[{"id":"27097497-1776-455e-a78d-d226228b0f38","name":"DiagnosticReport Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/DiagnosticReport?patient=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","DiagnosticReport"],"query":[{"key":"patient","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"14db-3irsGOJPdWjYBkdsyO9Cn6yP9ng\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Tue, 29 Nov 2022 07:11:07 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-29T07:11:07.846Z\",\n    \"total\": 4,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/DiagnosticReport?patient=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"32149\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/DiagnosticReport/32149\",\n            \"resource\": {\n                \"resourceType\": \"DiagnosticReport\",\n                \"id\": \"32149\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"final\",\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://loinc.org\",\n                                \"code\": \"LP7839-6\",\n                                \"display\": \"Pathology\"\n                            }\n                        ]\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://loinc.org\",\n                            \"code\": \"57698-3\",\n                            \"display\": \"Lipid Panel\"\n                        }\n                    ],\n                    \"text\": \"Lipid Panel\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48691\"\n                },\n                \"effectiveDateTime\": \"2010-11-29T20:58:29.000Z\",\n                \"issued\": \"2010-11-29T20:58:30.000Z\",\n                \"performer\": [\n                    {\n                        \"reference\": \"Practitioner/52251\"\n                    }\n                ],\n                \"presentedForm\": [\n                    {\n                        \"contentType\": \"text/plain\",\n                        \"data\": \"CjIwMTAtMTEtMjkKCiMgQ2hpZWYgQ29tcGxhaW50IApObyBjb21wbGFpbnRzLiAKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKTXIuIE5vYWggU29yZW5zZW4gIGlzIGEgNDMgeWVhciBvbGQgV2hpdGUgbWFsZS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBhIG5ldmVyIHNtb2tlci4KCiMgQWxsZXJnaWVzClBhdGllbnQgaGFzIHRoZSBmb2xsb3dpbmcgYWxsZXJnaWVzIC0gQWxsZXJneSB0byBncmFzcyBwb2xsZW4sQWxsZXJneSB0byBtb3VsZCxBbGxlcmd5IHRvIG51dCxBbGxlcmd5IHRvIHRyZWUgcG9sbGVuLERhbmRlciAoYW5pbWFsKSBhbGxlcmd5LEhvdXNlIGR1c3QgbWl0ZSBhbGxlcmd5LFNoZWxsZmlzaCBhbGxlcmd5CgojTWVkaWNhdGlvbnMKTm8gQWN0aXZlIE1lZGljYXRpb25zLgoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgojIFBsYW4K\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"32150\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/DiagnosticReport/32150\",\n            \"resource\": {\n                \"resourceType\": \"DiagnosticReport\",\n                \"id\": \"32150\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"final\",\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://loinc.org\",\n                                \"code\": \"LP7839-6\",\n                                \"display\": \"Pathology\"\n                            }\n                        ]\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://loinc.org\",\n                            \"code\": \"57698-3\",\n                            \"display\": \"Lipid Panel\"\n                        }\n                    ],\n                    \"text\": \"Lipid Panel\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48695\"\n                },\n                \"effectiveDateTime\": \"2013-12-02T20:58:29.000Z\",\n                \"issued\": \"2013-12-02T20:58:30.000Z\",\n                \"performer\": [\n                    {\n                        \"reference\": \"Practitioner/52251\"\n                    }\n                ],\n                \"presentedForm\": [\n                    {\n                        \"contentType\": \"text/plain\",\n                        \"data\": \"CjIwMTMtMTItMDIKCiMgQ2hpZWYgQ29tcGxhaW50IApObyBjb21wbGFpbnRzLiAKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKTXIuIE5vYWggU29yZW5zZW4gIGlzIGEgNDMgeWVhciBvbGQgV2hpdGUgbWFsZS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBhIG5ldmVyIHNtb2tlci4KCiMgQWxsZXJnaWVzClBhdGllbnQgaGFzIHRoZSBmb2xsb3dpbmcgYWxsZXJnaWVzIC0gQWxsZXJneSB0byBncmFzcyBwb2xsZW4sQWxsZXJneSB0byBtb3VsZCxBbGxlcmd5IHRvIG51dCxBbGxlcmd5IHRvIHRyZWUgcG9sbGVuLERhbmRlciAoYW5pbWFsKSBhbGxlcmd5LEhvdXNlIGR1c3QgbWl0ZSBhbGxlcmd5LFNoZWxsZmlzaCBhbGxlcmd5CgojTWVkaWNhdGlvbnMKTm8gQWN0aXZlIE1lZGljYXRpb25zLgoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgojIFBsYW4K\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"32151\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/DiagnosticReport/32151\",\n            \"resource\": {\n                \"resourceType\": \"DiagnosticReport\",\n                \"id\": \"32151\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"final\",\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://loinc.org\",\n                                \"code\": \"LP7839-6\",\n                                \"display\": \"Pathology\"\n                            }\n                        ]\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://loinc.org\",\n                            \"code\": \"58410-2\",\n                            \"display\": \"Complete blood count (hemogram) panel - Blood by Automated count\"\n                        }\n                    ],\n                    \"text\": \"Complete blood count (hemogram) panel - Blood by Automated count\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48695\"\n                },\n                \"effectiveDateTime\": \"2013-12-02T20:58:29.000Z\",\n                \"issued\": \"2013-12-02T20:58:30.000Z\",\n                \"performer\": [\n                    {\n                        \"reference\": \"Practitioner/52251\"\n                    }\n                ],\n                \"presentedForm\": [\n                    {\n                        \"contentType\": \"text/plain\",\n                        \"data\": \"CjIwMTMtMTItMDIKCiMgQ2hpZWYgQ29tcGxhaW50IApObyBjb21wbGFpbnRzLiAKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKTXIuIE5vYWggU29yZW5zZW4gIGlzIGEgNDMgeWVhciBvbGQgV2hpdGUgbWFsZS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBhIG5ldmVyIHNtb2tlci4KCiMgQWxsZXJnaWVzClBhdGllbnQgaGFzIHRoZSBmb2xsb3dpbmcgYWxsZXJnaWVzIC0gQWxsZXJneSB0byBncmFzcyBwb2xsZW4sQWxsZXJneSB0byBtb3VsZCxBbGxlcmd5IHRvIG51dCxBbGxlcmd5IHRvIHRyZWUgcG9sbGVuLERhbmRlciAoYW5pbWFsKSBhbGxlcmd5LEhvdXNlIGR1c3QgbWl0ZSBhbGxlcmd5LFNoZWxsZmlzaCBhbGxlcmd5CgojTWVkaWNhdGlvbnMKTm8gQWN0aXZlIE1lZGljYXRpb25zLgoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgojIFBsYW4K\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"32152\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/DiagnosticReport/32152\",\n            \"resource\": {\n                \"resourceType\": \"DiagnosticReport\",\n                \"id\": \"32152\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"final\",\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://loinc.org\",\n                                \"code\": \"LP7839-6\",\n                                \"display\": \"Pathology\"\n                            }\n                        ]\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://loinc.org\",\n                            \"code\": \"57698-3\",\n                            \"display\": \"Lipid Panel\"\n                        }\n                    ],\n                    \"text\": \"Lipid Panel\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48696\"\n                },\n                \"effectiveDateTime\": \"2016-12-05T20:58:29.000Z\",\n                \"issued\": \"2016-12-05T20:58:30.000Z\",\n                \"performer\": [\n                    {\n                        \"reference\": \"Practitioner/52251\"\n                    }\n                ],\n                \"presentedForm\": [\n                    {\n                        \"contentType\": \"text/plain\",\n                        \"data\": \"CjIwMTYtMTItMDUKCiMgQ2hpZWYgQ29tcGxhaW50IApObyBjb21wbGFpbnRzLiAKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKTXIuIE5vYWggU29yZW5zZW4gIGlzIGEgNDMgeWVhciBvbGQgV2hpdGUgbWFsZS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBhIG5ldmVyIHNtb2tlci4KCiMgQWxsZXJnaWVzClBhdGllbnQgaGFzIHRoZSBmb2xsb3dpbmcgYWxsZXJnaWVzIC0gQWxsZXJneSB0byBncmFzcyBwb2xsZW4sQWxsZXJneSB0byBtb3VsZCxBbGxlcmd5IHRvIG51dCxBbGxlcmd5IHRvIHRyZWUgcG9sbGVuLERhbmRlciAoYW5pbWFsKSBhbGxlcmd5LEhvdXNlIGR1c3QgbWl0ZSBhbGxlcmd5LFNoZWxsZmlzaCBhbGxlcmd5CgojTWVkaWNhdGlvbnMKTm8gQWN0aXZlIE1lZGljYXRpb25zLgoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgojIFBsYW4K\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"850e667c-0829-4f50-ba5d-daf406a27b74"},{"name":"DiagnosticReport Read","id":"5ceace3f-b4eb-4f43-94eb-ca53437b331b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/DiagnosticReport/32149","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/DiagnosticReport/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/DiagnosticReport/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual DiagnosticReport by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/DiagnosticReport/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>String</td>\n<td>The Diagnostic Report FHIR ID.</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","DiagnosticReport","32149"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"76fecc4f-c53c-4940-a4c6-49ecdace6080","name":"DiagnosticReport Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/DiagnosticReport/32149"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Tue, 29 Nov 2022 07:11:54 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"DiagnosticReport\",\n    \"id\": \"32149\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"status\": \"final\",\n    \"category\": [\n        {\n            \"coding\": [\n                {\n                    \"system\": \"http://loinc.org\",\n                    \"code\": \"LP7839-6\",\n                    \"display\": \"Pathology\"\n                }\n            ]\n        }\n    ],\n    \"code\": {\n        \"coding\": [\n            {\n                \"system\": \"http://loinc.org\",\n                \"code\": \"57698-3\",\n                \"display\": \"Lipid Panel\"\n            }\n        ],\n        \"text\": \"Lipid Panel\"\n    },\n    \"subject\": {\n        \"reference\": \"Patient/93272\"\n    },\n    \"encounter\": {\n        \"reference\": \"Encounter/48691\"\n    },\n    \"effectiveDateTime\": \"2010-11-29T20:58:29.000Z\",\n    \"issued\": \"2010-11-29T20:58:30.000Z\",\n    \"performer\": [\n        {\n            \"reference\": \"Practitioner/52251\"\n        }\n    ],\n    \"presentedForm\": [\n        {\n            \"contentType\": \"text/plain\",\n            \"data\": \"CjIwMTAtMTEtMjkKCiMgQ2hpZWYgQ29tcGxhaW50IApObyBjb21wbGFpbnRzLiAKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKTXIuIE5vYWggU29yZW5zZW4gIGlzIGEgNDMgeWVhciBvbGQgV2hpdGUgbWFsZS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBhIG5ldmVyIHNtb2tlci4KCiMgQWxsZXJnaWVzClBhdGllbnQgaGFzIHRoZSBmb2xsb3dpbmcgYWxsZXJnaWVzIC0gQWxsZXJneSB0byBncmFzcyBwb2xsZW4sQWxsZXJneSB0byBtb3VsZCxBbGxlcmd5IHRvIG51dCxBbGxlcmd5IHRvIHRyZWUgcG9sbGVuLERhbmRlciAoYW5pbWFsKSBhbGxlcmd5LEhvdXNlIGR1c3QgbWl0ZSBhbGxlcmd5LFNoZWxsZmlzaCBhbGxlcmd5CgojTWVkaWNhdGlvbnMKTm8gQWN0aXZlIE1lZGljYXRpb25zLgoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgojIFBsYW4K\"\n        }\n    ]\n}"}],"_postman_id":"5ceace3f-b4eb-4f43-94eb-ca53437b331b"}],"id":"19c482ee-73d8-41b5-b22d-8d38c0648ff2","description":"<p>The DiagnosticReport resource typically provides a textual set of information and interpretation after performing a diagnostic service or procedure such as a Radiology or Pathology or Cardiology report. A diagnostic report is the set of information that is typically provided by a diagnostic service when investigations are complete. The information includes a mix of atomic results, text reports, images, and codes. The DiagnosticReport resource has information about the diagnostic report itself, and about the subject and, in the case of laboratory tests, the specimen of the report.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>Business identifier for report</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>Reference(CarePlan,ImmunizationRecommendation,MedicationRequest,NutritionOrder,ServiceRequest)</td>\n<td>What was requested</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>registered,partial,preliminary,final</td>\n</tr>\n<tr>\n<td>category</td>\n<td>CodeableConcept</td>\n<td>Service category</td>\n</tr>\n<tr>\n<td>code</td>\n<td>CodeableConcept</td>\n<td>Name/Code for this diagnostic report</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>Reference(BiologicallyDerivedProduct,Device,Group,Location,Medication,Organization,Patient,Practitioner,Procedure,Substance)</td>\n<td>The subject of the report - usually, but not always, the patient</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>Reference(Encounter)</td>\n<td>Health care event when test ordered</td>\n</tr>\n<tr>\n<td>effective</td>\n<td>object</td>\n<td>Clinically relevant time/time-period for report</td>\n</tr>\n<tr>\n<td>effective.effectiveDateTime</td>\n<td>dateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>effective.effectivePeriod</td>\n<td>Period</td>\n<td></td>\n</tr>\n<tr>\n<td>issued</td>\n<td>instant</td>\n<td>DateTime this version was made</td>\n</tr>\n<tr>\n<td>performer</td>\n<td>Reference(CareTeam, Organization,Practitioner, PractitionerRole)</td>\n<td>Responsible Diagnostic Service</td>\n</tr>\n<tr>\n<td>resultsInterpreter</td>\n<td>Reference(CareTeam,Organization,Practitioner,PractitionerRole)</td>\n<td>Primary result interpreter</td>\n</tr>\n<tr>\n<td>specimen</td>\n<td>Reference(Specimen)</td>\n<td>Specimens this report is based on</td>\n</tr>\n<tr>\n<td>result</td>\n<td>Reference(Observation)</td>\n<td>Observations</td>\n</tr>\n<tr>\n<td>imagingStudy</td>\n<td>Reference(ImagingStudy)</td>\n<td>Reference to full details of imaging associated with the diagnostic report</td>\n</tr>\n<tr>\n<td>media</td>\n<td>object</td>\n<td>Key images or data associated with this report</td>\n</tr>\n<tr>\n<td>media.comment</td>\n<td>string</td>\n<td>Comment about the image or data (e.g. explanation)</td>\n</tr>\n<tr>\n<td>media.link</td>\n<td>Reference(DocumentReference)</td>\n<td>Reference to the image or data source</td>\n</tr>\n<tr>\n<td>conclusion</td>\n<td>string</td>\n<td>Clinical conclusion (interpretation) of test results</td>\n</tr>\n<tr>\n<td>conclusionCode</td>\n<td>CodeableConcept</td>\n<td>Codes for the clinical conclusion of test results</td>\n</tr>\n<tr>\n<td>presentedForm</td>\n<td>Attachment</td>\n<td>Entire report as issued</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"19c482ee-73d8-41b5-b22d-8d38c0648ff2"},{"name":"DocumentReference","item":[{"name":"DocumentReference Search","id":"b2e43838-08c1-4452-ac4d-d303273c2412","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/DocumentReference?patient=93677","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/DocumentReference?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/DocumentReference?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for DocumentReference that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/DocumentReference?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>masterIdentifier</td>\n<td>{ Identifier }</td>\n<td>Master Version Specific Identifier</td>\n<td>False</td>\n</tr>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>Other identifiers for the document</td>\n<td>True</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>current,superseded,entered-in-error</td>\n<td>True</td>\n</tr>\n<tr>\n<td>docStatus</td>\n<td>code</td>\n<td>preliminary,final,amended,entered-in-error</td>\n<td>False</td>\n</tr>\n<tr>\n<td>type</td>\n<td>{ CodeableConcept }</td>\n<td>Kind of document (LOINC if possible)</td>\n<td>True</td>\n</tr>\n<tr>\n<td>category</td>\n<td>[{ CodeableConcept }]</td>\n<td>Categorization of document</td>\n<td>True</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>{ Reference(Device,Group,Patient,Practitioner) }</td>\n<td>Who/what is the subject of the document</td>\n<td>True</td>\n</tr>\n<tr>\n<td>date</td>\n<td>instant</td>\n<td>When this document reference was created</td>\n<td>True</td>\n</tr>\n<tr>\n<td>author</td>\n<td>[{ Reference(Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson) }]</td>\n<td>Who and/or what authored the document</td>\n<td>True</td>\n</tr>\n<tr>\n<td>authenticator</td>\n<td>{ Reference(Organization,Practitioner,PractitionerRole) }</td>\n<td>Who/what authenticated the document</td>\n<td>False</td>\n</tr>\n<tr>\n<td>custodian</td>\n<td>{ Reference(Organization) }</td>\n<td>Organization which maintains the document</td>\n<td>True</td>\n</tr>\n<tr>\n<td>relatesTo</td>\n<td>array</td>\n<td>Relationships to other documents</td>\n<td>False</td>\n</tr>\n<tr>\n<td>relatesTo-code</td>\n<td>code</td>\n<td>replaces,transforms,signs,appends</td>\n<td>False</td>\n</tr>\n<tr>\n<td>relatesTo-target</td>\n<td>{ Reference(DocumentReference) }</td>\n<td>Target of the relationship</td>\n<td>False</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Human-readable description</td>\n<td>False</td>\n</tr>\n<tr>\n<td>securityLabel</td>\n<td>[{ CodeableConcept }]</td>\n<td>Document security-tags</td>\n<td>False</td>\n</tr>\n<tr>\n<td>content</td>\n<td>array</td>\n<td>Document referenced</td>\n<td>True</td>\n</tr>\n<tr>\n<td>content-attachment</td>\n<td>{ Attachment }</td>\n<td>Where to access the document</td>\n<td>True</td>\n</tr>\n<tr>\n<td>content-format</td>\n<td>{ Coding }</td>\n<td>Format,content rules for the document</td>\n<td>True</td>\n</tr>\n<tr>\n<td>context</td>\n<td>array</td>\n<td>Clinical context of document</td>\n<td>True</td>\n</tr>\n<tr>\n<td>context-encounter</td>\n<td>[{ Reference(Encounter,EpisodeOfCare) }]</td>\n<td>Context of the document  content</td>\n<td>True</td>\n</tr>\n<tr>\n<td>context-event</td>\n<td>[{ CodeableConcept }]</td>\n<td>Main clinical acts documented</td>\n<td>False</td>\n</tr>\n<tr>\n<td>context-period</td>\n<td>{ Period }</td>\n<td>Time of service that is being documented</td>\n<td>True</td>\n</tr>\n<tr>\n<td>context-facilityType</td>\n<td>{ CodeableConcept }</td>\n<td>Kind of facility where patient was seen</td>\n<td>False</td>\n</tr>\n<tr>\n<td>context-practiceSetting</td>\n<td>{ CodeableConcept }</td>\n<td>Additional details about where the content was created (e.g. clinical specialty)</td>\n<td>False</td>\n</tr>\n<tr>\n<td>context-sourcePatientInfo</td>\n<td>{ Reference(Patient) }</td>\n<td>Patient demographics from source</td>\n<td>False</td>\n</tr>\n<tr>\n<td>context-related</td>\n<td>[{ Reference(Any) }]</td>\n<td>Related identifiers or resources</td>\n<td>False</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","DocumentReference"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93677"}],"variable":[]}},"response":[{"id":"df1233dd-a29f-4d4c-9aa6-11675e30d855","name":"DocumentReference Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/DocumentReference?patient=93677","host":["{{API_BASE_URL}}"],"path":["4_0_0","DocumentReference"],"query":[{"key":"patient","value":"93677"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"710-hYzJ1CsEVOhTitR5Cl/nn5vOt40\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Tue, 29 Nov 2022 13:37:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-29T13:37:32.696Z\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/DocumentReference?patient=93677\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"34504\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/DocumentReference/34504\",\n            \"resource\": {\n                \"resourceType\": \"DocumentReference\",\n                \"id\": \"34504\",\n                \"meta\": {\n                    \"versionId\": \"1\",\n                    \"lastUpdated\": \"2022-10-13T07:05:38.000Z\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"34504\"\n                    }\n                ],\n                \"status\": \"current\",\n                \"type\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://loinc.org\",\n                            \"code\": \"34108-1\",\n                            \"display\": \"Outpatient Note\"\n                        }\n                    ]\n                },\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category\",\n                                \"code\": \"11488-4\",\n                                \"display\": \"Consultation note\"\n                            }\n                        ]\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93677\"\n                },\n                \"date\": \"2022-10-13T07:05:38.000Z\",\n                \"author\": [\n                    {\n                        \"reference\": \"Practitioner/50311\"\n                    }\n                ],\n                \"content\": [\n                    {\n                        \"attachment\": {\n                            \"contentType\": \"text/plain\",\n                            \"data\": \"DQoyMDE5LTA5LTA2DQoNCiMgQ2hpZWYgQ29tcGxhaW50IA0KTm8gY29tcGxhaW50cy4gDQoNCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MNCk1yLiBUcmVudG9uIFN0eWxlcyAgaXMgYSAxOSB5ZWFyIG9sZCBXaGl0ZSBtYWxlLg0KDQojIFNvY2lhbCBIaXN0b3J5DQpQYXRpZW50IGlzIGEgbmV2ZXIgc21va2VyLg0KDQojIEFsbGVyZ2llcw0KUGF0aWVudCBoYXMgdGhlIGZvbGxvd2luZyBhbGxlcmdpZXMgLSBBbGxlcmd5IHRvIGdyYXNzIHBvbGxlbixBbGxlcmd5IHRvIG1vdWxkLEFsbGVyZ3kgdG8gcGVhbnV0cyxBbGxlcmd5IHRvIHRyZWUgcG9sbGVuLERhbmRlciAoYW5pbWFsKSBhbGxlcmd5LEhvdXNlIGR1c3QgbWl0ZSBhbGxlcmd5DQoNCiNNZWRpY2F0aW9ucw0KTm8gQWN0aXZlIE1lZGljYXRpb25zLg0KDQojIEFzc2Vzc21lbnQgYW5kIFBsYW4NCg0KIyBQbGFuDQo=\"\n                        },\n                        \"format\": {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\",\n                            \"code\": \"unknown\",\n                            \"display\": \"Unknown\"\n                        }\n                    }\n                ],\n                \"context\": {\n                    \"encounter\": [\n                        {\n                            \"reference\": \"Encounter/48214\"\n                        }\n                    ],\n                    \"period\": {\n                        \"start\": \"2015-05-15T07:00:00.000Z\",\n                        \"end\": \"2015-05-15T07:00:00.000Z\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"b2e43838-08c1-4452-ac4d-d303273c2412"},{"name":"DocumentReference Read","id":"932e1aa9-e993-4984-b082-27c2e8fc3ef2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/DocumentReference/34504","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/DocumentReference/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/DocumentReference/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual DocumentReference by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/DocumentReference/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Is Optional</th>\n<th>Is Array</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID (String)</td>\n<td>The DocumentReference FHIR ID.</td>\n<td>false</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","DocumentReference","34504"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"e85d32fb-6be6-4bf4-a1af-5e5f464aff9e","name":"DocumentReference Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/DocumentReference/34504"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"2022-10-13T07:05:38.000Z"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Tue, 29 Nov 2022 13:38:48 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"DocumentReference\",\n    \"id\": \"34504\",\n    \"meta\": {\n        \"versionId\": \"1\",\n        \"lastUpdated\": \"2022-10-13T07:05:38.000Z\"\n    },\n    \"identifier\": [\n        {\n            \"system\": \"https://stage.cozeva.com\",\n            \"value\": \"34504\"\n        }\n    ],\n    \"status\": \"current\",\n    \"type\": {\n        \"coding\": [\n            {\n                \"system\": \"http://loinc.org\",\n                \"code\": \"34117-2\",\n                \"display\": \"Outpatient Note\"\n            }\n        ]\n    },\n    \"category\": [\n        {\n            \"coding\": [\n                {\n                    \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category\",\n                    \"code\": \"11488-4\",\n                    \"display\": \"Consultation note\"\n                }\n            ]\n        }\n    ],\n    \"subject\": {\n        \"reference\": \"Patient/93677\"\n    },\n    \"date\": \"2022-10-13T07:05:38.000Z\",\n    \"author\": [\n        {\n            \"reference\": \"Practitioner/50311\"\n        }\n    ],\n    \"content\": [\n        {\n            \"attachment\": {\n                \"contentType\": \"text/plain\",\n                \"data\": \"DQoyMDE5LTA5LTA2DQoNCiMgQ2hpZWYgQ29tcGxhaW50IA0KTm8gY29tcGxhaW50cy4gDQoNCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MNCk1yLiBUcmVudG9uIFN0eWxlcyAgaXMgYSAxOSB5ZWFyIG9sZCBXaGl0ZSBtYWxlLg0KDQojIFNvY2lhbCBIaXN0b3J5DQpQYXRpZW50IGlzIGEgbmV2ZXIgc21va2VyLg0KDQojIEFsbGVyZ2llcw0KUGF0aWVudCBoYXMgdGhlIGZvbGxvd2luZyBhbGxlcmdpZXMgLSBBbGxlcmd5IHRvIGdyYXNzIHBvbGxlbixBbGxlcmd5IHRvIG1vdWxkLEFsbGVyZ3kgdG8gcGVhbnV0cyxBbGxlcmd5IHRvIHRyZWUgcG9sbGVuLERhbmRlciAoYW5pbWFsKSBhbGxlcmd5LEhvdXNlIGR1c3QgbWl0ZSBhbGxlcmd5DQoNCiNNZWRpY2F0aW9ucw0KTm8gQWN0aXZlIE1lZGljYXRpb25zLg0KDQojIEFzc2Vzc21lbnQgYW5kIFBsYW4NCg0KIyBQbGFuDQo=\"\n            },\n            \"format\": {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\",\n                \"code\": \"unknown\",\n                \"display\": \"Unknown\"\n            }\n        }\n    ],\n    \"context\": {\n        \"encounter\": [\n            {\n                \"reference\": \"Encounter/48214\"\n            }\n        ],\n        \"period\": {\n            \"start\": \"2015-05-15T07:00:00.000Z\",\n            \"end\": \"2015-05-15T07:00:00.000Z\"\n        }\n    }\n}"}],"_postman_id":"932e1aa9-e993-4984-b082-27c2e8fc3ef2"}],"id":"bdaff405-a863-4733-9f90-9dfb4d51b397","description":"<p>The DocumentReference resource is used to reference a clinical document for a patient within the health system. This resource supports reading Continuity of Care Documents (CCD), returning a list of clinical documents, and a reference to retrieve a document as a PDF.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>masterIdentifier</td>\n<td>Identifier</td>\n<td>Master Version Specific Identifier</td>\n</tr>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>Other identifiers for the document</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>current,superseded,entered-in-error</td>\n</tr>\n<tr>\n<td>docStatus</td>\n<td>code</td>\n<td>preliminary,final,amended,entered-in-error</td>\n</tr>\n<tr>\n<td>type</td>\n<td>CodeableConcept</td>\n<td>Kind of document (LOINC if possible)</td>\n</tr>\n<tr>\n<td>category</td>\n<td>CodeableConcept</td>\n<td>Categorization of document</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>Reference(Device,Group,Patient,Practitioner)</td>\n<td>Who/what is the subject of the document</td>\n</tr>\n<tr>\n<td>date</td>\n<td>instant</td>\n<td>When this document reference was created</td>\n</tr>\n<tr>\n<td>author</td>\n<td>Reference(Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>Who and/or what authored the document</td>\n</tr>\n<tr>\n<td>authenticator</td>\n<td>Reference(Organization,Practitioner,PractitionerRole)</td>\n<td>Who/what authenticated the document</td>\n</tr>\n<tr>\n<td>custodian</td>\n<td>Reference(Organization)</td>\n<td>Organization which maintains the document</td>\n</tr>\n<tr>\n<td>relatesTo</td>\n<td>object</td>\n<td>Relationships to other documents</td>\n</tr>\n<tr>\n<td>relatesTo.code</td>\n<td>code</td>\n<td>replaces,transforms,signs,appends</td>\n</tr>\n<tr>\n<td>relatesTo.target</td>\n<td>Reference(DocumentReference)</td>\n<td>Target of the relationship</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Human-readable description</td>\n</tr>\n<tr>\n<td>securityLabel</td>\n<td>CodeableConcept</td>\n<td>Document security-tags</td>\n</tr>\n<tr>\n<td>content</td>\n<td>object</td>\n<td>Document referenced</td>\n</tr>\n<tr>\n<td>content.attachment</td>\n<td>Attachment</td>\n<td>Where to access the document</td>\n</tr>\n<tr>\n<td>content.format</td>\n<td>Coding</td>\n<td>Format,content rules for the document</td>\n</tr>\n<tr>\n<td>context</td>\n<td>object</td>\n<td>Clinical context of document</td>\n</tr>\n<tr>\n<td>context.encounter</td>\n<td>Reference(Encounter,EpisodeOfCare)</td>\n<td>Context of the document  content</td>\n</tr>\n<tr>\n<td>context.event</td>\n<td>CodeableConcept</td>\n<td>Main clinical acts documented</td>\n</tr>\n<tr>\n<td>context.period</td>\n<td>Period</td>\n<td>Time of service that is being documented</td>\n</tr>\n<tr>\n<td>context.facilityType</td>\n<td>CodeableConcept</td>\n<td>Kind of facility where patient was seen</td>\n</tr>\n<tr>\n<td>context.practiceSetting</td>\n<td>CodeableConcept</td>\n<td>Additional details about where the content was created (e.g. clinical specialty)</td>\n</tr>\n<tr>\n<td>context.sourcePatientInfo</td>\n<td>Reference(Patient)</td>\n<td>Patient demographics from source</td>\n</tr>\n<tr>\n<td>context.related</td>\n<td>Reference(Any)</td>\n<td>Related identifiers or resources</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"bdaff405-a863-4733-9f90-9dfb4d51b397"},{"name":"MedicationRequest","item":[{"name":"MedicationRequest Search","id":"71976d34-4c66-4ea4-9131-57dddf6c0675","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/MedicationRequest?patient=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/MedicationRequest?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/MedicationRequest?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for MedicationRequests that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/MedicationRequest?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>External ids for this request</td>\n<td>false</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>active, on-hold, cancelled, completed, entered-in-error, stopped, draft, unknown</td>\n<td>false</td>\n</tr>\n<tr>\n<td>statusReason</td>\n<td>{ CodeableConcept }</td>\n<td>Reason for current status</td>\n<td>false</td>\n</tr>\n<tr>\n<td>intent</td>\n<td>code</td>\n<td>proposal, plan, order, original-order, reflex-order, filler-order, instance-order,option</td>\n<td>true</td>\n</tr>\n<tr>\n<td>category</td>\n<td>[{ CodeableConcept }]</td>\n<td>Type of medication usage</td>\n<td>false</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>code</td>\n<td>routine, urgent, asap , stat</td>\n<td>false</td>\n</tr>\n<tr>\n<td>doNotPerform</td>\n<td>boolean</td>\n<td>True if request is prohibiting action</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reportedBoolean</td>\n<td>boolean</td>\n<td>Reported rather than primary record.</td>\n<td>true</td>\n</tr>\n<tr>\n<td>reportedReference</td>\n<td>{ Reference(Organization,Patient,Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>Reported rather than primary record.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>medicationCodeableConcept</td>\n<td>{ CodeableConcept }</td>\n<td>Medication to be taken.</td>\n<td>true</td>\n</tr>\n<tr>\n<td>medicationReference}</td>\n<td>{ Reference(Medication) }</td>\n<td>Medication to be taken.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>{ Reference(Group,Patient) }</td>\n<td>Who or group medication request is for</td>\n<td>false</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>{ Reference(Encounter) }</td>\n<td>Encounter created as part of encounter/admission/stay</td>\n<td>true</td>\n</tr>\n<tr>\n<td>supportingInformation</td>\n<td>[{ Reference(Any) }]</td>\n<td>Information to support ordering of the medication</td>\n<td>false</td>\n</tr>\n<tr>\n<td>authoredOn</td>\n<td>dateTime</td>\n<td>When request was initially authored</td>\n<td>false</td>\n</tr>\n<tr>\n<td>requester</td>\n<td>{ Reference(Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>Who/What requested the Request</td>\n<td>false</td>\n</tr>\n<tr>\n<td>performer</td>\n<td>{ Reference(CareTeam,Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>Intended performer of administration</td>\n<td>false</td>\n</tr>\n<tr>\n<td>performerType</td>\n<td>{ CodeableConcept }</td>\n<td>Desired kind of performer of the medication administration</td>\n<td>false</td>\n</tr>\n<tr>\n<td>recorder</td>\n<td>{ Reference(Practitioner,PractitionerRole) }</td>\n<td>Person who entered the request</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reasonCode</td>\n<td>[{ CodeableConcept }]</td>\n<td>Reason or indication for ordering or not ordering the medication</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reasonReference</td>\n<td>[{ Reference(Condition,Observation) }]</td>\n<td>Condition or observation that supports why the prescription is being written</td>\n<td>false</td>\n</tr>\n<tr>\n<td>instantiatesCanonical</td>\n<td>canonical</td>\n<td>Instantiates FHIR protocol or definitionfalse</td>\n<td></td>\n</tr>\n<tr>\n<td>instantiatesUri</td>\n<td>uri</td>\n<td>Instantiates external protocol or definition</td>\n<td>false</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>[{ Reference(CarePlan,ImmunizationRecommendation, MedicationRequest,ServiceRequest) }]</td>\n<td>What request fulfills</td>\n<td>false</td>\n</tr>\n<tr>\n<td>groupIdentifier</td>\n<td>{ Identifier }</td>\n<td>Composite request this is part of</td>\n<td>false</td>\n</tr>\n<tr>\n<td>courseOfTherapyType</td>\n<td>{ CodeableConcept }</td>\n<td>Overall pattern of medication administration</td>\n<td>false</td>\n</tr>\n<tr>\n<td>insurance</td>\n<td>[{ Reference(ClaimResponse,Coverage) }]</td>\n<td>Associated insurance coverage</td>\n<td>false</td>\n</tr>\n<tr>\n<td>note</td>\n<td>[{ Annotation }]</td>\n<td>Information about the prescription</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dosageInstruction</td>\n<td>[{ Dosage }]</td>\n<td>How the medication should be taken</td>\n<td>true</td>\n</tr>\n<tr>\n<td>dispenseRequest</td>\n<td>object</td>\n<td>Medication supply authorization</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dispenseRequest-initialFill</td>\n<td>object</td>\n<td>First fill details</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dispenseRequest-initialFill-quantity</td>\n<td>{ Quantity(SimpleQuantity) }</td>\n<td>First fill quantity</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dispenseRequest-initialFill-duration</td>\n<td>{ Duration }</td>\n<td>First fill duration</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dispenseRequest-dispenseInterval</td>\n<td>Duration }</td>\n<td>Minimum period of time between dispenses</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dispenseRequest-validityPeriod</td>\n<td>{ Period }</td>\n<td>Time period supply is authorized for</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dispenseRequest-numberOfRepeatsAllowed</td>\n<td>unsignedInt</td>\n<td>Number of refills authorized</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dispenseRequest-quantity</td>\n<td>{ Quantity(SimpleQuantity) }</td>\n<td>Amount of medication to supply per dispense</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dispenseRequest-expectedSupplyDuration</td>\n<td>{ Duration }</td>\n<td>Number of days supply per dispense</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dispenseRequest-performer</td>\n<td>{ Reference(Organization) }</td>\n<td>Intended dispenser</td>\n<td>false</td>\n</tr>\n<tr>\n<td>substitution</td>\n<td>object</td>\n<td>Any restrictions on medication substitution</td>\n<td>false</td>\n</tr>\n<tr>\n<td>substitution-allowedBoolean</td>\n<td>boolean</td>\n<td>Whether substitution is allowed or not</td>\n<td>false</td>\n</tr>\n<tr>\n<td>substitution-allowedCodeableConcept</td>\n<td>{ CodeableConcept }</td>\n<td>Whether substitution is allowed or not</td>\n<td>false</td>\n</tr>\n<tr>\n<td>substitution-reason</td>\n<td>{ CodeableConcept }</td>\n<td>Why should (not) substitution be made</td>\n<td>false</td>\n</tr>\n<tr>\n<td>priorPrescription</td>\n<td>{ Reference(MedicationRequest) }</td>\n<td>An order/prescription that is being replaced</td>\n<td>false</td>\n</tr>\n<tr>\n<td>detectedIssue</td>\n<td>[{ Reference(DetectedIssue) }]</td>\n<td>Clinical Issue with action</td>\n<td>false</td>\n</tr>\n<tr>\n<td>eventHistory</td>\n<td>[{ Reference(Provenance) }]</td>\n<td>A list of events of interest in the lifecycle</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","MedicationRequest"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93272"}],"variable":[]}},"response":[{"id":"5fe7b4f3-5eef-4797-89c2-232d07d2e84d","name":"MedicationRequest Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/MedicationRequest?patient=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","MedicationRequest"],"query":[{"key":"patient","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"949-VLN41H7qM+PrcrcJElTauLvVxT0\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Mon, 28 Nov 2022 05:36:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-28T05:36:29.101Z\",\n    \"total\": 3,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/MedicationRequest?patient=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"14322\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/MedicationRequest/14322\",\n            \"resource\": {\n                \"resourceType\": \"MedicationRequest\",\n                \"id\": \"14322\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"active\",\n                \"intent\": \"order\",\n                \"reportedBoolean\": false,\n                \"medicationCodeableConcept\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n                            \"code\": \"477045\",\n                            \"display\": \"Chlorpheniramine Maleate 2 MG/ML Oral Solution\"\n                        }\n                    ],\n                    \"text\": \"Chlorpheniramine Maleate 2 MG/ML Oral Solution\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48688\"\n                },\n                \"authoredOn\": \"1981-01-20T20:58:29.000Z\",\n                \"requester\": {\n                    \"reference\": \"Practitioner/52251\"\n                },\n                \"dosageInstruction\": [\n                    {\n                        \"text\": \"4 mg orally every 4-6 hours; not to exceed 24 mg/day\",\n                        \"asNeededBoolean\": false\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"14323\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/MedicationRequest/14323\",\n            \"resource\": {\n                \"resourceType\": \"MedicationRequest\",\n                \"id\": \"14323\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"active\",\n                \"intent\": \"order\",\n                \"reportedBoolean\": false,\n                \"medicationCodeableConcept\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n                            \"code\": \"316049\",\n                            \"display\": \"Hydrochlorothiazide 25 MG\"\n                        }\n                    ],\n                    \"text\": \"Hydrochlorothiazide 25 MG\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48690\"\n                },\n                \"authoredOn\": \"1997-11-10T20:58:29.000Z\",\n                \"requester\": {\n                    \"reference\": \"Practitioner/52251\"\n                },\n                \"dosageInstruction\": [\n                    {\n                        \"text\": \"25 milligrams (mg) once a day\",\n                        \"asNeededBoolean\": false\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"14324\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/MedicationRequest/14324\",\n            \"resource\": {\n                \"resourceType\": \"MedicationRequest\",\n                \"id\": \"14324\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"stopped\",\n                \"intent\": \"order\",\n                \"reportedBoolean\": false,\n                \"medicationCodeableConcept\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n                            \"code\": \"562251\",\n                            \"display\": \"Amoxicillin 250 MG / Clavulanate 125 MG Oral Tablet\"\n                        }\n                    ],\n                    \"text\": \"Amoxicillin 250 MG / Clavulanate 125 MG Oral Tablet\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48693\"\n                },\n                \"authoredOn\": \"2012-06-27T20:58:29.000Z\",\n                \"requester\": {\n                    \"reference\": \"Practitioner/52251\"\n                },\n                \"dosageInstruction\": [\n                    {\n                        \"text\": \"500mg to 1g every 8 hours\",\n                        \"asNeededBoolean\": false\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"71976d34-4c66-4ea4-9131-57dddf6c0675"},{"name":"MedicationRequest Read","id":"b87e4d47-5cd5-49fa-8f92-99e86abac0b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/MedicationRequest/14322","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/MedicationRequest/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/MedicationRequest/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual MedicationRequest by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/MedicationRequest/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Is Optional</th>\n<th>Is Array</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID (String)</td>\n<td>The MedicationRequest FHIR ID.</td>\n<td>false</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","MedicationRequest","14322"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"c6492d4e-90ff-43e0-89a4-52fb39e9c0fe","name":"MedicationRequest Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/MedicationRequest/14322"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"643"},{"key":"Date","value":"Mon, 28 Nov 2022 05:37:12 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"MedicationRequest\",\n    \"id\": \"14322\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"status\": \"active\",\n    \"intent\": \"order\",\n    \"reportedBoolean\": false,\n    \"medicationCodeableConcept\": {\n        \"coding\": [\n            {\n                \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n                \"code\": \"477045\",\n                \"display\": \"Chlorpheniramine Maleate 2 MG/ML Oral Solution\"\n            }\n        ],\n        \"text\": \"Chlorpheniramine Maleate 2 MG/ML Oral Solution\"\n    },\n    \"subject\": {\n        \"reference\": \"Patient/93272\"\n    },\n    \"encounter\": {\n        \"reference\": \"Encounter/48688\"\n    },\n    \"authoredOn\": \"1981-01-20T20:58:29.000Z\",\n    \"requester\": {\n        \"reference\": \"Practitioner/52251\"\n    },\n    \"dosageInstruction\": [\n        {\n            \"text\": \"4 mg orally every 4-6 hours; not to exceed 24 mg/day\",\n            \"asNeededBoolean\": false\n        }\n    ]\n}"}],"_postman_id":"b87e4d47-5cd5-49fa-8f92-99e86abac0b6"}],"id":"89d9fc8f-61fe-4635-8da1-5a28cdcf263b","description":"<p>The MedicationRequest  resource provides orders for all medications along with administration instructions for a patient in both the inpatient and outpatient setting (orders/prescriptions filled by a pharmacy and discharge medication orders). This resource also includes a patient’s historical or documented home medications reported by the patient, significant other or another provider.</p>\n<p>If the MedicationRequest represents a prescription (something the patient takes at home), the start, stop, and other data may not be a representation of when the medication was taken. For example, the system may not know if the patient ever filled or took the prescribed medication, or when the prescription was filled. Documented historical/past/home medications are commonly captured when taking the patient’s medical history.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>External ids for this request</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>active, on-hold, cancelled, completed, entered-in-error, stopped, draft, unknown</td>\n</tr>\n<tr>\n<td>statusReason</td>\n<td>CodeableConcept</td>\n<td>Reason for current status</td>\n</tr>\n<tr>\n<td>intent</td>\n<td>code</td>\n<td>proposal, plan, order, original-order, reflex-order, filler-order, instance-order,option</td>\n</tr>\n<tr>\n<td>category</td>\n<td>CodeableConcept</td>\n<td>Type of medication usage</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>code</td>\n<td>routine, urgent, asap , stat</td>\n</tr>\n<tr>\n<td>doNotPerform</td>\n<td>boolean</td>\n<td>True if request is prohibiting action</td>\n</tr>\n<tr>\n<td>reported</td>\n<td>object</td>\n<td>Reported rather than primary record.</td>\n</tr>\n<tr>\n<td>reported.reportedBoolean</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>reported.reportedReference</td>\n<td>Reference(Organization,Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td></td>\n</tr>\n<tr>\n<td>medication</td>\n<td>object</td>\n<td>Medication to be taken.</td>\n</tr>\n<tr>\n<td>medication.medicationCodeableConcept</td>\n<td>CodeableConcept</td>\n<td></td>\n</tr>\n<tr>\n<td>medication.medicationReference</td>\n<td>Reference(Medication)</td>\n<td></td>\n</tr>\n<tr>\n<td>subject</td>\n<td>Reference(Group,Patient)</td>\n<td>Who or group medication request is for</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>Reference(Encounter)</td>\n<td>Encounter created as part of encounter/admission/stay</td>\n</tr>\n<tr>\n<td>supportingInformation</td>\n<td>Reference(Any)</td>\n<td>Information to support ordering of the medication</td>\n</tr>\n<tr>\n<td>authoredOn</td>\n<td>dateTime</td>\n<td>When request was initially authored</td>\n</tr>\n<tr>\n<td>requester</td>\n<td>Reference(Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>Who/What requested the Request</td>\n</tr>\n<tr>\n<td>performer</td>\n<td>Reference(CareTeam,Device,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>Intended performer of administration</td>\n</tr>\n<tr>\n<td>performerType</td>\n<td>CodeableConcept</td>\n<td>Desired kind of performer of the medication administration</td>\n</tr>\n<tr>\n<td>recorder</td>\n<td>Reference(Practitioner,PractitionerRole)</td>\n<td>Person who entered the request</td>\n</tr>\n<tr>\n<td>reasonCode</td>\n<td>CodeableConcept</td>\n<td>Reason or indication for ordering or not ordering the medication</td>\n</tr>\n<tr>\n<td>reasonReference</td>\n<td>Reference(Condition,Observation)</td>\n<td>Condition or observation that supports why the prescription is being written</td>\n</tr>\n<tr>\n<td>instantiatesCanonical</td>\n<td>canonical</td>\n<td>Instantiates FHIR protocol or definition</td>\n</tr>\n<tr>\n<td>instantiatesUri</td>\n<td>uri</td>\n<td>Instantiates external protocol or definition</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>Reference(CarePlan,ImmunizationRecommendation, MedicationRequest,ServiceRequest)</td>\n<td>What request fulfills</td>\n</tr>\n<tr>\n<td>groupIdentifier</td>\n<td>Identifier</td>\n<td>Composite request this is part of</td>\n</tr>\n<tr>\n<td>courseOfTherapyType</td>\n<td>CodeableConcept</td>\n<td>Overall pattern of medication administration</td>\n</tr>\n<tr>\n<td>insurance</td>\n<td>Reference(ClaimResponse,Coverage)</td>\n<td>Associated insurance coverage</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Annotation</td>\n<td>Information about the prescription</td>\n</tr>\n<tr>\n<td>dosageInstruction</td>\n<td>Dosage</td>\n<td>How the medication should be taken</td>\n</tr>\n<tr>\n<td>dispenseRequest</td>\n<td>object</td>\n<td>Medication supply authorization</td>\n</tr>\n<tr>\n<td>dispenseRequest.initialFill</td>\n<td>object</td>\n<td>First fill details</td>\n</tr>\n<tr>\n<td>dispenseRequest.initialFill.quantity</td>\n<td>Quantity(SimpleQuantity)</td>\n<td>First fill quantity</td>\n</tr>\n<tr>\n<td>dispenseRequest.initialFill.duration</td>\n<td>Duration</td>\n<td>First fill duration</td>\n</tr>\n<tr>\n<td>dispenseRequest.dispenseInterval</td>\n<td>Duration</td>\n<td>Minimum period of time between dispenses</td>\n</tr>\n<tr>\n<td>dispenseRequest.validityPeriod</td>\n<td>Period</td>\n<td>Time period supply is authorized for</td>\n</tr>\n<tr>\n<td>dispenseRequest.numberOfRepeatsAllowed</td>\n<td>unsignedInt</td>\n<td>Number of refills authorized</td>\n</tr>\n<tr>\n<td>dispenseRequest.quantity</td>\n<td>Quantity(SimpleQuantity)</td>\n<td>Amount of medication to supply per dispense</td>\n</tr>\n<tr>\n<td>dispenseRequest.expectedSupplyDuration</td>\n<td>Duration</td>\n<td>Number of days supply per dispense</td>\n</tr>\n<tr>\n<td>dispenseRequest.performer</td>\n<td>Reference(Organization)</td>\n<td>Intended dispenser</td>\n</tr>\n<tr>\n<td>substitution</td>\n<td>object</td>\n<td>Any restrictions on medication substitution</td>\n</tr>\n<tr>\n<td>substitution.allowed</td>\n<td>object</td>\n<td>Whether substitution is allowed or not</td>\n</tr>\n<tr>\n<td>substitution.allowed.allowedBoolean</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>substitution.allowed.allowedCodeableConcept</td>\n<td>CodeableConcept</td>\n<td></td>\n</tr>\n<tr>\n<td>substitution-reason</td>\n<td>CodeableConcept</td>\n<td>Why should (not) substitution be made</td>\n</tr>\n<tr>\n<td>priorPrescription</td>\n<td>Reference(MedicationRequest)</td>\n<td>An order/prescription that is being replaced</td>\n</tr>\n<tr>\n<td>detectedIssue</td>\n<td>Reference(DetectedIssue)</td>\n<td>Clinical Issue with action</td>\n</tr>\n<tr>\n<td>eventHistory</td>\n<td>Reference(Provenance)</td>\n<td>A list of events of interest in the lifecycle</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"89d9fc8f-61fe-4635-8da1-5a28cdcf263b"},{"name":"Observation","item":[{"name":"Observation Search","id":"1cac1af8-a834-4391-8e24-400e8838aa66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Observation?code=77606-2&patient=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Observation?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/Observation?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for Observation that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Observation?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>Business Identifier for observation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>[{ Reference(CarePlan,DeviceRequest,ImmunizationRecommendation,MedicationRequest,NutritionOrder,ServiceRequest) }]</td>\n<td>Fulfills plan, proposal or order</td>\n<td>false</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>[{ Reference(GenomicStudy,ImagingStudy,Immunization,MedicationAdministration,MedicationDispense,MedicationUsage,Procedure) }]</td>\n<td>Part of referenced event</td>\n<td>false</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>registered,preliminary,final,amended</td>\n<td>false</td>\n</tr>\n<tr>\n<td>category</td>\n<td>[{ CodeableConcept }]</td>\n<td>Classification of type of observation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>code</td>\n<td>{ CodeableConcept }</td>\n<td>Type of observation (code / type)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>{ Reference(BiologicallyDerivedProduct,Device,Group,Location,Medication,NutritionProduct,Organization,Patient,Practitioner,Procedure,Substance) }</td>\n<td>Who and/or what the observation is about</td>\n<td>false</td>\n</tr>\n<tr>\n<td>focus</td>\n<td>[{ Reference(Any) }]</td>\n<td>What the observation is about, when it is not about the subject of record</td>\n<td>false</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>{ Reference(Encounter) }</td>\n<td>Healthcare event during which this observation is made</td>\n<td>false</td>\n</tr>\n<tr>\n<td>effective</td>\n<td>object</td>\n<td>Clinically relevant time/time-period for observation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>effectiveDateTime</td>\n<td>dateTime</td>\n<td>Clinically relevant time/time-period for observation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>effectivePeriod</td>\n<td>{ Period }</td>\n<td>Clinically relevant time/time-period for observation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>effectiveTiming</td>\n<td>{ Timing }</td>\n<td>Clinically relevant time/time-period for observation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>effectiveInstant</td>\n<td>instant</td>\n<td>Clinically relevant time/time-period for observation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>issued</td>\n<td>instant</td>\n<td>Date/Time this version was made available</td>\n<td>false</td>\n</tr>\n<tr>\n<td>performer</td>\n<td>[{ Reference(CareTeam,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson) }]</td>\n<td>Who is responsible for the observation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>value</td>\n<td>object</td>\n<td>Actual result</td>\n<td>Actual result</td>\n</tr>\n<tr>\n<td>valueQuantity</td>\n<td>{ Quantity }</td>\n<td>Actual result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>valueCodeableConcept</td>\n<td>{ CodeableConcept }</td>\n<td>Actual result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>valueString</td>\n<td>string</td>\n<td>Actual result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>valueBoolean</td>\n<td>boolean</td>\n<td>Actual result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>valueInteger</td>\n<td>integer</td>\n<td>Actual result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>valueRange</td>\n<td>{ Range }</td>\n<td>Actual result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>valueRatio</td>\n<td>{ Ratio }</td>\n<td>Actual result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>valueSampledData</td>\n<td>{ SampledData }</td>\n<td>Actual result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>valueTime</td>\n<td>time</td>\n<td>Actual result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>valueDateTime</td>\n<td>dateTime</td>\n<td>Actual result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>valuePeriod</td>\n<td>{ Period }</td>\n<td>Actual result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dataAbsentReason</td>\n<td>{ CodeableConcept }</td>\n<td>I Why the result is missing</td>\n<td>false</td>\n</tr>\n<tr>\n<td>interpretation</td>\n<td>[{ CodeableConcept }]</td>\n<td>High, low, normal, etc.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>note</td>\n<td>[{ Annotation }]</td>\n<td>Comments about the observation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>bodySite</td>\n<td>{ CodeableConcept }</td>\n<td>Observed body part</td>\n<td>false</td>\n</tr>\n<tr>\n<td>bodyStructure</td>\n<td>{ Reference(BodyStructure) }</td>\n<td>Observed body structure</td>\n<td>false</td>\n</tr>\n<tr>\n<td>method</td>\n<td>{ CodeableConcept }</td>\n<td>How it was done</td>\n<td>false</td>\n</tr>\n<tr>\n<td>specimen</td>\n<td>{ Reference(Group,Specimen) }</td>\n<td>Specimen used for this observation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>device</td>\n<td>{ Reference(Device,DeviceMetric) }</td>\n<td>(Measurement) Device</td>\n<td>false</td>\n</tr>\n<tr>\n<td>referenceRange</td>\n<td>array</td>\n<td>Provides guide for interpretation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>referenceRange_low</td>\n<td>{ Quantity(SimpleQuantity) }</td>\n<td>I Low Range, if relevant</td>\n<td>false</td>\n</tr>\n<tr>\n<td>referenceRange_high</td>\n<td>{ Quantity(SimpleQuantity) }</td>\n<td>I High Range, if relevant</td>\n<td>false</td>\n</tr>\n<tr>\n<td>referenceRange_normalValue</td>\n<td>{ CodeableConcept }</td>\n<td>I Normal value, if relevant</td>\n<td>false</td>\n</tr>\n<tr>\n<td>referenceRange_type</td>\n<td>{ CodeableConcept }</td>\n<td>Reference range qualifier</td>\n<td>false</td>\n</tr>\n<tr>\n<td>referenceRange_appliesTo</td>\n<td>[{ CodeableConcept }]</td>\n<td>Reference range population</td>\n<td>false</td>\n</tr>\n<tr>\n<td>referenceRange_age</td>\n<td>{ Range }</td>\n<td>Applicable age range, if relevant</td>\n<td>false</td>\n</tr>\n<tr>\n<td>referenceRange_text</td>\n<td>string</td>\n<td>Text based reference range in an observation</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hasMember</td>\n<td>[{ Reference(MolecularSequence,Observation,QuestionnaireResponse) }]</td>\n<td>Related resource that belongs to the Observation group</td>\n<td>false</td>\n</tr>\n<tr>\n<td>derivedFrom</td>\n<td>[{ Reference(DocumentReference,GenomicStudy,ImagingSelection,ImagingStudy,MolecularSequence,Observation,QuestionnaireResponse) }]</td>\n<td>Related resource from which the observation is made</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component</td>\n<td>object</td>\n<td>Component results</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_code</td>\n<td>{ CodeableConcept }</td>\n<td>Type of component observation (code / type)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_value</td>\n<td>object</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valueQuantity</td>\n<td>{ Quantity }</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valueCodeableConcept</td>\n<td>{ CodeableConcept }</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valueString</td>\n<td>string</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valueBoolean</td>\n<td>boolean</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valueInteger</td>\n<td>integer</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valueRange</td>\n<td>{ Range }</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valueRatio</td>\n<td>{ Ratio }</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valueSampledData</td>\n<td>{ SampledData }</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valueTime</td>\n<td>time</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valueDateTime</td>\n<td>dateTime</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valuePeriod</td>\n<td>{ Period }</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>component_valueAttachment</td>\n<td>{ Attachment }</td>\n<td>Actual component result</td>\n<td>false</td>\n</tr>\n<tr>\n<td>dataAbsentReason</td>\n<td>{ CodeableConcept }</td>\n<td>I Why the component result is missing</td>\n<td>false</td>\n</tr>\n<tr>\n<td>interpretation</td>\n<td>[{ CodeableConcept }]</td>\n<td>High, low, normal, etc.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>referenceRange</td>\n<td>[{ Content as for Observation.referenceRange }]</td>\n<td>Provides guide for interpretation of component result</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Observation"],"host":["{{API_BASE_URL}}"],"query":[{"key":"code","value":"77606-2"},{"key":"patient","value":"93272"}],"variable":[]}},"response":[{"id":"5a34edb4-c5ff-498b-b549-f51703021f6c","name":"Observation Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/Observation?code=77606-2&patient=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","Observation"],"query":[{"key":"code","value":"77606-2"},{"key":"patient","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"967"},{"key":"ETag","value":"W/\"3c7-q1Tzdrp0bRu678DFUzFBqHLRJrk\""},{"key":"Date","value":"Mon, 28 Nov 2022 05:38:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-28T05:38:26.728Z\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Observation?code=77606-2&patient=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"270853\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Observation/270853\",\n            \"resource\": {\n                \"resourceType\": \"Observation\",\n                \"id\": \"270853\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"final\",\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n                                \"code\": \"vital-signs\",\n                                \"display\": \"Vital Signs\"\n                            }\n                        ]\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://loinc.org\",\n                            \"code\": \"77606-2\",\n                            \"display\": \"Weight-for-length Per age and sex\"\n                        }\n                    ],\n                    \"text\": \"Weight-for-length Per age and sex\"\n                },\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48213\"\n                },\n                \"effectiveDateTime\": \"1980-10-25T07:00:00.000Z\",\n                \"issued\": \"1980-10-25T07:00:00.000Z\",\n                \"valueQuantity\": {\n                    \"value\": 5.88881,\n                    \"unit\": \"%\",\n                    \"system\": \"http://unitsofmeasure.org\",\n                    \"code\": \"%\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"1cac1af8-a834-4391-8e24-400e8838aa66"},{"name":"Observation Read","id":"025af252-eb7a-4478-9bd7-222c5e55bd01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Observation/270853","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Observation/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/Observation/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual Observation by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Observation/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>String</td>\n<td>The Observation FHIR ID.</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Observation","270853"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"8e470757-5802-4d7b-bd11-67695d99519a","name":"Observation Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Observation/270853"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"645"},{"key":"Date","value":"Mon, 28 Nov 2022 05:39:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Observation\",\n    \"id\": \"270853\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"status\": \"final\",\n    \"category\": [\n        {\n            \"coding\": [\n                {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n                    \"code\": \"vital-signs\",\n                    \"display\": \"Vital Signs\"\n                }\n            ]\n        }\n    ],\n    \"code\": {\n        \"coding\": [\n            {\n                \"system\": \"http://loinc.org\",\n                \"code\": \"77606-2\",\n                \"display\": \"Weight-for-length Per age and sex\"\n            }\n        ],\n        \"text\": \"Weight-for-length Per age and sex\"\n    },\n    \"subject\": {\n        \"reference\": \"Patient/93272\"\n    },\n    \"encounter\": {\n        \"reference\": \"Encounter/48213\"\n    },\n    \"effectiveDateTime\": \"1980-10-25T07:00:00.000Z\",\n    \"issued\": \"1980-10-25T07:00:00.000Z\",\n    \"valueQuantity\": {\n        \"value\": 5.88881,\n        \"unit\": \"%\",\n        \"system\": \"http://unitsofmeasure.org\",\n        \"code\": \"%\"\n    }\n}"}],"_postman_id":"025af252-eb7a-4478-9bd7-222c5e55bd01"}],"id":"8e9a8ae2-3a24-4152-b0aa-76cb395d460f","description":"<p>Observations are a central element in healthcare, used to support diagnosis, monitor progress, determine baselines and patterns and even capture demographic characteristics, as well as capture results of tests performed on products and substances.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>Business Identifier for observation</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>Reference(CarePlan,DeviceRequest,ImmunizationRecommendation,MedicationRequest,NutritionOrder,ServiceRequest)</td>\n<td>Fulfills plan, proposal or order</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>Reference(GenomicStudy,ImagingStudy,Immunization,MedicationAdministration,MedicationDispense,MedicationUsage,Procedure)</td>\n<td>Part of referenced event</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>registered,preliminary,final,amended</td>\n</tr>\n<tr>\n<td>category</td>\n<td>CodeableConcept</td>\n<td>Classification of type of observation</td>\n</tr>\n<tr>\n<td>code</td>\n<td>CodeableConcept</td>\n<td>Type of observation (code / type)</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>Reference(BiologicallyDerivedProduct,Device,Group,Location,Medication,NutritionProduct,Organization,Patient,Practitioner,Procedure,Substance)</td>\n<td>Who and/or what the observation is about</td>\n</tr>\n<tr>\n<td>focus</td>\n<td>Reference(Any)</td>\n<td>What the observation is about, when it is not about the subject of record</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>Reference(Encounter)</td>\n<td>Healthcare event during which this observation is made</td>\n</tr>\n<tr>\n<td>effective</td>\n<td>object</td>\n<td>Clinically relevant time/time-period for observation</td>\n</tr>\n<tr>\n<td>effective.effectiveDateTime</td>\n<td>dateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>effective.effectivePeriod</td>\n<td>Period</td>\n<td></td>\n</tr>\n<tr>\n<td>effective.effectiveTiming</td>\n<td>Timing</td>\n<td></td>\n</tr>\n<tr>\n<td>effective.effectiveInstant</td>\n<td>instant</td>\n<td>Clinically relevant time/time-period for observation</td>\n</tr>\n<tr>\n<td>issued</td>\n<td>instant</td>\n<td>Date/Time this version was made available</td>\n</tr>\n<tr>\n<td>performer</td>\n<td>Reference(CareTeam,Organization,Patient,Practitioner,PractitionerRole,RelatedPerson)</td>\n<td>Who is responsible for the observation</td>\n</tr>\n<tr>\n<td>value</td>\n<td>object</td>\n<td>Actual result</td>\n</tr>\n<tr>\n<td>value.valueQuantity</td>\n<td>Quantity</td>\n<td></td>\n</tr>\n<tr>\n<td>value.valueCodeableConcept</td>\n<td>CodeableConcept</td>\n<td></td>\n</tr>\n<tr>\n<td>value.valueString</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>value.valueBoolean</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>value.valueInteger</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>value.valueRange</td>\n<td>Range</td>\n<td></td>\n</tr>\n<tr>\n<td>value.valueRatio</td>\n<td>Ratio</td>\n<td></td>\n</tr>\n<tr>\n<td>value.valueSampledData</td>\n<td>SampledData</td>\n<td></td>\n</tr>\n<tr>\n<td>value.valueTime</td>\n<td>time</td>\n<td></td>\n</tr>\n<tr>\n<td>value.valueDateTime</td>\n<td>dateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>value.valuePeriod</td>\n<td>Period</td>\n<td></td>\n</tr>\n<tr>\n<td>dataAbsentReason</td>\n<td>CodeableConcept</td>\n<td>I Why the result is missing</td>\n</tr>\n<tr>\n<td>interpretation</td>\n<td>CodeableConcept</td>\n<td>High, low, normal, etc.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Annotation</td>\n<td>Comments about the observation</td>\n</tr>\n<tr>\n<td>bodySite</td>\n<td>CodeableConcept</td>\n<td>Observed body part</td>\n</tr>\n<tr>\n<td>method</td>\n<td>CodeableConcept</td>\n<td>How it was done</td>\n</tr>\n<tr>\n<td>specimen</td>\n<td>Reference(Group,Specimen)</td>\n<td>Specimen used for this observation</td>\n</tr>\n<tr>\n<td>device</td>\n<td>Reference(Device,DeviceMetric)</td>\n<td>(Measurement) Device</td>\n</tr>\n<tr>\n<td>referenceRange</td>\n<td>object</td>\n<td>Provides guide for interpretation</td>\n</tr>\n<tr>\n<td>referenceRange.low</td>\n<td>Quantity(SimpleQuantity)</td>\n<td>I Low Range, if relevant</td>\n</tr>\n<tr>\n<td>referenceRange.high</td>\n<td>Quantity(SimpleQuantity)</td>\n<td>I High Range, if relevant</td>\n</tr>\n<tr>\n<td>referenceRange.type</td>\n<td>CodeableConcept</td>\n<td>Reference range qualifier</td>\n</tr>\n<tr>\n<td>referenceRange.appliesTo</td>\n<td>CodeableConcept</td>\n<td>Reference range population</td>\n</tr>\n<tr>\n<td>referenceRange.age</td>\n<td>Range</td>\n<td>Applicable age range, if relevant</td>\n</tr>\n<tr>\n<td>referenceRange.text</td>\n<td>string</td>\n<td>Text based reference range in an observation</td>\n</tr>\n<tr>\n<td>hasMember</td>\n<td>Reference(MolecularSequence,Observation,QuestionnaireResponse)</td>\n<td>Related resource that belongs to the Observation group</td>\n</tr>\n<tr>\n<td>derivedFrom</td>\n<td>Reference(DocumentReference,GenomicStudy,ImagingSelection,ImagingStudy,MolecularSequence,Observation,QuestionnaireResponse)</td>\n<td>Related resource from which the observation is made</td>\n</tr>\n<tr>\n<td>component</td>\n<td>object</td>\n<td>Component results</td>\n</tr>\n<tr>\n<td>component.code</td>\n<td>CodeableConcept</td>\n<td>Type of component observation (code / type)</td>\n</tr>\n<tr>\n<td>component.value</td>\n<td>object</td>\n<td>Actual component result</td>\n</tr>\n<tr>\n<td>component.value.valueQuantity</td>\n<td>Quantity</td>\n<td></td>\n</tr>\n<tr>\n<td>component.value.valueCodeableConcept</td>\n<td>CodeableConcept</td>\n<td></td>\n</tr>\n<tr>\n<td>component.value.valueString</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>component.value.valueBoolean</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>component.value.valueInteger</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>component.value.valueRange</td>\n<td>Range</td>\n<td></td>\n</tr>\n<tr>\n<td>component.value.valueRatio</td>\n<td>Ratio</td>\n<td></td>\n</tr>\n<tr>\n<td>component.value.valueSampledData</td>\n<td>SampledData</td>\n<td></td>\n</tr>\n<tr>\n<td>component.value.valueTime</td>\n<td>time</td>\n<td></td>\n</tr>\n<tr>\n<td>component.value.valueDateTime</td>\n<td>dateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>component.value.valuePeriod</td>\n<td>Period</td>\n<td></td>\n</tr>\n<tr>\n<td>component.dataAbsentReason</td>\n<td>CodeableConcept</td>\n<td>I Why the component result is missing</td>\n</tr>\n<tr>\n<td>component.interpretation</td>\n<td>CodeableConcept</td>\n<td>High, low, normal, etc.</td>\n</tr>\n<tr>\n<td>component.referenceRange</td>\n<td>Content as for Observation.referenceRange</td>\n<td>Provides guide for interpretation of component result</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8e9a8ae2-3a24-4152-b0aa-76cb395d460f"},{"name":"CareTeam","item":[{"name":"CareTeam Search","id":"f57b4a01-5667-40c2-8734-a89fb040c078","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{API_BASE_URL}}/4_0_0/CareTeam?patient=93272&status=active","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/CareTeam?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/CareTeam?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for CareTeams that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/CareTeam?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>External Ids for this team</td>\n<td>false</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>proposed, active, suspended, inactive, entered-in-error</td>\n<td>true</td>\n</tr>\n<tr>\n<td>category</td>\n<td>[{ CodeableConcept }]</td>\n<td>Type of team</td>\n<td>false</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the team, such as crisis assessment teamfalse</td>\n<td>false</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>{ Reference(Group,Patient) }</td>\n<td>Who care team is for</td>\n<td>true</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>{ Reference(Encounter) }</td>\n<td>Encounter created as part of</td>\n<td>false</td>\n</tr>\n<tr>\n<td>period</td>\n<td>{ Period }</td>\n<td>Time period team covers</td>\n<td>false</td>\n</tr>\n<tr>\n<td>participant</td>\n<td>array</td>\n<td>Members of the team</td>\n<td>true</td>\n</tr>\n<tr>\n<td>participant-role</td>\n<td>[{ CodeableConcept }]</td>\n<td>Type of involvement</td>\n<td>true</td>\n</tr>\n<tr>\n<td>participant-member</td>\n<td>{ Reference(CareTeam,Organization,Patient,Practitioner, PractitionerRole, RelatedPerson) }</td>\n<td>Who is involved</td>\n<td>true</td>\n</tr>\n<tr>\n<td>participant-onBehalfOf</td>\n<td>{ Reference(Organization) }</td>\n<td>Organization of the practitioner</td>\n<td>false</td>\n</tr>\n<tr>\n<td>participant-period</td>\n<td>{ Period }</td>\n<td>Time period of participant</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reasonCode</td>\n<td>[{ CodeableConcept }]</td>\n<td>Why the care team exists</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reasonReference</td>\n<td>[{ Reference(Condition) }]</td>\n<td>Why the care team exists</td>\n<td>false</td>\n</tr>\n<tr>\n<td>managingOrganization</td>\n<td>[{ Reference(Organization) }]</td>\n<td>Organization responsible for the care team</td>\n<td>false</td>\n</tr>\n<tr>\n<td>telecom</td>\n<td>[{ ContactPoint }]</td>\n<td>A contact detail for the care team (that applies to all members)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>note</td>\n<td>[{ Annotation }]</td>\n<td>Comments made about the CareTeam</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","CareTeam"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93272"},{"key":"status","value":"active"}],"variable":[]}},"response":[{"id":"41b33e10-9837-4d2b-90a7-50a55e5cf2f4","name":"CareTeam Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/CareTeam?patient=93272&status=active","host":["{{API_BASE_URL}}"],"path":["4_0_0","CareTeam"],"query":[{"key":"patient","value":"93272"},{"key":"status","value":"active"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"802"},{"key":"ETag","value":"W/\"322-bLsMDWzZSmxXqMfvG1pdQqDOdxc\""},{"key":"Date","value":"Mon, 28 Nov 2022 05:22:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-28T05:22:01.275Z\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/CareTeam?patient=93272&status=active\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"43324\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/CareTeam/43324\",\n            \"resource\": {\n                \"resourceType\": \"CareTeam\",\n                \"id\": \"43324\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"status\": \"active\",\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"encounter\": {\n                    \"reference\": \"Encounter/48690\"\n                },\n                \"participant\": [\n                    {\n                        \"role\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://snomed.info/sct\",\n                                        \"code\": \"303118004\",\n                                        \"display\": \"Healthcare related organization (qualifier value)\"\n                                    }\n                                ],\n                                \"text\": \"Healthcare related organization (qualifier value)\"\n                            }\n                        ],\n                        \"member\": {\n                            \"reference\": \"Organization/56844\"\n                        }\n                    }\n                ],\n                \"managingOrganization\": [\n                    {\n                        \"reference\": \"Organization/59179\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"f57b4a01-5667-40c2-8734-a89fb040c078"},{"name":"CareTeam Read","id":"b591b004-852d-44b0-a901-d20c14d359b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/CareTeam/43324","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/CareTeam/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/CareTeam/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual CareTeam by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/CareTeam/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Is Optional</th>\n<th>Is Array</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID (String)</td>\n<td>The CareTeam  FHIR ID.</td>\n<td>false</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","CareTeam","43324"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"eaccad08-3615-4816-996f-42dd386cd4b6","name":"CareTeam Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/CareTeam/43324"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"487"},{"key":"Date","value":"Mon, 28 Nov 2022 05:32:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"CareTeam\",\n    \"id\": \"43324\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"status\": \"active\",\n    \"subject\": {\n        \"reference\": \"Patient/93272\"\n    },\n    \"encounter\": {\n        \"reference\": \"Encounter/48690\"\n    },\n    \"participant\": [\n        {\n            \"role\": [\n                {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://snomed.info/sct\",\n                            \"code\": \"303118004\",\n                            \"display\": \"Healthcare related organization (qualifier value)\"\n                        }\n                    ],\n                    \"text\": \"Healthcare related organization (qualifier value)\"\n                }\n            ],\n            \"member\": {\n                \"reference\": \"Organization/56844\"\n            }\n        }\n    ],\n    \"managingOrganization\": [\n        {\n            \"reference\": \"Organization/59179\"\n        }\n    ]\n}"}],"_postman_id":"b591b004-852d-44b0-a901-d20c14d359b1"}],"id":"16556f2b-e206-4273-a944-6f337c4041cc","description":"<p>The R4 CareTeam resource represents a patient’s care team members. Care team members or participants include practitioners (physicians, nurses, technicians, etc.), family members, friends, guardians, and the patient. The care team can be specific to an encounter or to the patient across all encounters (longitudinal).</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>External Ids for this team</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>proposed, active, suspended, inactive, entered-in-error</td>\n</tr>\n<tr>\n<td>category</td>\n<td>CodeableConcept</td>\n<td>Type of team</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the team, such as crisis assessment teamfalse</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>Reference(Group,Patient)</td>\n<td>Who care team is for</td>\n</tr>\n<tr>\n<td>encounter</td>\n<td>Reference(Encounter)</td>\n<td>Encounter created as part of</td>\n</tr>\n<tr>\n<td>period</td>\n<td>Period</td>\n<td>Time period team covers</td>\n</tr>\n<tr>\n<td>participant</td>\n<td>object</td>\n<td>Members of the team</td>\n</tr>\n<tr>\n<td>participant.role</td>\n<td>CodeableConcept</td>\n<td>Type of involvement</td>\n</tr>\n<tr>\n<td>participant.member</td>\n<td>eference(CareTeam, Organization, Patient, Practitioner, PractitionerRole, RelatedPerson)</td>\n<td>Who is involved</td>\n</tr>\n<tr>\n<td>participant.onBehalfOf</td>\n<td>Reference(Organization)</td>\n<td>Organization of the practitioner</td>\n</tr>\n<tr>\n<td>participant.period</td>\n<td>Period</td>\n<td>Time period of participant</td>\n</tr>\n<tr>\n<td>reasonCode</td>\n<td>CodeableConcept</td>\n<td>Why the care team exists</td>\n</tr>\n<tr>\n<td>reasonReference</td>\n<td>Reference(Condition)</td>\n<td>Why the care team exists</td>\n</tr>\n<tr>\n<td>managingOrganization</td>\n<td>Reference(Organization)</td>\n<td>Organization responsible for the care team</td>\n</tr>\n<tr>\n<td>telecom</td>\n<td>ContactPoint</td>\n<td>A contact detail for the care team (that applies to all members)</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Annotation</td>\n<td>Comments made about the CareTeam</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"16556f2b-e206-4273-a944-6f337c4041cc"},{"name":"Encounter","item":[{"name":"Encounter Search","id":"be144b69-bb7a-46ff-a13b-4a570c2beaaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Encounter?patient=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/Encounter?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for Encounters that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Encounter?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>Identifier(s) by which this encounter is known</td>\n<td>true</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>planned,arrived,triaged,in-progress,onleave,finished,cancelled</td>\n<td>true</td>\n</tr>\n<tr>\n<td>statusHistory</td>\n<td>array</td>\n<td>List of past encounter statuses</td>\n<td>false</td>\n</tr>\n<tr>\n<td>statusHistory-status</td>\n<td>code</td>\n<td>planned,arrived,triaged,in-progress,onleave,finished,cancelled</td>\n<td>false</td>\n</tr>\n<tr>\n<td>statusHistory-period</td>\n<td>{ Period }</td>\n<td>The time that the episode was in the specified status</td>\n<td>false</td>\n</tr>\n<tr>\n<td>class</td>\n<td>{ Coding }</td>\n<td>Classification of patient encounter</td>\n<td>true</td>\n</tr>\n<tr>\n<td>classHistory</td>\n<td>array</td>\n<td>List of past encounter classes</td>\n<td>false</td>\n</tr>\n<tr>\n<td>classHistory-class</td>\n<td>{ Coding }</td>\n<td>inpatient,outpatient,ambulatory,emergency</td>\n<td>false</td>\n</tr>\n<tr>\n<td>classHistory-period</td>\n<td>{ Period }</td>\n<td>The time that the episode was in the specified class</td>\n<td>false</td>\n</tr>\n<tr>\n<td>type</td>\n<td>[{ CodeableConcept }]</td>\n<td>Specific type of encounter</td>\n<td>true</td>\n</tr>\n<tr>\n<td>serviceType</td>\n<td>{ CodeableConcept }</td>\n<td>Specific type of service</td>\n<td>false</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>{ CodeableConcept }</td>\n<td>Indicates the urgency of the encounter</td>\n<td>false</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>{ Reference(Patient,Group) }</td>\n<td>The patient or group present at the encounter</td>\n<td>true</td>\n</tr>\n<tr>\n<td>episodeOfCare</td>\n<td>[{ Reference(EpisodeOfCare) }]</td>\n<td>Episode(s) of care that this encounter should be recorded against</td>\n<td>false</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>[{ Reference(ServiceRequest) }]</td>\n<td>The ServiceRequest that initiated this encounter</td>\n<td>false</td>\n</tr>\n<tr>\n<td>participant</td>\n<td>array</td>\n<td>List of participants involved in the encounter</td>\n<td>true</td>\n</tr>\n<tr>\n<td>participant-type</td>\n<td>[{ CodeableConcept }]</td>\n<td>Role of participant in encounter</td>\n<td>true</td>\n</tr>\n<tr>\n<td>participant-period</td>\n<td>{ Period }</td>\n<td>Period of time during the encounter that the participant participated</td>\n<td>true</td>\n</tr>\n<tr>\n<td>participant-individual</td>\n<td>{ Reference(Practitioner,PractitionerRole,RelatedPerson) }</td>\n<td>Persons involved in the encounter other than the patient</td>\n<td>true</td>\n</tr>\n<tr>\n<td>appointment</td>\n<td>[{ Reference(Appointment) }]</td>\n<td>The appointment that scheduled this encounter</td>\n<td>false</td>\n</tr>\n<tr>\n<td>period</td>\n<td>{ Period }</td>\n<td>The start and end time of the encounter</td>\n<td>true</td>\n</tr>\n<tr>\n<td>length</td>\n<td>Duration</td>\n<td>Quantity of time the encounter lasted (less time absent)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reasonCode</td>\n<td>[{ CodeableConcept }]</td>\n<td>Coded reason the encounter takes place</td>\n<td>false</td>\n</tr>\n<tr>\n<td>reasonReference</td>\n<td>{ Reference(Condition,Procedure,Observation,ImmunizationRecommendation) }</td>\n<td>Reason the encounter takes place (reference)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>diagnosis</td>\n<td>array</td>\n<td>The list of diagnosis relevant to this encounter</td>\n<td>false</td>\n</tr>\n<tr>\n<td>diagnosis-condition</td>\n<td>{ Reference(Condition,Procedure) }</td>\n<td>The diagnosis or procedure relevant to the encounter</td>\n<td>false</td>\n</tr>\n<tr>\n<td>diagnosis-use\"</td>\n<td>{ CodeableConcept }</td>\n<td>Role that this diagnosis has within the encounter (e.g. admission, billing, discharge)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>diagnosis-rank</td>\n<td>positiveInt</td>\n<td>Ranking of the diagnosis (for each role type)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>account</td>\n<td>[{ Reference(Account) }]</td>\n<td>The set of accounts that may be used for billing for this Encounter</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hospitalization</td>\n<td>array</td>\n<td>Details about the admission to a healthcare service</td>\n<td>true</td>\n</tr>\n<tr>\n<td>hospitalization-preAdmissionIdentifier</td>\n<td>Identifier</td>\n<td>Pre-admission identifier</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hospitalization-origin</td>\n<td>{ Reference(Location,Organization) }</td>\n<td>The location/organization from which the patient came before admission</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hospitalization-admitSource</td>\n<td>{ CodeableConcept }</td>\n<td>From where patient was admitted (physician referral, transfer)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hospitalization-reAdmission</td>\n<td>{ CodeableConcept }</td>\n<td>The type of hospital re-admission that has occurred (if any). If the value is absent, then this is not identified as a readmission</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hospitalization-dietPreference</td>\n<td>[{ CodeableConcept }]</td>\n<td>Diet preferences reported by the patient</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hospitalization-specialCourtesy</td>\n<td>[{ CodeableConcept }]</td>\n<td>Special courtesies (VIP, board member)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hospitalization-specialArrangement</td>\n<td>[{ CodeableConcept }]</td>\n<td>Wheelchair, translator, stretcher, etc.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hospitalization-destination</td>\n<td>{ Reference(Location,Organization) }</td>\n<td>Location/organization to which the patient is discharged</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hospitalization-dischargeDisposition</td>\n<td>{ CodeableConcept }</td>\n<td>Category or kind of location after discharge</td>\n<td>true</td>\n</tr>\n<tr>\n<td>location</td>\n<td>array</td>\n<td>List of locations where the patient has been</td>\n<td>true</td>\n</tr>\n<tr>\n<td>location-location</td>\n<td>{ Reference(Location) }</td>\n<td>Location the encounter takes place</td>\n<td>true</td>\n</tr>\n<tr>\n<td>location-status</td>\n<td>code</td>\n<td>planned,active,reserved,completed</td>\n<td>false</td>\n</tr>\n<tr>\n<td>location-physicalType</td>\n<td>{ CodeableConcept }</td>\n<td>The physical type of the location (usually the level in the location hierachy - bed room ward etc.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>location-period</td>\n<td>{ Period }</td>\n<td>Time period during which the patient was present at the location</td>\n<td>false</td>\n</tr>\n<tr>\n<td>serviceProvider</td>\n<td>{ Reference(Organization) }</td>\n<td>The organization (facility) responsible for this encounter</td>\n<td>false</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>{ Reference(Encounter) }</td>\n<td>Another Encounter this encounter is part of</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Encounter"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93272"}],"variable":[]}},"response":[{"id":"3f4a0fd3-5ab0-43cb-b573-bd2a36c7509f","name":"Encounter Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/Encounter?patient=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","Encounter"],"query":[{"key":"patient","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"36ff-Rfr+eelNlsc7wPndO1ioefgGEM8\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Tue, 29 Nov 2022 14:19:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-29T14:19:20.188Z\",\n    \"total\": 16,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter?patient=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"48213\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48213\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48213\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48213\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"1980-10-25T07:00:00.000Z\",\n                            \"end\": \"1980-10-25T07:00:00.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"1980-10-25T07:00:00.000Z\",\n                    \"end\": \"1980-10-25T07:00:00.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"48226\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48226\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48226\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48226\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"2015-08-19T22:24:34.000Z\",\n                            \"end\": \"2015-08-19T22:54:34.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52349\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"2015-08-19T22:24:34.000Z\",\n                    \"end\": \"2015-08-19T22:54:34.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52349\"\n                }\n            }\n        },\n        {\n            \"id\": \"48247\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48247\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48247\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48247\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"2015-04-25T02:00:19.000Z\",\n                            \"end\": \"2015-04-25T02:15:19.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52349\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"2015-04-25T02:00:19.000Z\",\n                    \"end\": \"2015-04-25T02:15:19.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52349\"\n                }\n            }\n        },\n        {\n            \"id\": \"48288\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48288\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48288\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48288\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"2010-10-09T00:19:54.000Z\",\n                            \"end\": \"2010-10-09T00:49:54.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"2010-10-09T00:19:54.000Z\",\n                    \"end\": \"2010-10-09T00:49:54.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"48687\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48687\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48687\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48687\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"1981-01-12T20:58:29.000Z\",\n                            \"end\": \"1981-01-12T21:13:29.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"1981-01-12T20:58:29.000Z\",\n                    \"end\": \"1981-01-12T21:13:29.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"48688\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48688\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48688\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48688\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"1981-01-20T20:58:29.000Z\",\n                            \"end\": \"1981-01-20T21:43:29.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"1981-01-20T20:58:29.000Z\",\n                    \"end\": \"1981-01-20T21:43:29.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"48689\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48689\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48689\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48689\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"1984-09-22T20:58:29.000Z\",\n                            \"end\": \"1984-10-06T20:58:29.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"1984-09-22T20:58:29.000Z\",\n                    \"end\": \"1984-10-06T20:58:29.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"48690\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48690\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48690\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48690\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"1997-11-10T20:58:29.000Z\",\n                            \"end\": \"1997-11-10T21:28:29.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"1997-11-10T20:58:29.000Z\",\n                    \"end\": \"1997-11-10T21:28:29.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"48691\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48691\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48691\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48691\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"2010-11-29T20:58:29.000Z\",\n                            \"end\": \"2010-11-29T21:13:29.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"2010-11-29T20:58:29.000Z\",\n                    \"end\": \"2010-11-29T21:13:29.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"48692\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48692\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48692\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48692\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"2012-07-02T20:58:29.000Z\",\n                            \"end\": \"2012-07-02T21:13:29.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"2012-07-02T20:58:29.000Z\",\n                    \"end\": \"2012-07-02T21:13:29.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"48693\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48693\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48693\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48693\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"2012-06-27T20:58:29.000Z\",\n                            \"end\": \"2012-06-27T21:13:29.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"2012-06-27T20:58:29.000Z\",\n                    \"end\": \"2012-06-27T21:13:29.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"48694\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48694\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48694\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48694\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"2012-07-09T20:58:29.000Z\",\n                            \"end\": \"2012-07-09T21:13:29.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"2012-07-09T20:58:29.000Z\",\n                    \"end\": \"2012-07-09T21:13:29.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"48695\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48695\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48695\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48695\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"2013-12-02T20:58:29.000Z\",\n                            \"end\": \"2013-12-02T21:28:29.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"2013-12-02T20:58:29.000Z\",\n                    \"end\": \"2013-12-02T21:28:29.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"48696\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/48696\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"48696\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"48696\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"2016-12-05T20:58:29.000Z\",\n                            \"end\": \"2016-12-05T21:13:29.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52251\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"2016-12-05T20:58:29.000Z\",\n                    \"end\": \"2016-12-05T21:13:29.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52251\"\n                }\n            }\n        },\n        {\n            \"id\": \"49154\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/49154\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"49154\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"49154\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"2015-11-18T14:43:20.000Z\",\n                            \"end\": \"2015-11-18T14:58:20.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52277\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"2015-11-18T14:43:20.000Z\",\n                    \"end\": \"2015-11-18T14:58:20.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52277\"\n                }\n            }\n        },\n        {\n            \"id\": \"51012\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/51012\",\n            \"resource\": {\n                \"resourceType\": \"Encounter\",\n                \"id\": \"51012\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"official\",\n                        \"system\": \"https://stage.cozeva.com\",\n                        \"value\": \"51012\"\n                    }\n                ],\n                \"status\": \"finished\",\n                \"class\": {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n                    \"code\": \"AMB\"\n                },\n                \"type\": [\n                    {\n                        \"text\": \"General examination of patient (procedure)\"\n                    }\n                ],\n                \"subject\": {\n                    \"reference\": \"Patient/93272\"\n                },\n                \"participant\": [\n                    {\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                                        \"code\": \"PPRF\"\n                                    }\n                                ],\n                                \"text\": \"primary performer\"\n                            }\n                        ],\n                        \"period\": {\n                            \"start\": \"2019-09-13T05:38:36.000Z\",\n                            \"end\": \"2019-09-13T05:53:36.000Z\"\n                        },\n                        \"individual\": {\n                            \"reference\": \"Practitioner/52349\"\n                        }\n                    }\n                ],\n                \"period\": {\n                    \"start\": \"2019-09-13T05:38:36.000Z\",\n                    \"end\": \"2019-09-13T05:53:36.000Z\"\n                },\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/52349\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"be144b69-bb7a-46ff-a13b-4a570c2beaaa"},{"name":"Encounter Read","id":"cfed7f75-eded-47f9-9d42-94d36a707bf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Encounter/48213","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual Encounter by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Encounter/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>String</td>\n<td>The Encounter FHIR ID.</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Encounter","48213"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"ddfe99dc-c504-4772-942a-f5b03d1da812","name":"Encounter Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Encounter/48213"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"770"},{"key":"Date","value":"Tue, 29 Nov 2022 07:16:42 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Encounter\",\n    \"id\": \"48213\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"identifier\": [\n        {\n            \"use\": \"official\",\n            \"system\": \"https://stage.cozeva.com\",\n            \"value\": \"48213\"\n        }\n    ],\n    \"status\": \"finished\",\n    \"class\": {\n        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n        \"code\": \"AMB\"\n    },\n    \"type\": [\n        {\n            \"text\": \"General examination of patient (procedure)\"\n        }\n    ],\n    \"subject\": {\n        \"reference\": \"Patient/93272\"\n    },\n    \"participant\": [\n        {\n            \"type\": [\n                {\n                    \"coding\": [\n                        {\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n                            \"code\": \"PPRF\"\n                        }\n                    ],\n                    \"text\": \"primary performer\"\n                }\n            ],\n            \"period\": {\n                \"start\": \"1980-10-25T07:00:00.000Z\",\n                \"end\": \"1980-10-25T07:00:00.000Z\"\n            },\n            \"individual\": {\n                \"reference\": \"Practitioner/52251\"\n            }\n        }\n    ],\n    \"period\": {\n        \"start\": \"1980-10-25T07:00:00.000Z\",\n        \"end\": \"1980-10-25T07:00:00.000Z\"\n    },\n    \"serviceProvider\": {\n        \"reference\": \"Organization/52251\"\n    }\n}"}],"_postman_id":"cfed7f75-eded-47f9-9d42-94d36a707bf2"}],"id":"d6e73f38-80e1-48a6-beff-cf1f3cc3bad8","description":"<p>The Encounter resource provides admissions or visits during which health care services were provided to a patient. An encounter has a class to distinguish between different health care settings such as inpatient, outpatient, emergency, etc. A patient may have one medical record number with multiple encounter numbers per facility or organization. There is substantial variance between organizations in the definition of an encounter and what events are aggregated together to constitute an encounter.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>Identifier(s) by which this encounter is known</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>planned,arrived,triaged,in-progress,onleave,finished,cancelled</td>\n</tr>\n<tr>\n<td>statusHistory</td>\n<td>object</td>\n<td>List of past encounter statuses</td>\n</tr>\n<tr>\n<td>statusHistory.status</td>\n<td>code</td>\n<td>planned,arrived,triaged,in-progress,onleave,finished,cancelled</td>\n</tr>\n<tr>\n<td>statusHistory.period</td>\n<td>Period</td>\n<td>The time that the episode was in the specified status</td>\n</tr>\n<tr>\n<td>class</td>\n<td>Coding</td>\n<td>Classification of patient encounter</td>\n</tr>\n<tr>\n<td>classHistory</td>\n<td>object</td>\n<td>List of past encounter classes</td>\n</tr>\n<tr>\n<td>classHistory.class</td>\n<td>Coding</td>\n<td>inpatient,outpatient,ambulatory,emergency</td>\n</tr>\n<tr>\n<td>classHistory.period</td>\n<td>Period</td>\n<td>The time that the episode was in the specified class</td>\n</tr>\n<tr>\n<td>type</td>\n<td>CodeableConcept</td>\n<td>Specific type of encounter</td>\n</tr>\n<tr>\n<td>serviceType</td>\n<td>CodeableConcept</td>\n<td>Specific type of service</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>CodeableConcept</td>\n<td>Indicates the urgency of the encounter</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>Reference(Patient,Group)</td>\n<td>The patient or group present at the encounter</td>\n</tr>\n<tr>\n<td>episodeOfCare</td>\n<td>Reference(EpisodeOfCare)</td>\n<td>Episode(s) of care that this encounter should be recorded against</td>\n</tr>\n<tr>\n<td>basedOn</td>\n<td>Reference(ServiceRequest)</td>\n<td>The ServiceRequest that initiated this encounter</td>\n</tr>\n<tr>\n<td>participant</td>\n<td>object</td>\n<td>List of participants involved in the encounter</td>\n</tr>\n<tr>\n<td>participant.type</td>\n<td>CodeableConcept</td>\n<td>Role of participant in encounter</td>\n</tr>\n<tr>\n<td>participant.period</td>\n<td>Period</td>\n<td>Period of time during the encounter that the participant participated</td>\n</tr>\n<tr>\n<td>participant.individual</td>\n<td>Reference(Practitioner, PractitionerRole,RelatedPerson)</td>\n<td>Persons involved in the encounter other than the patient</td>\n</tr>\n<tr>\n<td>appointment</td>\n<td>Reference(Appointment)</td>\n<td>The appointment that scheduled this encounter</td>\n</tr>\n<tr>\n<td>period</td>\n<td>Period</td>\n<td>The start and end time of the encounter</td>\n</tr>\n<tr>\n<td>length</td>\n<td>Duration</td>\n<td>Quantity of time the encounter lasted (less time absent)</td>\n</tr>\n<tr>\n<td>reasonCode</td>\n<td>CodeableConcept</td>\n<td>Coded reason the encounter takes place</td>\n</tr>\n<tr>\n<td>reasonReference</td>\n<td>Reference(Condition,Procedure,Observation,ImmunizationRecommendation)</td>\n<td>Reason the encounter takes place (reference)</td>\n</tr>\n<tr>\n<td>diagnosis</td>\n<td>object</td>\n<td>The list of diagnosis relevant to this encounter</td>\n</tr>\n<tr>\n<td>diagnosis.condition</td>\n<td>Reference(Condition,Procedure)</td>\n<td>The diagnosis or procedure relevant to the encounter</td>\n</tr>\n<tr>\n<td>diagnosis.use</td>\n<td>CodeableConcept</td>\n<td>Role that this diagnosis has within the encounter (e.g. admission, billing, discharge)</td>\n</tr>\n<tr>\n<td>diagnosis.rank</td>\n<td>positiveInt</td>\n<td>Ranking of the diagnosis (for each role type)</td>\n</tr>\n<tr>\n<td>account</td>\n<td>Reference(Account)</td>\n<td>The set of accounts that may be used for billing for this Encounter</td>\n</tr>\n<tr>\n<td>hospitalization</td>\n<td>object</td>\n<td>Details about the admission to a healthcare service</td>\n</tr>\n<tr>\n<td>hospitalization.preAdmissionIdentifier</td>\n<td>Identifier</td>\n<td>Pre-admission identifier</td>\n</tr>\n<tr>\n<td>hospitalization.origin</td>\n<td>Reference(Location,Organization)</td>\n<td>The location/organization from which the patient came before admission</td>\n</tr>\n<tr>\n<td>hospitalization.admitSource</td>\n<td>CodeableConcept</td>\n<td>From where patient was admitted (physician referral, transfer)</td>\n</tr>\n<tr>\n<td>hospitalization.reAdmission</td>\n<td>CodeableConcept</td>\n<td>The type of hospital re-admission that has occurred (if any). If the value is absent, then this is not identified as a readmission</td>\n</tr>\n<tr>\n<td>hospitalization.dietPreference</td>\n<td>CodeableConcept</td>\n<td>Diet preferences reported by the patient</td>\n</tr>\n<tr>\n<td>hospitalization.specialCourtesy</td>\n<td>CodeableConcept</td>\n<td>Special courtesies (VIP, board member)</td>\n</tr>\n<tr>\n<td>hospitalization.specialArrangement</td>\n<td>CodeableConcept</td>\n<td>Wheelchair, translator, stretcher, etc.</td>\n</tr>\n<tr>\n<td>hospitalization.destination</td>\n<td>Reference(Location,Organization)</td>\n<td>Location/organization to which the patient is discharged</td>\n</tr>\n<tr>\n<td>hospitalization.dischargeDisposition</td>\n<td>CodeableConcept</td>\n<td>Category or kind of location after discharge</td>\n</tr>\n<tr>\n<td>location</td>\n<td>object</td>\n<td>List of locations where the patient has been</td>\n</tr>\n<tr>\n<td>location.location</td>\n<td>Reference(Location)</td>\n<td>Location the encounter takes place</td>\n</tr>\n<tr>\n<td>location.status</td>\n<td>code</td>\n<td>planned,active,reserved,completed</td>\n</tr>\n<tr>\n<td>location.physicalType</td>\n<td>CodeableConcept</td>\n<td>The physical type of the location (usually the level in the location hierachy - bed room ward etc.</td>\n</tr>\n<tr>\n<td>location.period</td>\n<td>Period</td>\n<td>Time period during which the patient was present at the location</td>\n</tr>\n<tr>\n<td>serviceProvider</td>\n<td>Reference(Organization)</td>\n<td>The organization (facility) responsible for this encounter</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>Reference(Encounter)</td>\n<td>Another Encounter this encounter is part of</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d6e73f38-80e1-48a6-beff-cf1f3cc3bad8"},{"name":"Organization","item":[{"name":"Organization Search","id":"804b94e0-3e98-4260-b333-a03dca9494f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Organization?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/Organization?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for Organizations that meet supplied query parameters.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Organization?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>Identifies this organization  across multiple systems</td>\n<td>true</td>\n</tr>\n<tr>\n<td>active</td>\n<td>boolean</td>\n<td>Whether the organization's record is still in active use</td>\n<td>true</td>\n</tr>\n<tr>\n<td>type</td>\n<td>CodeableConcept</td>\n<td>Kind of organization</td>\n<td>false</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name used for the organization</td>\n<td>true</td>\n</tr>\n<tr>\n<td>alias</td>\n<td>string</td>\n<td>A list of alternate names that the organization is known as, or was known as in the past</td>\n<td>false</td>\n</tr>\n<tr>\n<td>telecom</td>\n<td>ContactPoint</td>\n<td>A contact detail for the organization</td>\n<td>true</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Address</td>\n<td>An address for the organization</td>\n<td>true</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>Reference(Organization)</td>\n<td>The organization of which this organization forms a part</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact</td>\n<td>object</td>\n<td>Contact for the organization for a certain purpose</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact.purpose</td>\n<td>CodeableConcept</td>\n<td>The type of contact</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact.name</td>\n<td>HumanName</td>\n<td>A name associated with the contact</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact.telecom</td>\n<td>ContactPoint</td>\n<td>Contact details (telephone, email, etc.)  for a contact</td>\n<td>false</td>\n</tr>\n<tr>\n<td>contact.address</td>\n<td>Address</td>\n<td>Visiting or postal addresses for the contact</td>\n<td>true</td>\n</tr>\n<tr>\n<td>endpoint</td>\n<td>Reference(Endpoint)</td>\n<td>Technical endpoints providing access to services operated for the organization</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"804b94e0-3e98-4260-b333-a03dca9494f1"},{"name":"Organization Read","id":"696e27aa-5af5-40c1-b87b-7a677d6863a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"https://stage-fhir.cozeva.com:16443/4_0_0/Organization/56701","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Organization/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/Organization/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual Organization by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Organization/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>String</td>\n<td>The Organization FHIR ID.</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","port":"16443","path":["4_0_0","Organization","56701"],"host":["stage-fhir","cozeva","com"],"query":[],"variable":[]}},"response":[{"id":"fed76813-41e0-4f33-a274-fc8f767e47e4","name":"Organization Read","originalRequest":{"method":"GET","header":[],"url":"https://stage-fhir.cozeva.com:16443/4_0_0/Organization/56701"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"547"},{"key":"Date","value":"Mon, 28 Nov 2022 10:29:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Organization\",\n    \"id\": \"56701\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"identifier\": [\n        {\n            \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n            \"value\": \"1710317482\"\n        }\n    ],\n    \"active\": true,\n    \"type\": [\n        {\n            \"coding\": [\n                {\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n                    \"code\": \"prov\",\n                    \"display\": \"Healthcare Provider\"\n                }\n            ],\n            \"text\": \"Healthcare Provider\"\n        }\n    ],\n    \"name\": \"WILLETTEDENTAL\",\n    \"telecom\": [\n        {\n            \"system\": \"phone\",\n            \"value\": \"9168999665\"\n        }\n    ],\n    \"address\": [\n        {\n            \"use\": \"work\",\n            \"type\": \"both\",\n            \"line\": [\n                \"4925 SW GRIFFITH DR, \"\n            ],\n            \"city\": \"BEAVERTON\",\n            \"state\": \"OR\",\n            \"postalCode\": \"97005\",\n            \"country\": \"US\"\n        }\n    ]\n}"}],"_postman_id":"696e27aa-5af5-40c1-b87b-7a677d6863a2"}],"id":"5341ad81-ac71-4684-bd32-3dfce0163ae2","description":"<p>The Organization resource describes a grouping of people or business entities relevant to the healthcare process. Organizations include hospitals, employers, insurance companies, physicians’ offices, rehabilitation facilities, laboratories, etc.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>Identifies this organization  across multiple systems</td>\n</tr>\n<tr>\n<td>active</td>\n<td>boolean</td>\n<td>Whether the organization's record is still in active use</td>\n</tr>\n<tr>\n<td>type</td>\n<td>CodeableConcept</td>\n<td>Kind of organization</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name used for the organization</td>\n</tr>\n<tr>\n<td>alias</td>\n<td>string</td>\n<td>A list of alternate names that the organization is known as, or was known as in the past</td>\n</tr>\n<tr>\n<td>telecom</td>\n<td>ContactPoint</td>\n<td>A contact detail for the organization</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Address</td>\n<td>An address for the organization</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>Reference(Organization)</td>\n<td>The organization of which this organization forms a part</td>\n</tr>\n<tr>\n<td>contact</td>\n<td>object</td>\n<td>Contact for the organization for a certain purpose</td>\n</tr>\n<tr>\n<td>contact.purpose</td>\n<td>CodeableConcept</td>\n<td>The type of contact</td>\n</tr>\n<tr>\n<td>contact.name</td>\n<td>HumanName</td>\n<td>A name associated with the contact</td>\n</tr>\n<tr>\n<td>contact.telecom</td>\n<td>ContactPoint</td>\n<td>Contact details (telephone, email, etc.)  for a contact</td>\n</tr>\n<tr>\n<td>contact.address</td>\n<td>Address</td>\n<td>Visiting or postal addresses for the contact</td>\n</tr>\n<tr>\n<td>endpoint</td>\n<td>Reference(Endpoint)</td>\n<td>Technical endpoints providing access to services operated for the organization</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5341ad81-ac71-4684-bd32-3dfce0163ae2"},{"name":"Practitioner","item":[{"name":"Practitioner Search","id":"ad8512eb-513f-48c4-9e85-d5169b9944c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Practitioner?patient=93272","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<p>Search for Practitioners that meet supplied query parameters.</p>\n<h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>An identifier for the person as this agent</td>\n<td>true</td>\n</tr>\n<tr>\n<td>active</td>\n<td>boolean</td>\n<td>Whether this practitioner's record is in active use</td>\n<td>false</td>\n</tr>\n<tr>\n<td>name</td>\n<td>HumanName</td>\n<td>The name(s) associated with the practitioner</td>\n<td>true</td>\n</tr>\n<tr>\n<td>telecom</td>\n<td>ContactPoint</td>\n<td>A contact detail for the practitioner (that apply to all roles)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Address</td>\n<td>Address(es) of the practitioner that are not role specific (typically home address)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>code</td>\n<td>male,female,other,unknown</td>\n<td>false</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>date</td>\n<td>The date  on which the practitioner was born</td>\n<td>false</td>\n</tr>\n<tr>\n<td>photo</td>\n<td>Attachment</td>\n<td>Image of the person</td>\n<td>false</td>\n</tr>\n<tr>\n<td>qualification</td>\n<td>object</td>\n<td>Certification, licenses, or training pertaining to the provision of care</td>\n<td>false</td>\n</tr>\n<tr>\n<td>qualification.identifier</td>\n<td>Identifier</td>\n<td>An identifier for this qualification for the practitioner</td>\n<td>false</td>\n</tr>\n<tr>\n<td>qualification.code</td>\n<td>CodeableConcept</td>\n<td>Coded representation of the qualification</td>\n<td>false</td>\n</tr>\n<tr>\n<td>qualification.period</td>\n<td>Period</td>\n<td>Period during which the qualification is valid</td>\n<td>false</td>\n</tr>\n<tr>\n<td>qualification.issuer</td>\n<td>Reference(Organization)</td>\n<td>Organization that regulates and issues the qualification</td>\n<td>false</td>\n</tr>\n<tr>\n<td>communication</td>\n<td>CodeableConcept</td>\n<td>A language the practitioner can use in patient communication</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Practitioner"],"host":["{{API_BASE_URL}}"],"query":[{"key":"patient","value":"93272"}],"variable":[]}},"response":[{"id":"182ecefa-0e6a-4633-926f-b1c6e41848db","name":"Practitioner Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{API_BASE_URL}}/4_0_0/Practitioner?patient=93272","host":["{{API_BASE_URL}}"],"path":["4_0_0","Practitioner"],"query":[{"key":"patient","value":"93272"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"ETag","value":"W/\"80ace-lz+VqCJRTEK9Yay9e2RN3ZPo/pM\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Tue, 29 Nov 2022 14:25:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2022-11-29T14:25:33.966Z\",\n    \"total\": 1037,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner?patient=93272\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"id\": \"88\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/88\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"88\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LONENR\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5038485861\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"17175 SW TUALATIN VALLEY HWY, B-2\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97003\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49687\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49687\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49687\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"REITZEL\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"C.N.M.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5038485861\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"17175 SW TUALATIN VALLEY HWY, B-2\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97003\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49690\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49690\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49690\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"73590\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LINDSLEY\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"RD, LD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5032133555\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"15455 NW GREENBRIER PKWY, SUITE #100\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49693\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49693\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49693\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"2350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KAUFMANN\",\n                        \"suffix\": [\n                            \"FNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5037972254\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4510 SW HALL BLVD, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49696\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49696\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49696\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"30330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHUSTER\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036437565\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4855 SW WESTERN AVE, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49698\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49698\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49698\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"18780\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHUETTE\",\n                        \"suffix\": [\n                            \"ATC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5032594864\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"18550 SW KINNAMAN RD, ALOHA HIGH SCHOOL\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97007\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49701\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49701\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49701\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"66750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KLESH\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"PMHNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036437565\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4855 SW WESTERN AVE, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49703\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49703\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49703\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AMBARD\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS PC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036436607\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6900 SW 105TH AVE, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97008\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49704\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49704\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49704\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46140\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHANDRAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036460161\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"15950 SW MILLIKAN WAY, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49706\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49706\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49706\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"88860\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JOHNSON\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036460161\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"15950 SW MILLIKAN WAY, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49715\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49715\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49715\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"70280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HETRICK\",\n                        \"suffix\": [\n                            \"PSY D\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036495651\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16535 SW TV HWY, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49717\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49717\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49717\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57540\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HILL\",\n                        \"suffix\": [\n                            \"MSW, LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5038901037\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4900 SW GRIFFITH DR, SUITE 251\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49718\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49718\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49718\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"85770\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SIGHTLER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5035211485\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14335 SW OSPREY DR, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97008\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49720\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49720\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49720\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"79070\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ALLEN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9894357727\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"352 N ROSS ST, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"MI\",\n                        \"postalCode\": \"48612\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49723\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49723\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49723\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"58530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JUNKEER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"N.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5035833077\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14420 SW SPANIEL CT, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97008\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49726\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49726\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49726\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"81870\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KELLEY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHD, CDP, RC, NCACII\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5037566117\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"19943 SW JETTE LN, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49730\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49730\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49730\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"13150\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WINCHESTER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9715064566\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16784 SW VINCENT ST, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97007\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49734\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49734\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49734\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RAYBOURN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5035962774\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9925 SW NIMBUS AVE, SUITE 100\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97008\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49736\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49736\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49736\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"21060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HORNBECK\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036432724\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14625 SW ALLEN BLVD, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97007\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49739\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49739\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49739\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"30340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CAPPARELLI\",\n                        \"suffix\": [\n                            \"B.A., QMHA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036411475\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14255 SW BRIGADOON CT, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49742\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49742\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49742\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BOUWKAMP\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"DPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5035970035\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"735 SW 158TH AVE, SUITE 160\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49749\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49749\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49749\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"20490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PETERSON\",\n                        \"suffix\": [\n                            \"PMHN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036292131\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16110 SW REGATTA LN, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49750\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49750\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49750\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"19490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOSE\",\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036847246\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9400 SW BEAVERTON HILLSDALE HWY, SUITE 205\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49752\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49752\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49752\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"92330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROMARY\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"LMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5037094446\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16545 NW SOMERSET DR, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49753\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49753\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49753\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12380\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GROAT\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"MA, LPC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5032584522\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14025 SW FARMINGTON RD # 160, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49755\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49755\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49755\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"85500\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HOCKEMA\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"RDH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036264248\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4855 SW WESTERN AVE, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49761\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49761\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49761\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54940\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PRINCEN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5037261021\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2225 NW TOWN CENTER DR, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49762\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49762\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49762\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87540\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HANSEN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5032380769\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14195 SW MILLIKAN WAY, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49764\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49764\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49764\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"68340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MAI\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"RPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036905833\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"15995 SW WALKER RD, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49768\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49768\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49768\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"80700\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TARJOTO\",\n                        \"suffix\": [\n                            \"OR LMT# 17573\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9712750298\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1500 NW BETHANY BLVD, SUITE 200\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49770\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49770\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49770\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"23770\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROTT\",\n                        \"suffix\": [\n                            \"P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5038855360\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4855 SW WESTERN AVE, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49772\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49772\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49772\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"53410\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOLLOY\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5039396922\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7921 SW CIRRUS DR, SUITE 27C\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97008\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49773\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49773\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49773\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"83900\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FINK\",\n                        \"suffix\": [\n                            \"CPD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9142625379\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"17683 SW JAY ST, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49779\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49779\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49779\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"7850\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHMIDT\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"RN, BSN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9712465240\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14255 SW BRIGADOON CT, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49782\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49782\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49782\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"83700\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"O'LOUGHLIN\",\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5037028514\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14085 SW TEAL BLVD APT 45E, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97008\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49784\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49784\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49784\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"19480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KIILSGAARD\",\n                        \"suffix\": [\n                            \"BA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5035919280\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4585 SW 185TH AVE, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97078\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49785\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49785\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49785\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39120\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TORRENCE\",\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5035909756\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14555 SW TEAL BLVD, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97007\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49788\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49788\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49788\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"55950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TAKAHASHI\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5032031000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"15700 SW GREYSTONE COURT, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49790\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49790\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49790\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41380\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DRAMBAREAN\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5035269151\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"15675 SW HART RD, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97007\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49793\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49793\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49793\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"14190\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HEYE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"L.C.S.W\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036269494\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9700 SW BEAVERTON HILLSDALE HWY, SUITE A OR B\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49797\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49797\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49797\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89570\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KRENTZ\",\n                        \"suffix\": [\n                            \"PMHNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036437565\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4855 SW WESTERN AVE, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49799\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49799\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49799\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39110\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RUIZ\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036411475\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14255 SW BRIGADOON CT, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49801\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49801\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49801\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LE\",\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5032772014\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4925 SW GRIFFITH DR, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49803\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49803\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49803\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"8740\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"POWELL\",\n                        \"suffix\": [\n                            \"OT/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036411475\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14255 SW BRIGADOON CT, SUITE 80\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49806\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49806\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49806\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"45780\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOSHER-AGBAYANI\",\n                        \"suffix\": [\n                            \"LMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036455810\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1500 NW BETHANY BLVD, SUITE 135\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49807\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49807\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49807\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NELSON\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"LMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5037814324\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"11365 SW CANYON RD, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49810\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49810\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49810\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"56420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHROEDER-BUSH\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"LMT, CA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036414244\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"12795 SW 3RD ST, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97229\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49812\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49812\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49812\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"9900\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SIMMERING\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5038486313\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"20722 SW NAPLES CT, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97007\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49819\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49819\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49819\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"79670\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JAVELOSA\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5038800306\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1516 SW TYRONE TER, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49820\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49820\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49820\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"24260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MALONE\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6612044966\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"17433 SW OCTOBER CT, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49823\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49823\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49823\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"51910\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SMITH\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036495651\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16535 SW TUALATIN VALLEY HWY, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49825\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49825\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49825\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31870\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHAGNON\",\n                        \"suffix\": [\n                            \"RDH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5412238432\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14357 SW TEAL BLVD APT 74A, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97008\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49830\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49830\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49830\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"88900\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"THOMAS\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036495651\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16535 SW TV HWY, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97003\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49833\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49833\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49833\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46980\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PEREZ\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036438626\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14645 SW FARMINGTON RD, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97007\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49839\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49839\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49839\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"88360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KIRKWOOD\",\n                        \"suffix\": [\n                            \"CRNA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5035073117\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14525 SW MILLIKAN WAY # 9658, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49844\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49844\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49844\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52020\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PIERCE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036265761\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"12820 SW 2ND ST, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49846\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49846\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49846\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"62270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KANDEL\",\n                        \"suffix\": [\n                            \"PMHNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5032773721\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3811-B SW HALL BLVD, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49849\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49849\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49849\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"30080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAMMOND\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"CNM\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036437565\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4855 SW WESTERN AVE, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49850\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49850\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49850\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"30920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LAVIOLETTE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"P.A.-C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036437565\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4855 SW WESTERN AVE, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49855\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49855\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49855\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"83330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SAWANT\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"O.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036438626\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14645 SW FARMINGTON RD, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97007\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49858\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49858\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49858\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DARLING\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"LMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5033174873\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3295 SW 106TH AVE, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49860\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49860\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49860\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"60230\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"COTTRELL\",\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036269494\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9670 SW BEAVERTON HILLSDALE HWY, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49862\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49862\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49862\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"32500\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GREENSTEIN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5036295300\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16155 NW CORNELL RD, STE 450\"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97006\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49864\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49864\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49864\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47980\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TANEOUS\",\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5037203006\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7110 SW 140TH PL, \"\n                        ],\n                        \"city\": \"BEAVERTON\",\n                        \"state\": \"OR\",\n                        \"postalCode\": \"97008\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49866\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49866\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49866\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"85010\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROMANZO\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156469220\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"721 ARBOR WAY, SUITE 105\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49869\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49869\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49869\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"70090\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BERGER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2158967448\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"140 INVERNESS DR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49874\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49874\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49874\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"37480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MARKOWITZ\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102753340\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1217 FAIRVIEW AVE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49875\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49875\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49875\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57070\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MALLOY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6108255800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"470 SENTRY PKWY E, SUITE 200\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49878\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49878\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49878\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"85220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KARSALIA\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102780420\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1115 DEKALB PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49882\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49882\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49882\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"62420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROCKELMANN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102771100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1777 SENTRY PARKWAY WEST, SUITE 101\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49884\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49884\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49884\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71670\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PETERY\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102750330\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1524 DEKALB PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49887\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49887\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49887\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BROWN\",\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8149311919\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1649 LARCHWOOD DR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49889\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49889\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49889\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65140\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LUETKE\",\n                        \"suffix\": [\n                            \"DO\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2157930600\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"721 SKIPPACK PIKE, SUITE 3\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49890\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49890\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49890\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"67480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BLUMENTHAL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156430707\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"721 ARBOR WAY, SUITE 102\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49896\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49896\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49896\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"92090\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FRIED\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102771990\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1515 DEKALB PIKE, SUITE 100\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49897\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49897\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49897\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BRADY\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156998727\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8000 TWIN SILO DR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49899\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49899\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49899\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61610\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DANSBURY\",\n                        \"suffix\": [\n                            \"D.P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5187440024\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2807 ASPEN CIR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49903\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49903\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49903\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"22090\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CARLONE\",\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2153675690\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"150 ORCHARD CT, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49907\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49907\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49907\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"9780\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BALDASSANO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102791811\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1567 DEKALB PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49913\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49913\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49913\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"4560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MCFADDEN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156430707\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"721 ARBOR WAY, SUITE 102\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49916\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49916\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49916\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"58560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHENKER\",\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156282172\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"549 BEALE RD, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49921\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49921\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49921\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"28960\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RODRIGUEZ\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6108255800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"470 SENTRY PKWY E, STE 200\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49923\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49923\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49923\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"64150\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KORMANN\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"R.PH., M.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102792332\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1301 SKIPPACK PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49925\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49925\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49925\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"16000\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MEYER\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"O.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2158155844\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1419 WALNUT ST, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49928\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49928\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49928\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"56210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RICH\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102795858\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1510 DEKALB PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49935\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49935\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49935\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NICOLAY\",\n                        \"suffix\": [\n                            \"LPC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2674198828\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"582 FAWNVIEW CIR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49941\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49941\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49941\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"42070\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AVERY-KNOX\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"B.A., COTA/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102771995\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1515 DEKALB PIKE, SUITE 100A\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49944\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49944\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49944\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"86410\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PETERY\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102750330\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1524 DEKALB PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49946\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49946\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49946\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"69640\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHOI\",\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2154952886\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"660 WYNDRISE DR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49949\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49949\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49949\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84150\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"URBANSKI\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156469220\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"721 ARBOR WAY, SUITE 105\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49962\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49962\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49962\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"42060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHEVARRIA\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"ATC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8668941300\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"725 SKIPPACK PIKE, SUITE 300\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49966\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49966\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49966\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"21550\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROSENMAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156439430\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"721 SKIPPACK PIKE, SUITE 4\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49970\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49970\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49970\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"58750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"REISER\",\n                        \"suffix\": [\n                            \"OTR\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156998721\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8000 TWIN SILO DR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49974\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49974\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49974\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"29700\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LIBRE-SABIO\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156998727\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8000 TWIN SILO DR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49986\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49986\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49986\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"4270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KRYCH\",\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102771100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1777 SENTRY PKWY W, DUBLIN HALL, STE 101\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49987\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49987\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49987\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"58170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MCHARG\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102797443\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"721 ARBOR WAY, SUITE 101\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49990\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49990\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49990\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"17310\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHREIBER\",\n                        \"suffix\": [\n                            \"PH. D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156289792\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"970 PHEASANT MEADOW RD, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"49992\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49992\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49992\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"69090\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROSENTHAL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156419150\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1 SPRINGHOUSE LN, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"49998\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/49998\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"49998\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OMANA\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156612923\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"576 FAWNVIEW CIRCLE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50002\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50002\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50002\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"15220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"D'ANDREA\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"RPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102773880\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1450 CREEK VIEW LN, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50006\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50006\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50006\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JANULIS\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2152876690\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"53 RAMSGATE CT, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50009\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50009\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50009\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CRAFT\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"OTR\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102750330\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1524 DEKALB PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50012\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50012\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50012\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"20210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CARPIO\",\n                        \"suffix\": [\n                            \"MS, CCC-SLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2674087466\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1777 SENTRY PKWY W, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50014\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50014\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50014\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"81860\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOLDSTEIN\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102797696\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"676 DEKALB PIKE, SUITE 101\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50016\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50016\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50016\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"67000\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SIEGEL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102720828\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"706 DEKALB PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50018\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50018\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50018\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MCKERNAN\",\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156610814\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"135 BURGUNDY CIR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50020\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50020\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50020\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BALICK\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4846538809\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1421 ROYAL OAK DR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50024\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50024\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50024\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49410\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LYNCH\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102771990\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1515 DEKALB PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50026\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50026\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50026\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61030\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"REDGUARD\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102775675\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1450 WICK LN, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50027\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50027\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50027\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"70841\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HSU\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2157380115\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1050 DEKALB PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50028\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50028\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50028\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"70840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BALDASSANO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156280855\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"828 CREEKVIEW DR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50031\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50031\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50031\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"13670\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NGUYEN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6105641816\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"880 FIELD CREST CT, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50037\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50037\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50037\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"92530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BECKMAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102759580\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1045 HEREFORD DRIVE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50040\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50040\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50040\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WILLIAMS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102758616\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1030 SKIPPACK PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50043\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50043\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50043\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"68670\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AGATONE\",\n                        \"suffix\": [\n                            \"O.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102771990\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1515 DEKALB PIKE, SUITE 100\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50045\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50045\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50045\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"23280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FLICK\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2154604307\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"576 ABBEY CT, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50052\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50052\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50052\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"25140\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHROEDER\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2156469220\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"721 ARBOR WAY, SUITE 105\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50055\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50055\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50055\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HATAM-EBRAHIMI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102724482\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"676 DEKALB PIKE, SUITE #207\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50057\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50057\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50057\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54380\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VERMETTE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2155423000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1787 SENTRY PKWY W BLDG 16, SUITE 400\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50059\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50059\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50059\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48300\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RUTBERG\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2155428896\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4 POMMEL LN, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50061\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50061\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50061\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"42030\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PARK\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102781110\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1732 DEKALB PIKE, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50064\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50064\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50064\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52130\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FRALICK-BALL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PSYD, MSN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2155655803\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"360 BARBY RD, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50068\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50068\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50068\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"5840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HIRSHBERG\",\n                        \"suffix\": [\n                            \"DO\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6106084051\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"955 ROSEWOOD DR, \"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50073\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50073\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50073\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33830\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MURPHY\",\n                        \"suffix\": [\n                            \"DPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102771100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1777 SENTRY PKWY W, DUBLIN HALL, SUITE 101\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50076\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50076\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50076\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"28520\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WASSERMAN\",\n                        \"suffix\": [\n                            \"DO\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2157930600\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"721 SKIPPACK PIKE, SUITE 3\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50077\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50077\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50077\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41120\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TERNOPOLSKA\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6102797443\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"721 ARBOR WAY, STE. 101\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50079\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50079\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50079\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"18920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOYER\",\n                        \"suffix\": [\n                            \"MSN, CRNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8778684827\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1787 SENTRY PKWY W BLDG 16, SUITE 405\"\n                        ],\n                        \"city\": \"BLUE BELL\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"19422\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50081\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50081\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50081\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"63890\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAMPTON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277269293\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2790 GULF TO BAY BOULEVARD, SUITE C\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33759\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50093\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50093\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50093\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"4460\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BURROWS\",\n                        \"suffix\": [\n                            \"PA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7272986612\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"300 PINELLAS ST, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50096\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50096\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50096\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"9720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LAM\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARM.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5059777752\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2950 ROOSEVELT BLVD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33760\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50101\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50101\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50101\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90000\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TACK\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274429670\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1944 N HERCULES AVE STE C, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33763\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50103\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50103\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50103\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SANTORA\",\n                        \"suffix\": [\n                            \"MSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7275310418\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3300 COVE CAY DR APT 4D, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33760\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50104\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50104\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50104\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SIMPSON\",\n                        \"suffix\": [\n                            \"PA-C\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277336111\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2655 STATE ROAD 580, SUITE 202\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33761\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50106\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50106\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50106\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57030\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PERSON\",\n                        \"suffix\": [\n                            \"MSN, ARNP, FNP-C\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7275244019\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"13773 ICOT BLVD, STE 502\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33760\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50108\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50108\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50108\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"51060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SULLIVAN\",\n                        \"suffix\": [\n                            \"DPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274085222\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1857 GULF TO BAY BLVD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33765\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50110\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50110\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50110\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GADDY\",\n                        \"suffix\": [\n                            \"M.S., R.D., LD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274036517\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1340 WEBER DRIVE, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33764\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50113\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50113\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50113\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31670\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KHAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274475454\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2707 E GRAND RESERVE CIR, APT 1422\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33759\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50115\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50115\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50115\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"18130\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BIDOT\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274436400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"612 DRUID RD E, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50118\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50118\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50118\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1960\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VENIS\",\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277264743\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2737 STATE ROAD 580, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33761\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50123\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50123\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50123\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"75400\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"REDWOOD\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274627220\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"300 PINELLAS STREET, WILLIAM R REDWOOD\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50124\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50124\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50124\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10870\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PRICE-MCCARTHY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7275858644\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1539 S HIGHLAND AVE, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50130\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50130\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50130\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"58270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHWEITZER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274427500\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1640 GULF TO BAY BLVD, SUITE 1\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33755\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50134\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50134\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50134\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BORZOR\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"PAC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7272986612\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"300 PINELLAS ST, MS 36 ER ADMINISTRATOR\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50139\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50139\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50139\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3830\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LOVETT\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274618537\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"300 PINELLAS ST, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50150\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50150\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50150\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"URICH\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274472267\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1762 N FORT HARRISON AVE, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33755\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50155\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50155\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50155\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"26120\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"POLIPNICK\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3205586772\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"935 CLEARWATER PROFESSIONAL BLDG, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"MN\",\n                        \"postalCode\": \"55320\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50157\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50157\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50157\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"83390\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RAINSFORD\",\n                        \"suffix\": [\n                            \"ARNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274451911\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"455 PINELLAS ST, SUITE 400\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50161\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50161\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50161\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"37420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AMIN\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274451992\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"455 PINELLAS ST, SUITE 400\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50164\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50164\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50164\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"92110\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"REMPFER\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7275244464\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1437 S BELCHER RD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33764\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50166\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50166\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50166\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"92350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RODWICK\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M. D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7272166193\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2349 SUNSET POINT RD, SUITE 405\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33765\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50169\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50169\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50169\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PALAZZOLA\",\n                        \"suffix\": [\n                            \"ARNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274478100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"400 PINELLAS ST, SUITE 300\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50174\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50174\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50174\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"53720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"STERN\",\n                        \"suffix\": [\n                            \"L.M.H.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7273277656\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2960 ROOSEVELT BLVD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33760\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50179\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50179\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50179\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"36500\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FISCARO\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274811694\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2007 DODGE ST, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33760\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50182\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50182\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50182\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49200\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHONECK\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7276698486\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"27001 US HIGHWAY 19 N STE 2037, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33761\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50186\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50186\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50186\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48040\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MCLEAD\",\n                        \"suffix\": [\n                            \"MOT, OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7275434207\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"401 FAIRWOOD AVE, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33759\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50190\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50190\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50190\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"45810\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOUDIE\",\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274507269\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14041 ICOT BLVD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33760\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50192\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50192\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50192\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NGUYEN\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"PHARM D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7272821003\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"30280 US HIGHWAY 19 N, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33761\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50193\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50193\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50193\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"79890\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BAGINSKI\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"ARNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274622131\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"400 PINELLAS ST, SUITE 200\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50196\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50196\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50196\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WERHNER\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"LMHC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277267442\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1938 SOULE RD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33759\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50199\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50199\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50199\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50690\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LADSON\",\n                        \"suffix\": [\n                            \"RPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274474248\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"501 S LINCOLN AVE, #10\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50201\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50201\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50201\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"28370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DAOUD\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7275610800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2325 ULMERTON RD, SUITE 27\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33762\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50207\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50207\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50207\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"35550\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SOCOLOSCHI\",\n                        \"suffix\": [\n                            \"MSW, RCSWI\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7272255288\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2717 SEVILLE BLVD, 4207\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33764\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50209\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50209\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50209\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90870\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WILLIAMS\",\n                        \"suffix\": [\n                            \"PTA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274431588\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1980 SUNSET POINT RD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33765\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50211\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50211\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50211\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"75110\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HOOTEN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274617041\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"641 1/2 MANDALAY AVE, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33767\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50213\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50213\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50213\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"53370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SAGLIBENE\",\n                        \"suffix\": [\n                            \"PAC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274618537\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"300 PINELLAS ST, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50219\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50219\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50219\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59180\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MARZIANO\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7275864432\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5771 ROOSEVELT BLVD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33760\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50220\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50220\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50220\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"56090\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WHEATON\",\n                        \"suffix\": [\n                            \"PHD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7275350468\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2240 BELLEAIR RD, SUITE 170\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33764\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50226\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50226\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50226\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GHAVAMI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M. D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274413711\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1106 DRUID RD S, SUITE 302\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50227\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50227\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50227\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"25000\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RAY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DO\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277973155\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2350 SUNSET POINT RD, SUITE C\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33765\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50229\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50229\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50229\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CABELLO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274433295\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"430 MORTON PLANT ST, SUITE 400\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50231\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50231\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50231\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"74160\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BRICKMAN\",\n                        \"suffix\": [\n                            \"EDD LMHC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277739297\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"28870 US HIGHWAY 19 NORTH, SUITE 360\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33761\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50232\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50232\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50232\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"5290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SEKHON\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277977528\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"25400 U.S. 19 NORTH, SUITE 114, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33763\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50235\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50235\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50235\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34380\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MALEMPATI\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277256110\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3251 N MCMULLEN BOOTH RD, SUITE 303\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33761\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50240\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50240\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50240\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHILDERS\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277091832\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"417 GRAHAM DR, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33765\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50241\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50241\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50241\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"17970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"URBAN\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"M.ED., ED.S., LMHC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274895232\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2960 ROOSEVELT BLVD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33760\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50244\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50244\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50244\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"9540\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WEBSTER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274588879\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"101 E GRAPEFRUIT CIR, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33759\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50247\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50247\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50247\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"70060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROMMEL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277255060\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2461 ENTERPRISE RD, SUITE C\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33763\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50250\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50250\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50250\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34830\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ECKARDT\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274430611\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"430 MORTON PLANT ST, SUITE 405\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50255\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50255\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50255\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1520\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHAPMAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274128294\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1221 ROGERS ST, SUITE B\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50267\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50267\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50267\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MAIN\",\n                        \"suffix\": [\n                            \"BSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7275244464\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1437 S BELCHER RD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33764\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50270\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50270\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50270\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"16430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MACDONALD\",\n                        \"suffix\": [\n                            \"RPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7275864414\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1604 S MISSOURI AVE, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50273\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50273\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50273\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"7530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GUTIERREZ\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"PA-C\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277917300\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2730 N MCMULLEN BOOTH RD, SUITE 100\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33761\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50275\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50275\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50275\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"7790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GENOVESE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"FNP-BC ARNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277873911\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3165 N MCMULLEN BOOTH RD, SUITE H\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33761\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50282\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50282\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50282\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"11390\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"STUDSTRUP\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274472380\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1447 GULF TO BAY BLVD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33755\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50285\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50285\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50285\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12550\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEE\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277890891\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3001 EASTLAND BLVD STE 7, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33761\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50286\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50286\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50286\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"68710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"STEVENS\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277258924\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2454 MCMULLEN BOOTH RD, STE 411\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33759\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50290\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50290\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50290\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1180\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WEBB\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DO\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7277245631\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2250 DREW ST, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33765\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50291\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50291\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50291\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"45510\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROUEL\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7276693800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1700 N MCMULLEN BOOTH RD, SUITE D1\"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33759\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50293\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50293\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50293\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"29590\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NOLAN\",\n                        \"suffix\": [\n                            \"ARNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274611439\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1020 LAKEVIEW RD, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50305\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50305\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50305\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DABNEY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7274627000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"300 PINELLAS ST, \"\n                        ],\n                        \"city\": \"CLEARWATER\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"33756\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50311\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50311\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50311\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"81730\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ANCELSON\",\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5167731028\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"43 CEDAR DR, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50313\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50313\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50313\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GENDLER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6467054505\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"560 NORHERN BLVD, 190\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50314\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50314\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50314\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MALONE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3057901897\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"440 NORTHERN BLVD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50318\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50318\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50318\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"75490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOTTA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5168294892\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"29 ASCOT RIDGE RD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50320\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50320\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50320\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33730\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MAKABI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5166035034\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3 CATHY LN, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11024\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50321\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50321\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50321\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"80530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FENG\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5167081264\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"22 CHAPEL PL, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50325\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50325\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50325\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"73650\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MARCHISELLI\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164664118\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"98 CUTTERMILL RD, 100\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50328\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50328\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50328\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90610\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TRUFELLI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164874433\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"833 NORTHERN BLVD, SUITE 100\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50329\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50329\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50329\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"74220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KLEIN\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164725700\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"825 NORTHERN BLVD, SUITE 301\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50331\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50331\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50331\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27320\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KASHANI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9177158845\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4 FRANKLIN PL, 1ST FL\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11023\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50332\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50332\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50332\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"25990\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GEORGE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164878110\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"173 EAST SHORE RD, SUITE 201\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11023\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50336\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50336\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50336\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FRAZZITTA\",\n                        \"suffix\": [\n                            \"NP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5166225123\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"NSUH DEPT OF OB GYN, 865 NORTHERN BOULEVARD\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50338\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50338\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50338\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57410\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OGRADY\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"RPAC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164822882\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"11 GRACE AVENUE, SUITE 100 BODIAN DERMATOLOGY GROU\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50340\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50340\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50340\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BELL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164878110\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"173 E SHORE RD, SUITE 201\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11023\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50344\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50344\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50344\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"79210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHI\",\n                        \"suffix\": [\n                            \"LAC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164664018\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"299 E SHORE RD STE 204, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11023\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50346\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50346\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50346\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"29170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OLEAGA-LABRIOLA\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"M.A., CCC-SLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164414970\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"105 CLOVER DR, PUPIL PERSONNEL SERVICES-GREAT NECK\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50349\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50349\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50349\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SUSI\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"R.N.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164414970\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"105 CLOVER DR, PUPIL PERSONNEL SERVICES-GREAT NECK\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50352\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50352\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50352\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ELIZEE\",\n                        \"suffix\": [\n                            \"FNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5168298190\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4519 IRIS LN, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11020\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50353\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50353\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50353\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"2950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WONG\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7189613211\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"355 EAST SHORE RD., \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11024\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50358\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50358\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50358\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65740\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"THIES\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5169962698\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"41 SHORE PARK RD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11023\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50360\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50360\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50360\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"18180\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOLDSTEIN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS, PHD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5166861408\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"25 PARK PL, #1EE\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50362\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50362\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50362\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEEDS\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164664118\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"98 CUTTERMILL RD, #100\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50372\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50372\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50372\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"38210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CUNNINGHAM\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164668900\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1000 NORTHERN BLVD, SUITE 120\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50381\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50381\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50381\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"74860\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHWARZWALD\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164826747\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"488 GREAT NECK RD, SUITE 300\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50384\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50384\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50384\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"17760\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KHEMLANI-PATEL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164877116\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"935 NORTHERN BLVD, SUITE 102\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50386\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50386\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50386\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27990\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WOLF\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164827810\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"233 E SHORE RD, #112\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11023\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50391\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50391\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50391\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33230\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHULMAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164824477\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"212 MIDDLE NECK RD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50396\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50396\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50396\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10520\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PENSAVALLE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PT DPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164820100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"287 NORTHERN BLVD, SUITE 104\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50397\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50397\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50397\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MICHELS\",\n                        \"suffix\": [\n                            \"P.T.M.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164667720\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"475 NORTHERN BLVD, SUITE 11\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50400\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50400\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50400\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57180\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FERRONE\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164660390\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"600 NORTHERN BLVD, SUITE 216\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50403\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50403\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50403\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"60980\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BRENDEL\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"FNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5167737737\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"900 NORTHERN BLVD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50404\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50404\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50404\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"13340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KOBLINER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164822542\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"23 BOND STREET, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50411\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50411\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50411\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LIN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"N.D., R.PH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8668002873\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"15 BOND ST, SUITE 107\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50413\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50413\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50413\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49500\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TSANG\",\n                        \"suffix\": [\n                            \"MA, OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7188134770\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"25805 PEMBROKE AVE, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11020\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50415\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50415\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50415\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"56650\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BRANDEN\",\n                        \"suffix\": [\n                            \"L.C.S.W.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164666124\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"23 OLD POND RD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11023\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50418\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50418\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50418\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52650\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BERSIN\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"P.A.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164988400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"833 NORTHERN BLVD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50421\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50421\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50421\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"73700\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FEUER\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5167291818\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16 CANTERBURY RD, APT. 1M\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50424\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50424\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50424\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50860\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DIROSA\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"M.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164414970\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"105 CLOVER DR, PUPIL PERSONNEL SERVICES- GREAT NEC\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50435\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50435\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50435\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"75780\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RUSSO\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164411497\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"105 CLOVER DR, PUPIL PERSONNEL SERVICES\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50439\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50439\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50439\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"5880\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ISRAEL\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"CSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164414970\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"105 CLOVER DR, PUPIL PERSONNEL SERVICES - GREAT NE\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50445\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50445\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50445\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"70590\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HASSID\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5166334177\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5 CATALINA DR, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11024\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50447\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50447\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50447\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50960\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHEKHER-KAPOOR\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5162630624\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"36 NORTH DR, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50450\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50450\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50450\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78820\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SWENSON\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5168299666\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"800 NORTHERN BLVD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50458\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50458\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50458\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"81840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MANDEL\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164666165\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"560 NORTHERN BLVD, SUITE207\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50463\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50463\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50463\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"43850\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHINDLER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164820599\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"11 WENSLEY DR, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50467\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50467\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50467\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"56620\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CANTOS\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164826700\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"900 NORTHERN BLVD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50470\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50470\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50470\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27200\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BERGER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5163902470\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1010 NORTHERN BLVD, STE 110\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50472\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50472\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50472\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"2430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RICHARDS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5168295651\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1010 NORTHERN BLVD, SUITE 116\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50479\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50479\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50479\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"2480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FERGUSON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.P.M\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164878107\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"75 S MIDDLE NECK RD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50484\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50484\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50484\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"37090\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LIS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5168295762\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"27 STONER AVE, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50489\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50489\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50489\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOUSSIS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5167736301\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1010 NORTHERN BLVD STE 100, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50493\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50493\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50493\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"67560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROSENTHAL\",\n                        \"suffix\": [\n                            \"DO\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5166225070\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"865 NORTHERN BLVD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50497\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50497\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50497\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"68800\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GELLMAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164828657\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"310 EAST SHORE ROAD, SUITE 203\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11023\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50498\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50498\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50498\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72020\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GREENWALD\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164828657\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"310 EAST SHORE ROAD, SUTE 203\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11023\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50501\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50501\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50501\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROSEN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164874020\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"173 E SHORE RD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11023\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50503\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50503\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50503\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"88440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEDER\",\n                        \"suffix\": [\n                            \"DO\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5168294530\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"170 GREAT NECK RD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50505\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50505\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50505\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"13250\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NORDEN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164666160\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"560 NORTHERN BLVD, SUITE 106\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50507\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50507\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50507\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"51690\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SIMMONS\",\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5168297639\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"225 COMMUNITY DRIVE, SUITE 10\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50509\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50509\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50509\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"86310\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GODFRIED\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164394766\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1000 NORTHERN BLVD, SUITE 250\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50511\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50511\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50511\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"83130\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KRISHNASASTRY\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164658700\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"NSUH-DEPARTMENT OF VASCULAR SURGERY, 825 NORTHERN \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50516\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50516\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50516\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1640\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DALIN\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5168299293\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"20 CANTERBURY RD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50518\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50518\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50518\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"2030\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RAPPAPORT\",\n                        \"suffix\": [\n                            \"R.PH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164823833\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"152 MIDDLE NECK RD, \"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50524\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50524\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50524\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"81280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TRAVALJA\",\n                        \"suffix\": [\n                            \"PA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5164666760\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"900 NORTHERN BLVD, SUITE 140\"\n                        ],\n                        \"city\": \"GREAT NECK\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"11021\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50527\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50527\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50527\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"16800\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TAN\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6468019771\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1575 S BERETANIA ST, SUITE 201-202\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96826\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50529\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50529\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50529\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"63850\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"EMOTO-BARNHILL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PSY.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087352494\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4211 WAIALAE AVE, SUITE 206A\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96816\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50531\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50531\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50531\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PIERCE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085934005\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1221 KAPIOLANI BLVD, SUITE 6G\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50533\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50533\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50533\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BARRY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084322000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1010 PENSACOLA ST, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50536\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50536\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50536\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"25920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GIBSON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"N.D., L.AC.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8089559556\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1481 S KING ST STE 312, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50538\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50538\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50538\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"91930\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KELII\",\n                        \"suffix\": [\n                            \"P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083818947\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"932 WARD AVE, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50541\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50541\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50541\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"35600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"YAMADA\",\n                        \"suffix\": [\n                            \"RD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085377546\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1380 LUSITANA ST LBBY 3, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50546\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50546\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50546\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"88410\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.,M.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8089515551\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1441 KAPIOLANI BLVD, SUITE 911\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50553\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50553\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50553\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BOLING\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"OTR\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085364650\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"725 KAPIOLANI BLVD STE C124, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50563\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50563\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50563\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"19510\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PARKER-DIAS\",\n                        \"suffix\": [\n                            \"RNC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085377203\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1301 PUNCHBOWL ST, FTC\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50565\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50565\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50565\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"53990\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHUNK\",\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085474221\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1301 PUNCHBOWL ST, FAMILY TREATMENT CENTER\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50572\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50572\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50572\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"56790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NIITANI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085891829\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"615 PIIKOI ST., #203\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50582\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50582\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50582\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"82890\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ESPIRITU\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085891829\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"615 PIIKOI ST, SUITE 203\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50584\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50584\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50584\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"56700\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LUM\",\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085910086\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1109 YOUNG ST, STE 106\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50586\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50586\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50586\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"25110\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GAILLARD\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"APRN-RX\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085851424\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"210 WARD AVE STE 124, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50587\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50587\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50587\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"29750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TAMASHIRO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"AU.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085971207\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1040 S KING ST STE 307, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50590\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50590\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50590\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"69830\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"O'DONNELL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8089836447\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1319 PUNAHOU ST STE 1120, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96826\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50591\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50591\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50591\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46380\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KNORR\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARM.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084328115\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3288 MOANALUA RD, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96819\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50597\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50597\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50597\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"66450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MASKELL\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"P.A.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084333707\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1 JARRETT WHITE RD, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96789\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50601\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50601\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50601\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27090\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOODWIN\",\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3062716494\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"787 SUNSET AVE, HOUSE E\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96816\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50604\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50604\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50604\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PHAM\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8088457111\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1520 N SCHOOL ST, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96817\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50606\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50606\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50606\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10310\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHU\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083881208\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1314 S KING ST, STE. 1564\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50609\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50609\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50609\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"35580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCOTT\",\n                        \"suffix\": [\n                            \"MT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084898888\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"677 ALA MOANA BLVD STE 605, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50610\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50610\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50610\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71830\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LYPEN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087484700\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"500 ALA MOANA BLVD, TOWER 4, SUITE 510\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50613\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50613\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50613\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78890\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TIWARI\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084257718\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1188 BISHOP ST, 1102\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50615\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50615\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50615\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOTOYAMA\",\n                        \"suffix\": [\n                            \"LCSW, CSAC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084787133\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1130 NORTH NIMITZ HWY, SUITE A259\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96817\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50618\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50618\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50618\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHIMA\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085862890\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1356 LUSITANA ST, STE. 510\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50621\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50621\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50621\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"23720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MORGAN-ROMAIN\",\n                        \"suffix\": [\n                            \"APRN-RX\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8086917300\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1301 PUNCHBOWL STREET, THE QUEEN'S MEDICAL CENTER \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50627\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50627\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50627\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"4080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KILBY\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082348934\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1888 KALAKAUA AVE, SUITE C312\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96815\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50630\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50630\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50630\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ABE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083943318\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"333 KEAHOLE ST BLDG A, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96825\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50635\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50635\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50635\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOODNESS-GLORY\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085291743\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"710 GREEN ST, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50637\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50637\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50637\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KAMADA\",\n                        \"suffix\": [\n                            \"LMFT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087792575\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"609 WYLLIE ST, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96817\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50640\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50640\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50640\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"29720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WANG\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085502505\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4348 WAIALAE AVE, #498\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96816\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50646\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50646\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50646\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"63260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MURAOKA\",\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085313511\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"226 N KUAKINI ST, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96817\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50650\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50650\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50650\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"80780\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHIN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8089496608\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2104 S KING ST, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96826\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50651\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50651\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50651\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"26170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GINO\",\n                        \"suffix\": [\n                            \"LMHC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083759867\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1154 FORT STREET MALL STE 206, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50654\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50654\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50654\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ABRAHAM\",\n                        \"suffix\": [\n                            \"M.A., CCC-SLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9084327449\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3288 MOANALUA RD, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96819\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50657\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50657\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50657\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"38190\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WYLIE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"M.S./CCC-SLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082820228\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"60 N KUAKINI ST, APT 2-I\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96817\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50659\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50659\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50659\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MEISELS\",\n                        \"suffix\": [\n                            \"RD,MPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084973760\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"345 QUEEN ST STE 712, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50662\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50662\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50662\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33590\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TORIANO\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087568275\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1301 LILIHA ST. APT. 108, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96817\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50667\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50667\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50667\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VILLA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9258528812\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1356 LUSITANA ST., STE. 510, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50670\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50670\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50670\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"66400\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CARTER\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085355555\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"932 WARD AVE STE 600, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50672\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50672\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50672\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48910\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ITO\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8088457771\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1130 N NIMITZ HWY RM C300, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96817\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50675\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50675\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50675\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46940\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LIUDAHL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085862920\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1356 LUSITANA ST, 6TH FLOOR\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50679\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50679\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50679\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"64470\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SAFFERY\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087916713\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"875 WAIMANU ST, SUITE 612\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50681\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50681\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50681\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"75270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RACINE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083804465\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"210 WARD AVE, SUITE 222\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50683\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50683\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50683\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NAKAMA\",\n                        \"suffix\": [\n                            \"PHARM.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082929693\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2313 LIME ST, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96826\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50686\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50686\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50686\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"23830\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOBIN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2514540968\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"733 UNIVERSITY AVE, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96826\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50687\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50687\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50687\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZACHARIAH\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085862890\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1356 LUSITANA ST STE 510, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50690\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50690\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50690\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"55880\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WATANABE\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085862890\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1356 LUSITANA ST STE 510, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50692\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50692\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50692\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"35180\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FENELON\",\n                        \"suffix\": [\n                            \"BEHAVIORAL THERAPIST\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085851424\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"210 WARD AVE, 219 B\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50694\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50694\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50694\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31000\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MARCHETTO-RYAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PSY.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8088481438\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"952 N KING ST, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96817\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50697\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50697\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50697\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"55470\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"STEWART\",\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084328593\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3288 MOANALUA RD, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96819\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50699\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50699\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50699\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"9980\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROBINSON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085336133\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1188 BISHOP ST, #2702\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50703\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50703\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50703\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MURPHYHAZZARD\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PSY.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8089554775\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1110 UNIVERSITY AVE, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96826\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50705\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50705\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50705\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DURKIN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8089453766\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1319 PUNAHOU ST, SUITE 630\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96826\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50710\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50710\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50710\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"77170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SAVALA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8089495305\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1319 PUNAHOU STREET, STE 801\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96826\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50712\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50712\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50712\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"24450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"URAMOTO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085232911\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"550 S BERETANIA ST, SUITE 514\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50715\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50715\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50715\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MYERS\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7085361285\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1325 WILDER AVE, MAUKA 10\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96822\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50716\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50716\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50716\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAMMER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085323711\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1360 S BERETANIA ST, #215\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96814\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50726\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50726\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50726\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"60270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ING\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085978791\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1301 PUNCHBOWL ST, EMERGENCY DEPT. QUEEN'S MEDICAL\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50731\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50731\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50731\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"COOK\",\n                        \"suffix\": [\n                            \"APRN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085474970\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1301 PUNCHBOWL ST, \"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50733\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50733\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50733\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"17270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOTT\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085375522\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"500 ALA MOANE BLVD, #4-470\"\n                        ],\n                        \"city\": \"HONOLULU\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96813\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50736\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50736\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50736\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48100\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"REYES\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9495598129\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14330 CULVER DR, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50737\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50737\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50737\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"85530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TANG\",\n                        \"suffix\": [\n                            \"RN, FNP-BC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5109962192\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9 WOODLAND DR, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50742\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50742\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50742\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"88300\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BRODY\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9493835388\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3881 ALTON PKWY STE A, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92606\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50745\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50745\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50745\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"69840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PADILLA\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"FNP, PHN, RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9512567898\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1416 GRAND CANAL, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92620\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50747\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50747\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50747\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"63440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOLRIZ\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.A., BCBA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9494745577\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2222 MARTIN, SUITE 170\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92612\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50748\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50748\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50748\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"64280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GHATNEKAR\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9495521380\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2 OSBORN ST STE 130, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50751\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50751\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50751\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"81130\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"REAGAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7145083600\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2860 MICHELLE, 2ND FLOOR\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92606\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50753\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50753\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50753\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROBINSON\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6067232167\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"275 COURT ST, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"KY\",\n                        \"postalCode\": \"40336\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50757\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50757\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50757\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"20110\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RIM\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARM.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9492625758\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6 WILLARD, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50765\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50765\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50765\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1590\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AFSHAR\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9496511256\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14150 CULVER DR, SUITE 307\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50768\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50768\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50768\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"79390\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ABDELMALEK\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9494539800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16100 SAND CANYON AVE, 300\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50770\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50770\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50770\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41670\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CORR\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DO\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9497488866\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"62 CORPORATE PARK, STE 120\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92606\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50774\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50774\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50774\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"86020\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FUJII\",\n                        \"suffix\": [\n                            \"P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9496537878\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4870 BARRANCA PKWY, 340\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50776\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50776\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50776\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89140\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SATYADEV\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9497889161\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2601 CAMPUS DRIVE, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92612\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50778\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50778\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50778\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72400\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MONSON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6067231000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"934 RICHMOND RD, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"KY\",\n                        \"postalCode\": \"40336\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50780\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50780\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50780\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71870\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DUONG\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9497538800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6 VENTURE, SUITE 350\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50781\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50781\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50781\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"24350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHAMBERLIN\",\n                        \"suffix\": [\n                            \"MSW, LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9492922092\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"17752 SKY PARK CIR, SUITE 260\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92614\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50784\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50784\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50784\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90660\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BRUSS\",\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9492529946\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16631 NOYES AVE, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92606\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50790\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50790\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50790\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"77040\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LIN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3109895066\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"61 SHADOWBROOK, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50793\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50793\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50793\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TEHRANIAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"ND\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4802264961\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"637 TURTLE CREST DR., \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92603\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50797\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50797\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50797\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOON\",\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9495527002\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4482 BARRANCA PKWY, SUITE #190\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50799\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50799\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50799\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"77430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"YOUNG\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7149049454\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1463 SPECTRUM, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50801\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50801\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50801\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"940\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OLSEN\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7145048929\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"30 MODESTO, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92602\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50803\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50803\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50803\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3960\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KACHINEH\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9495024722\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4199 CAMPUS DR STE 300, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92612\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50806\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50806\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50806\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"16660\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PREDEBON\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9492018981\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"631 HAYES, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92620\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50808\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50808\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50808\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"23570\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"POST\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"ATC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7147342900\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3588 BRYAN, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92602\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50814\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50814\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50814\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"36110\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SANTOS\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"OTR\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9497268030\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6 LADYPALM, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50818\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50818\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50818\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"11710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PLUEMER\",\n                        \"suffix\": [\n                            \"ATC, PT, CSCS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9498247633\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"UC IRVINE SPORTS MEDICINE, 209 CRAWFORD HALL\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92697\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50819\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50819\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50819\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"63530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOURRA\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9495524584\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14150 CULVER DR, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50822\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50822\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50822\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33410\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEE\",\n                        \"suffix\": [\n                            \"PHARM D\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9494539789\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16300 SAND CANYON AVE, STE 101\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50824\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50824\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50824\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9495525094\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4482 BARRANCA PKWY, SUITE 192\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50826\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50826\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50826\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"70910\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOODKIN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7142462337\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2525 DUPONT DR, T2-438\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92612\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50830\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50830\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50830\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MONGA\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9497332800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4050 BARRANCA PKWY STE 260, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50832\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50832\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50832\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GLUZMAN\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9499233200\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"11 TECHNOLOGY DR, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50837\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50837\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50837\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10040\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"INGRAM\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9492630270\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"17975 SKY PARK CIRCLE, STE #C\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92614\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50840\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50840\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50840\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHAFA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9495511113\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"113 WATERWORKS WAY STE 100, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50847\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50847\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50847\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"18110\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"O.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7147302020\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3873 PORTOLA PKWY, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92602\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50848\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50848\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50848\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"26780\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOSTAGHNI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9493799674\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"70 BRIARWOOD, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50850\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50850\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50850\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41180\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KEITH\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"LMFT, CEAP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9496502442\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4199 CAMPUS DR, SUITE #550, UNIVERSITYTOWER BUILDI\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92612\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50854\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50854\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50854\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50610\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JUNG\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9492510154\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1400 REYNOLDS AVE, SUITE 102\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92614\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50856\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50856\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50856\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"76870\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TOKITA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9494171100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16100 SAND CANYON AVE, STE 130\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50859\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50859\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50859\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"24270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"COE\",\n                        \"suffix\": [\n                            \"CPO\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9497274041\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6865 ALTON PKWY STE 120, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50861\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50861\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50861\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"43250\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9497861234\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4330 BARRANCA PKWY STE 230, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50870\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50870\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50870\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"92620\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KANG\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9497271772\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"113 WATERWORKS WAY, 115\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50874\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50874\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50874\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"35660\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MORGAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6195495645\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7 FALLINGSTAR, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92614\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50880\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50880\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50880\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"6790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KOBAYASHI\",\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9493336400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"980 ROOSEVELT, SUITE 100\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92620\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50883\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50883\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50883\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10780\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TSANG\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9498709687\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"18 ENDEAVOR STE 300, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50887\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50887\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50887\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"68560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MIRFAKHRAIE\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9493312546\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"107 STREAMWOOD, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92620\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50889\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50889\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50889\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"81530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ALI\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9492283009\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"20 PALATINE #429, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92612\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50896\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50896\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50896\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12500\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CARRASCOSA-ANDRE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"ANP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9498257650\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"16300 SAND CANYON AVE, SUITE 405\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50899\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50899\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50899\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"45970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BEAUDREAULT\",\n                        \"suffix\": [\n                            \"BCBA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9492501101\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2082 BUSINESS CENTER DR, SUITE 282\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92612\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50900\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50900\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50900\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOSHAR\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9499750150\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"17010 RED HILL AVE, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92614\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50905\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50905\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50905\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40900\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZEKARIA\",\n                        \"suffix\": [\n                            \"P.T., D.P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9498618600\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"17332 VON KARMAN AVE STE 120, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92614\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50907\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50907\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50907\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"EVERTS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9496542800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4950 BARRANCA PKWY, SUITE 204\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50910\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50910\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50910\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"53480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RECOR\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9497200167\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"101 PACIFICA, SUITE 220\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50912\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50912\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50912\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"IBENTHAL\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9496537878\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4870 BARRANCA PKWY, STE. 340\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50914\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50914\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50914\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90030\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOLDEN\",\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9497249220\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2182 DUPONT DR, SUITE 23\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92612\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50916\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50916\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50916\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"42400\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KULKARNI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9499233200\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"11 TECHNOLOGY DR, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92618\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50924\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50924\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50924\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"8450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BELLARDI\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9498571212\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"250 E YALE LOOP, SUITE E\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50926\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50926\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50926\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHEA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9494751898\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3785 ALTON PKWY, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92606\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50928\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50928\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50928\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GANEM\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9495525094\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4482 BARRANCA PKWY, SUITE 192\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50930\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50930\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50930\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"910\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OH\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9497260777\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4980 BARRANCA PKWY STE 160, \"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92604\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50933\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50933\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50933\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BEBAWI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9492600744\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"18021 SKY PARK CIR, BLDG 68 SUITE G & H\"\n                        ],\n                        \"city\": \"IRVINE\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"92614\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50937\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50937\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50937\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"69730\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VOLK\",\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082637203\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"407 ULUNIU ST STE 411, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50941\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50941\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50941\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10550\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAWKINS\",\n                        \"suffix\": [\n                            \"LMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082777347\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"516 KAIMAKE LOOP, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50949\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50949\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50949\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"28000\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LIPINSKI\",\n                        \"suffix\": [\n                            \"BCBA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082635521\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"328 ULUNIU ST, STE. 201\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50950\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50950\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50950\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93120\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"THOMPSON\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084797506\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"767 KAILUA RD, SUITE 211\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50954\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50954\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50954\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"32160\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MORITMOTO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082626344\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"43 ONEAWA ST, SUITE 209\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50956\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50956\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50956\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"26910\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KUO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D., PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082618345\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"414 ULUNIU ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50957\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50957\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50957\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"82610\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RUFINO\",\n                        \"suffix\": [\n                            \"RPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082302359\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"30 AULIKE ST, KAILUA PROFESSIONAL CENTER, SUITE 20\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50959\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50959\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50959\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"86460\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"COLLIS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082628601\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"95 LAIKI PL, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50962\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50962\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50962\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHUN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082610813\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"444 ULUNIU ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50965\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50965\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50965\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"14160\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RAY\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"MFT LICENSED\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082276791\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"442 KALAMA ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50967\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50967\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50967\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SEIDL\",\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8086382892\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2201 BAUER DR, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50969\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50969\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50969\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"43760\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROLFS\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083827268\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"417 ULUNIU ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50971\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50971\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50971\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61110\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DIETMEYER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082630343\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"602 KAILUA RD, #202\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50974\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50974\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50974\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"32920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CRABB\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082669922\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"FAMILY COURT LIAISON BRANCH, 42-470 KALANIAOLE HWY\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50976\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50976\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50976\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"45630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DEAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"OD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082619735\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"111 HEKILI ST, SUITE 108\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50977\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50977\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50977\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"20250\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHONGTIM\",\n                        \"suffix\": [\n                            \"CNM\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"201 HAMAKUA DR, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50981\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50981\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50981\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"91570\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KIM\",\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082615354\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"WEINBERG WELLNESS CENTER, 642 ULUKAHIKI ST #308\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50983\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50983\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50983\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40540\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHIU\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082626673\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"407 ULUNIU ST, #212\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50985\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50985\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50985\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"82850\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LIM\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087359093\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1585 ULUPII ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50989\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50989\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50989\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"22210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KAMINSKAS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082614476\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"642 ULUKAHIKI STREET, SUITE 300\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50990\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50990\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50990\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"4340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GREANEY\",\n                        \"suffix\": [\n                            \"MA, MFT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083875528\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"970 N KALAHEO AVE STE A204, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"50992\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50992\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50992\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"14070\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOWRY\",\n                        \"suffix\": [\n                            \"LPN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8709174231\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2714 CABANAYAN ST APT D, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50996\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50996\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50996\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39130\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TRAN\",\n                        \"suffix\": [\n                            \"LMFT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6612200441\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"970 N KALAHEO AVE, A-216\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"50999\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/50999\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"50999\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"24490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TAKEMOTO\",\n                        \"suffix\": [\n                            \"LMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082948043\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"407 ULUNIU ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51004\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51004\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51004\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"76050\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VINCENT\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082634788\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"154 PAUAHILANI PL, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51006\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51006\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51006\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"13350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FRIEND\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082549594\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"970 N KALAHEO AVE, C314\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51010\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51010\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51010\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"70190\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WANG\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082618345\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"414 ULUNIU ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51013\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51013\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51013\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"77710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HANNAH\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082545454\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"970 N KALAHEO AVE, SUITE A305\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51018\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51018\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51018\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"11730\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MASTER\",\n                        \"suffix\": [\n                            \"R.PH.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323452\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"201 HAMAKUA DR, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51022\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51022\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51022\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59300\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LUKE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8089274928\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"218 ILIHAU ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51026\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51026\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51026\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3860\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WAGNER\",\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082545468\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"970 N KALAHEO AVE, A204\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51029\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51029\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51029\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"4670\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FAILLA\",\n                        \"suffix\": [\n                            \"CCC-A\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082634111\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 AULIKE ST, SUITE 211\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51032\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51032\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51032\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"38670\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PEARSON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082614434\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1248 ALOHA OE DR, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51035\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51035\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51035\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39320\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GALLAGHER\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082634263\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"122 ONEAWA ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51040\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51040\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51040\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"29300\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"YOSHICEDO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DVM\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082638863\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"111 HEKILI ST, STE 104\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51041\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51041\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51041\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"17390\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HEALY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8089544500\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"660 KAILUA RD, THE MEDICAL CORNER\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51043\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51043\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51043\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ENDICOTT\",\n                        \"suffix\": [\n                            \"M.D., M.P.H.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082618842\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"438 ULUNIU ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51047\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51047\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51047\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84900\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DEGUZMAN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082669937\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"30 AULIKE ST, S-203\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51052\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51052\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51052\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"80510\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BROWN\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"MSCP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8086643874\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 AULIKE ST STE 411, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51054\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51054\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51054\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"91400\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NALAIELUA\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"MSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082773337\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1220 HELE ST UNIT 1, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51059\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51059\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51059\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"91740\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"METEVIER\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"R.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9705568785\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"554 ULUMAWAO ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51061\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51061\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51061\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"42640\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LINDEN-DOZIER\",\n                        \"suffix\": [\n                            \"BCBA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083933497\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"813 MALUNIU AVE, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51062\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51062\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51062\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89770\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHANG\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082613364\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"407 ULUNIU ST., STE.313\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51070\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51070\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51070\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"42490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SULLIVAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082363131\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"417 ULUNIU ST STE H, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51075\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51075\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51075\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"28260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KOSUT\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8088882849\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"227 KAHAKO ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51077\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51077\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51077\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"77520\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NEWELL\",\n                        \"suffix\": [\n                            \"R.N.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5048750600\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1615 PUHI LANE, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51085\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51085\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51085\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAMADA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082228199\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"407 ULUNIU ST STE 412, SUITE #412\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51086\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51086\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51086\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59050\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TAYLOR\",\n                        \"suffix\": [\n                            \"MS,PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082776167\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"354 KAELEPULU DR APT D, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51091\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51091\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51091\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"23530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PROSE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082610055\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"322 AOLOA ST, APT 905\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51094\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51094\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51094\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"YIM\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082636692\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"30 AULIKE ST, STE 302\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51095\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51095\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51095\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOLDSTEIN\",\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087441787\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"389 KAELEPULU DR APT A, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51100\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51100\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51100\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"66970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WATAOKA\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082619794\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"609 KAILUA RD, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51101\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51101\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51101\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"11770\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KING\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082613326\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"407 ULUNIU ST, 4TH FLOOR\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51104\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51104\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51104\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"16400\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SARUBBI\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082613326\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"407 ULUNIU ST, 4TH FLOOR\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51109\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51109\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51109\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61650\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CLOUTIER\",\n                        \"suffix\": [\n                            \"MSW ACSW BCD QCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082630636\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"32 KAINEHE ST, SUITE 203\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51111\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51111\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51111\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"30040\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"YAMASHIRO\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082613487\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"322 AOLOA ST., RM 1711\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51115\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51115\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51115\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"62000\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DEAN\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083718750\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"175 KIHAPAI ST, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51118\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51118\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51118\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"79040\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MCKINLEY\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"APRN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087832271\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"563 PAAKIKI PL, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51119\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51119\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51119\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"24360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KROLL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.AC.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082624550\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"320 ULUNIU ST, SUITE 2\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51123\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51123\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51123\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"68360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FUJIMOTO\",\n                        \"suffix\": [\n                            \"NP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"201 HAMAKUA DR, \"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51126\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51126\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51126\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"18750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KUROSU\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D., L.AC.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083663985\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"417 ULUNIU ST, SUITE G\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51129\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51129\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51129\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JENKINS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082545503\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"970 N KALAHEO AVE, SUITE C309\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51131\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51131\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51131\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"4870\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SATZ\",\n                        \"suffix\": [\n                            \"PSY.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082615355\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"445 KAWAILOA RD, #10\"\n                        ],\n                        \"city\": \"KAILUA\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96734\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51133\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51133\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51133\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27550\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MILES\",\n                        \"suffix\": [\n                            \"LMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082265807\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"47-008 HUI IWA PL APT A, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51134\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51134\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51134\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LOMONT\",\n                        \"suffix\": [\n                            \"PHD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082341835\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46325 AUNA ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51137\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51137\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51137\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39830\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GALLAGHER-FELIX\",\n                        \"suffix\": [\n                            \"NP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-602 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51141\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51141\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51141\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"36030\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"YANAI\",\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082355398\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-461 PUA INIA ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51144\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51144\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51144\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"25160\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WADA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082568984\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-141 HILINAMA ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51147\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51147\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51147\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"20700\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEE\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082356028\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45 123 ALINA PLACE, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51150\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51150\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51150\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"85430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"QUICK\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"MFT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082473594\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"44-117 PUUOHALAI PL, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51152\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51152\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51152\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44700\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CAVANAGH\",\n                        \"suffix\": [\n                            \"PHD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9702503434\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"44-708 ALAKAI ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51155\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51155\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51155\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"42890\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CLARK\",\n                        \"suffix\": [\n                            \"RDH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082573100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"BLDG 3089D STREET MCBH, 21ST DENTAL COMPANY\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96863\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51157\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51157\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51157\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LAURENT\",\n                        \"suffix\": [\n                            \"MS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085543378\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-666 UHILEHUA PL, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51161\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51161\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51161\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"77970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SOUZA\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"PTA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087221077\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"47-774 HUI ULILI ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51162\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51162\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51162\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49610\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ELTING\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082363222\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-001 KAMEHAMEHA HWY STE 409, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51165\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51165\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51165\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"53080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NGUYEN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323853\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-602 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51167\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51167\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51167\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"26380\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ARAKAKI\",\n                        \"suffix\": [\n                            \"RPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323853\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-602 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51169\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51169\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51169\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"4970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MCKINZIE\",\n                        \"suffix\": [\n                            \"LCPC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2406015272\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-329 PUALI ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51172\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51172\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51172\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"13360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WATKINS\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082473737\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-001 KAMEHAMEHA HWY, 412\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51174\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51174\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51174\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"51620\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KATTERHAGEN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082472472\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-310 HOAUNA ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51177\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51177\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51177\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12700\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BERINOBIS\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082361529\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-1144 KAMEHAMEHA HWY, SUITE 200\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51179\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51179\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51179\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FONTANILLA\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"MT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082361529\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-1144 KAMEHAMEHA HWY, SUITE 200\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51182\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51182\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51182\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"17200\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OSTI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8436555087\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"44-424 KANEOHE BAY DR, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51183\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51183\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51183\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"63490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHIH\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082478508\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-001 KAM HWY, 220\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51187\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51187\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51187\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34810\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"D\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"SHOULTZ, D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082350018\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-1144 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51191\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51191\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51191\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CONNORS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082356677\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-1144 KAMEHAMEHA HWY, SUITE 200\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51195\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51195\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51195\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61890\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZWICK\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082912858\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"47-493 AHUIMANU RD, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51198\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51198\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51198\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KUWAMOTO\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"O.T.R.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082335495\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-691 KEAAHALA RD RM 30, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51201\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51201\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51201\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39400\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MURAKAMI\",\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082476575\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-1127 KAM HWY, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51207\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51207\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51207\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93090\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KANG\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082353131\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-1144 KAMEHAMEHA HWY, SUITE 301\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51208\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51208\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51208\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"88060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KUTAKA\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"APRN.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085547489\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"47-108 HUI KELU PL, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51210\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51210\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51210\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90130\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JOHNSON\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082351377\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-021 LIKEKE PL, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51215\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51215\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51215\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SMITH\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-602 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51220\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51220\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51220\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"4130\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TRINH\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082472191\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-710 KEAAHALA RD, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51223\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51223\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51223\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HONDA\",\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083686231\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-433 PUA INIA ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51225\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51225\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51225\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"13820\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BUCK\",\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083917407\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-334 IKIIKI ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51229\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51229\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51229\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"80620\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KUNIMURA\",\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082355398\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-461 PUA INIA ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51232\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51232\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51232\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"19900\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CAI\",\n                        \"suffix\": [\n                            \"LAC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082251539\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-001 KAMEHAMEHA HWY, SUITE 321\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51233\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51233\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51233\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"92660\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LAI\",\n                        \"suffix\": [\n                            \"RD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-602 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51237\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51237\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51237\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"30090\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DIXON\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082351377\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-021 LIKEKE PL, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51238\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51238\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51238\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46570\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"THOMAS\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082333775\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-691 KEAAHALA RD, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51241\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51241\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51241\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DETTWEILER\",\n                        \"suffix\": [\n                            \"FNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-602 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51243\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51243\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51243\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VILLEGAS\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"MA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082391531\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"47-344 WAIHEE RD, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51244\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51244\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51244\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"37370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BAUTISTA\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082356677\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-1144 KAMEHAMEHA HWY, SUITE 200\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51247\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51247\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51247\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"81440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KIM\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082364567\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-001 KAM HWY STE 418, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51251\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51251\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51251\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"42040\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KOZUKI\",\n                        \"suffix\": [\n                            \"PHARM.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323815\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-602 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51253\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51253\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51253\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"60750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BEY\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"MS, LMHC,CSAC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083722577\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-001 KAMEHAMEHA HWY, STE 409\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51256\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51256\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51256\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"42860\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FINLEY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087531242\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-510 KAMEHAMEHA HWY, A\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51257\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51257\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51257\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"16720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RIEU\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082362288\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-021 LIKEKE PL, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51259\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51259\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51259\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOSKAL\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083973170\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-021 LIKEKE PL, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51260\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51260\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51260\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"9490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WARING\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-602 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51266\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51266\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51266\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90460\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BOWLING\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARM.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082368622\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-710 KEAAHALA RD, BLD L-36\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51269\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51269\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51269\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71820\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CAMPBELL\",\n                        \"suffix\": [\n                            \"L.C.S.W.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8085904905\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-036 KAMEHAMEHA HIGHWAY, #197\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51270\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51270\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51270\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93190\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"IWAOKA\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082355958\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-270 WILLIAM HENRY RD, SUITE 205\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51271\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51271\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51271\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"17120\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAMADA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082363222\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-001 KAMEHAMEHA HWY, STE. 409\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51275\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51275\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51275\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"29380\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ENOMOTO\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082351377\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-021 LIKEKE PL, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51277\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51277\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51277\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"77810\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CRUZ\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082333775\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-691 KEAAHALA RD, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51279\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51279\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51279\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HANNON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082308000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-1144 KAMEHAMEHA HWY STE #301, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51282\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51282\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51282\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HIGA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARM.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082910302\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-267 PAHIKAUA ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51289\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51289\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51289\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JOSHI-PETERS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082363404\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-001 KAMEHAMEHA HWY, 419 - B\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51291\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51291\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51291\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"92860\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RICO\",\n                        \"suffix\": [\n                            \"PT, MPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082335495\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-691 KEAAHALA RD RM 30, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51293\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51293\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51293\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ANSDELL\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084323800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-602 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51298\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51298\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51298\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"70470\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ALLRED\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082362288\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-021 LIKEKE PL, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51301\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51301\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51301\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"8200\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PASCAL\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"PHYSICAL THERAPIST\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082472472\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46-310 HOAUNA ST, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51302\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51302\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51302\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72230\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KIDO\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8082335495\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45-691 KEAAHALA RD, ROOM 30\"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51304\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51304\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51304\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52800\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"THAYER\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"RD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084294214\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"44-403 KANEOHE BAY DR, \"\n                        ],\n                        \"city\": \"KANEOHE\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96744\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51309\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51309\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51309\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"83790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ORR\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8168806440\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5830 NW BARRY RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64154\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51311\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51311\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51311\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48510\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"IQBAL\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162343894\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2401 GILLHAM RD, CHILDREN'S MERCY HOSPITALS & CLIN\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51315\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51315\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51315\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65540\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MUNDIS\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8163331326\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1000 E 101ST TER, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64131\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51318\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51318\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51318\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46930\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HOMBURGER\",\n                        \"suffix\": [\n                            \"RN, BC, M-SCNS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8164618288\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4400 WORNALL RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64111\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51320\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51320\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51320\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"2680\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEVITCH\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"MS, CGC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8165230873\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6400 PROSPECT AVE, SUITE 546\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64132\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51323\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51323\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51323\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50250\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BRACKEN\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9136388961\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8342 N OVERLAND DR, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64151\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51325\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51325\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51325\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12470\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RUSSELL\",\n                        \"suffix\": [\n                            \"O.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9137883234\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1218 NORTH 79TH STREET, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66112\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51328\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51328\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51328\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"63420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CORDELL\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9135886100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3901 RAINBOW BLVD, MS 3017\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66160\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51330\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51330\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51330\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"42340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SULLIVAN\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8164122900\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9405 N OAK TRFWY, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64155\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51333\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51333\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51333\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FREEMAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9135881944\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3901 RAINBOW BLVD, MS 4017\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66160\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51334\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51334\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51334\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"38230\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SIMANOVSKY\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8169428200\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"373 W 101ST TER, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64114\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51339\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51339\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51339\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PSY.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8169222500\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4801 E LINWOOD BLVD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64128\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51342\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51342\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51342\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VAUGHAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8168614700\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4801 E LINWOOD BLVD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64128\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51344\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51344\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51344\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CARRIGAN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8167563858\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4010 WASHINGTON ST, SUITE 405\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64111\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51347\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51347\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51347\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52850\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RANDELL\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162343665\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2401 GILLHAM RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51353\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51353\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51353\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"19320\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KETTERMAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8169319912\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"411 NICHOLS RD, SUITE 217\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64112\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51355\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51355\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51355\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"58260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MELANSON\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"OTR L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162343380\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2401 GILLHAM RD, OCCUPATIONAL THERAPY DEPARTMENT\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51358\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51358\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51358\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"88820\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WOERTHER\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9135964100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8929 PARALLEL PKWY, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66112\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51361\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51361\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51361\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"58520\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TILAWEN\",\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8169227645\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3801 BLUE PKWY, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64130\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51362\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51362\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51362\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"26090\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FREIBERGER-O'KEEFE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8169328232\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4401 WORNALL RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64111\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51365\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51365\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51365\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AMBROSE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8169222640\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4801 LINWOOD BLVD, KANSAS CITY VAMC,\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64128\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51367\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51367\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51367\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"2410\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FERRELL\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9139565620\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2205 W 36TH AVE, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66103\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51369\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51369\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51369\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72590\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TOBUREN\",\n                        \"suffix\": [\n                            \"CPNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162343000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2401 GILLHAM RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51371\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51371\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51371\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HUGHES\",\n                        \"suffix\": [\n                            \"CPNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8169416400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1004 CARONDELET DR, SUITE 330\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64114\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51376\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51376\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51376\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WITT\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8168614700\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4801 E LINWOOD BLVD, 119\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64128\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51379\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51379\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51379\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78120\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHLOZMAN\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"R.PH.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8168614700\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4801 E LINWOOD BLVD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64128\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51382\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51382\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51382\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31590\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OPOLE\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9135886005\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3901 RAINBOW BLVD, 6040 DELP, MS 1020, DIVISION OF\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66160\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51384\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51384\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51384\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"55150\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"INBORIBOON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8164041536\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2301 HOLMES ST, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51386\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51386\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51386\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72700\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GEORGER\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8169322047\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4401 WORNALL RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64111\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51389\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51389\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51389\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"85260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HENDRIX\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9135882000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3901 RAINBOW BLVD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66160\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51391\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51391\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51391\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"13650\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HARRELL\",\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8167560405\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3111 WYANDOTTE ST, SUITE 100\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64111\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51394\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51394\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51394\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59890\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHMIDT\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"OTR\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9132884180\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"800 S 55TH ST, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66106\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51396\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51396\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51396\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40300\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BALDWIN\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"PA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9135889792\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3901 RAINBOW BLVD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66103\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51398\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51398\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51398\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MUTHYALA\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"PA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8169225800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3801 BLUE PKWY, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64130\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51400\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51400\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51400\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"88570\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"O'HAGAN-KROWAS\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"LMSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9135636538\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1301 N 47TH ST, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66102\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51403\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51403\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51403\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"81660\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ASHER\",\n                        \"suffix\": [\n                            \"OTR\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6158966400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6500 GREELEY AVE, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66104\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51407\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51407\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51407\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33010\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROGGY\",\n                        \"suffix\": [\n                            \"ANP-BC, AOCNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8167464570\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8700 N GREEN HILLS RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64154\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51408\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51408\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51408\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46470\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MONTGOMERY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162343000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2401 GILLHAM RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51413\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51413\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51413\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"36900\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KOSTELAC\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9132818240\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8101 PARALLEL PKWY, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66109\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51414\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51414\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51414\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SILVEY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DO\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8163026808\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2401 GILLHAM ROAD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51419\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51419\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51419\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"25810\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RHOADES\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8165234600\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7337 BROADWAY ST, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64114\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51424\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51424\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51424\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"740\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"STUMP\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"LMFT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9135738131\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"710 N 7TH ST, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66101\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51425\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51425\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51425\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"7140\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DENNEY\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162683574\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"12942 WORNALL RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64145\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51428\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51428\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51428\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61310\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RAJE\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162343000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2401 GILLHAM RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51430\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51430\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51430\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"36950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEWIS\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162343000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2401 GILLHAM RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51437\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51437\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51437\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PALMIERI\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9135886670\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"ANESTHESIOLOGY DEPT, MSTP 1034, KANSAS UNIV MED CE\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66160\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51439\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51439\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51439\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"8130\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DAVIS\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"PLPC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8165619494\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3914 WASHINGTON ST, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64111\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51441\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51441\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51441\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59620\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HEBERT\",\n                        \"suffix\": [\n                            \"OTR\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9133751431\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2538 S. 65TH ST., \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66106\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51444\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51444\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51444\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BETHEL\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9134616879\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3619 BROADWAY ST, SUITE 12\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64111\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51448\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51448\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51448\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"8100\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GARRETT\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D., O.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8167811061\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9220 NE BARRY RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64157\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51452\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51452\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51452\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROWE\",\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9137889797\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8919 PARALLEL, STE 580, WOMEN'S CLINIC ASSOCIATES\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66112\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51455\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51455\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51455\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"11420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"INGERSOLL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162355185\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4825 TROOST AVE, RM. 206\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64110\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51465\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51465\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51465\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93180\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SUITER\",\n                        \"suffix\": [\n                            \"OT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162343000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2401 GILLHAM RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51466\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51466\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51466\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"62360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KATZ\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9135883840\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"MS 2025 4009 WESCOE, 3901 RAINBOW BLVD.\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66160\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51468\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51468\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51468\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"37940\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WONGSKHALUANG\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8168228486\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2340 E MEYER BLVD, BLDG 2, SUITE 348\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64132\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51469\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51469\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51469\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"38020\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HODISON\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8164071887\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9601 NE BARRY RD, SUITE 201\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64158\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51477\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51477\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51477\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61050\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DUM\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3142291457\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3901 RAINBOW BLVD, MAIL STOP 3016\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66103\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51482\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51482\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51482\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"35710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ABBOTT\",\n                        \"suffix\": [\n                            \"CRNA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162764000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2316 E MEYER BLVD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64132\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51483\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51483\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51483\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"91460\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GUIDRY\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARM.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162343000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2401 GILLHAM RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51488\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51488\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51488\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"43980\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ALDRICH\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9135882000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3901 RAINBOW BLVD, MS 3015\"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66103\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51490\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51490\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51490\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"9860\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NADLER\",\n                        \"suffix\": [\n                            \"PHD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8162343000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2401 GILLHAM RD, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64108\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51499\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51499\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51499\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"51480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOODBINDER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8165234600\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7337 BROADWAY, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"MO\",\n                        \"postalCode\": \"64114\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51500\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51500\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51500\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93320\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHAIKH\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9139457072\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3901 RAINBOW BLVD # MS 2027, \"\n                        ],\n                        \"city\": \"KANSAS CITY\",\n                        \"state\": \"KS\",\n                        \"postalCode\": \"66103\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51501\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51501\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51501\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"24340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ANDERSON\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3219519654\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4280 MINTON RD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32904\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51503\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51503\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51503\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BROWNE\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"MA,CCC-SLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3214216992\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1301 W EAU GALLIE BLVD, SUITE 105\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51507\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51507\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51507\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"76990\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHATTMON-LUMPKIN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3215056777\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"608 RYOLAND ST, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51510\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51510\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51510\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"STENSLAND\",\n                        \"suffix\": [\n                            \"MS, OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212544254\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"760 NORTH DR, SUITE D\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32934\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51513\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51513\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51513\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MARUMOTO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217263855\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1800 W. HIBISCUS BLVD, SUITE 100\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51514\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51514\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51514\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"37950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KOSHY\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217254500\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1223 GATEWAY DR, SUITE 2F\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51521\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51521\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51521\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"37720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RICE\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"P.A.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212532169\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6300 N WICKHAM RD, SUITE 101\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32940\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51524\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51524\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51524\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"25560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VINUELA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217225200\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"400 E SHERIDAN RD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51526\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51526\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51526\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87900\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LIBUNAO\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212559546\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3040 N WICKHAM RD, SUITE 7\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51527\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51527\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51527\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAYES\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217332201\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1555 W NASA BLVD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51531\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51531\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51531\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"21630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DHRUV\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3213099000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2290 W EAU GALLIE BLVD, SUITE 100\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51535\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51535\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51535\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"91780\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PASTORE\",\n                        \"suffix\": [\n                            \"O.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212591699\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1000 N WICKHAM RD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51539\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51539\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51539\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"91320\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KOMAR\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3214353650\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2200 W EAU GALLIE BLVD, STE 202 B\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51544\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51544\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51544\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"7990\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PETERSON\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212544900\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1223 GATEWAY DR, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51545\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51545\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51545\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"69700\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GRAFF\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217254500\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1130 S HICKORY ST, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51550\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51550\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51550\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"51970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MANDESE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"O.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217224443\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1995 W NASA BLVD, SUITE 200\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32904\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51554\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51554\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51554\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"24180\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PATEL\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212551500\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2200 W EAU GALLIE BLVD, SUITE 200\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51556\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51556\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51556\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50150\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WOMBLE\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"CRNFA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212885605\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4740 SMITHFIELD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32934\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51559\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51559\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51559\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HO\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217577272\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8040 N WICKHAM RD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32940\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51563\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51563\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51563\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"45160\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LAGUDU\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212542321\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"469 N HARBOR CITY BLVD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51566\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51566\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51566\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78590\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZIPPER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217234723\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1304 OAK ST, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51567\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51567\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51567\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"32800\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"STERN\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217239175\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1696-B WEST HIBISCUS BOULEVARD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51570\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51570\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51570\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40310\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEROUX\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3214349483\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8745 N WICKHAM RD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32940\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51572\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51572\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51572\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"28720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"UPDEGROVE\",\n                        \"suffix\": [\n                            \"MA, NCC, LMHC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6106577542\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1800 PENN ST, SUITE 12\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51573\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51573\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51573\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"82280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHOREY\",\n                        \"suffix\": [\n                            \"ARNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3214341771\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1350 HICKORY ST, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51576\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51576\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51576\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"16310\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KOLLANDA\",\n                        \"suffix\": [\n                            \"LMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217949119\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"515 N HARBOR CITY BLVD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51578\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51578\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51578\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"22460\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHREINK\",\n                        \"suffix\": [\n                            \"CMP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8703685242\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"104 CONNIEBROOK LN, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"AR\",\n                        \"postalCode\": \"72556\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51580\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51580\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51580\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"14810\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RICHARDS\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3219513949\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"21 W FEE AVE, SUITE G\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51582\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51582\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51582\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GRAINGER\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"ARNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217254500\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1223 GATEWAY DR, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51585\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51585\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51585\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46020\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GABOR\",\n                        \"suffix\": [\n                            \"M.A., BCBA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3216748106\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"150 W UNIVERSITY BLVD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51586\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51586\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51586\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"60050\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"REDDISH\",\n                        \"suffix\": [\n                            \"ARNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3214341735\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1350 HICKORY ST, SUITE 103\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51590\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51590\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51590\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FRANKEL\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3216761260\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2225 S BABCOCK ST, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51593\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51593\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51593\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FLORES\",\n                        \"suffix\": [\n                            \"CSA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8883484565\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1600 SARNO RD, SUITE 15\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51595\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51595\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51595\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33960\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SEMPER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3214092136\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1678 W HIBISCUS BLVD, 102\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51599\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51599\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51599\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65100\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LYONS\",\n                        \"suffix\": [\n                            \"LMHC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217523170\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3270 SUNTREE BLVD, SUITE 100\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32940\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51601\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51601\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51601\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"8470\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"UNGER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217256999\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"116 SILVER PALM AVE, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51603\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51603\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51603\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41040\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ABOUTANOS\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3215411777\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2222 S HARBOR CITY BLVD, SUITE 430\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51606\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51606\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51606\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"13080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BIGGS\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217254500\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1223 GATEWAY DRIVE, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51608\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51608\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51608\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47850\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ANDERSON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D. O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3214284840\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3040 N WICKHAM RD, SUITE 10\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51611\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51611\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51611\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"83820\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RAMADAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD, RVT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217258919\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1250 S HARBOR CITY BLVD, SUITE A\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51614\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51614\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51614\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"20830\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MORGAN\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3214344600\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8245 DEVEREUX DRIVE, ADMINISTRATIVE OFFICE\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32940\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51617\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51617\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51617\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48010\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HOWZE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3219840708\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1507 RIVERVIEW DR, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51620\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51620\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51620\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CONRAD\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"HAS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212549919\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"509 N HARBOR CITY BLVD STE A, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51623\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51623\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51623\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"92870\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WILLIAMS\",\n                        \"suffix\": [\n                            \"ARNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217255050\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"930 S HARBOR CITY BLVD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51625\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51625\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51625\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"75350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHRADER\",\n                        \"suffix\": [\n                            \"LMHC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217686800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1800 PENN ST STE 12, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51629\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51629\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51629\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PHILLIPS\",\n                        \"suffix\": [\n                            \"PA-C\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212546218\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2080 W EAU GALLIE BLVD, SUITE A\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51630\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51630\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51630\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BURNS-LEGROS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"O.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217254755\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2420 S BABCOCK ST, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51633\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51633\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51633\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"51180\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAGEN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3214123239\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1694 W HIBISCUS BLVD STE A, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51635\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51635\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51635\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31610\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CLANCY\",\n                        \"suffix\": [\n                            \"MAT, LAT, ATC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3216748438\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"150 W UNIVERSITY BLVD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51638\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51638\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51638\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"75120\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DICKENS\",\n                        \"suffix\": [\n                            \"ARNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217525210\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"240 N WICKHAM RD STE 102, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51639\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51639\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51639\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NNOLIM\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"CSW, CAAC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7346577784\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4406 PRESERVE DR APT 201, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32934\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51642\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51642\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51642\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87650\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BARMORE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"LMHC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212538188\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6767 N WICKHAM RD, SUITE 400\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32940\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51644\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51644\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51644\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"21520\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"THOMPSON\",\n                        \"suffix\": [\n                            \"RN, CDE\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212135531\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"480 BENTON DR, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51646\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51646\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51646\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TERMINI\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217520507\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2651 W EAU GALLIE BLVD STE B, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51648\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51648\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51648\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"18770\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GLASS\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"M.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217523111\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1600 SARNO RD STE 214, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51653\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51653\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51653\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MORGAN\",\n                        \"suffix\": [\n                            \"BCABA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3216748106\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"150 W UNIVERSITY BLVD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51655\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51655\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51655\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"21480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"STRATTAN\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"LMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212597772\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6260 N US HIGHWAY 1, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32940\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51658\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51658\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51658\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"82250\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LACY\",\n                        \"suffix\": [\n                            \"MS, RMHCI\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217225200\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"400 EAST SHERIDAN RD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51660\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51660\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51660\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"37930\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KHATTARI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212556303\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7777 N WICKHAM RD, SUITE 4\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32940\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51663\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51663\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51663\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"11760\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GEHRMAN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3216748106\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"150 W UNIVERSITY BLVD, \"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51665\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51665\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51665\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"75620\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ELMORE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217289620\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"100 RIALTO PL, SUITE 754\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51668\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51668\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51668\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"51460\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KENNEDY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3212547717\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2200 W EAU GALLIE BLVD, 202-B\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32935\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51669\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51669\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51669\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"900\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FERGUSON\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"P.A.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3217689914\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1341 MEDICAL PARK DR, 201\"\n                        ],\n                        \"city\": \"MELBOURNE\",\n                        \"state\": \"FL\",\n                        \"postalCode\": \"32901\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51670\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51670\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51670\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TINSLEY\",\n                        \"suffix\": [\n                            \"MA, NIC, NCC, LPC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409247503\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9800 JUG ST NW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51672\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51672\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51672\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"15790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAMMOND\",\n                        \"suffix\": [\n                            \"MOT, OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3308275105\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"166 PAR VIEW DR, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51678\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51678\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51678\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"69190\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ENDERLE\",\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6149379917\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"61 KING AVE SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51681\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51681\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51681\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59690\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ALBAUGH\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"COTA/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7407045907\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14 MILKWEED PLACE, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51689\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51689\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51689\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"19740\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"APPLEMAN\",\n                        \"suffix\": [\n                            \"LPN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6142663336\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"161 CARNATION PL SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51692\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51692\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51692\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"81320\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KELLEY\",\n                        \"suffix\": [\n                            \"M. ED\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409643457\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"927 SOUTH ST UNIT A, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51696\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51696\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51696\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HALEY\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7403481915\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"ONE HEALTHY PLACE, SUITE 102\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51700\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51700\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51700\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"14370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SPURBECK\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7407397727\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4691 YORK RD SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51703\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51703\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51703\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"77360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MASON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHD, CRNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409640615\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7660 REFUGEE RD SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51708\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51708\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51708\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12190\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DURST\",\n                        \"suffix\": [\n                            \"P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409646191\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"202 E BROAD ST, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51712\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51712\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51712\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"35430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHWARTZ\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409275060\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"621 BROAD ST SW, 1E\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51714\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51714\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51714\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"26290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SMITH\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7403481900\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1 HEALTHY PL, SUITE 101\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51720\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51720\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51720\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HOFF\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"NP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409271456\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"135 ALMAHURST RD, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51725\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51725\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51725\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54230\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FAGHIHI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409275002\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"621 WEST BROAD STREET, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51726\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51726\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51726\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BARNES\",\n                        \"suffix\": [\n                            \"LPCC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409247543\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9734 JUG ST NW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51729\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51729\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51729\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HUFFMAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409279222\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"26 WEST DEPOT ST, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51731\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51731\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51731\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"75710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OLAOFE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6148615397\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"270 STONEMAST LOOP, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51733\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51733\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51733\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"22880\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"THRELOFF\",\n                        \"suffix\": [\n                            \"ED.S, NCSP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409643456\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"927 SOUTH ST UNIT A, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51735\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51735\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51735\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40120\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WION\",\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409273494\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"11001 BROAD ST SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51742\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51742\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51742\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61020\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"COX\",\n                        \"suffix\": [\n                            \"LPN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409270168\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"600 FAITH ANN DR, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51744\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51744\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51744\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65250\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MASCARI\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"LPN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6149057275\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"24 W WOODFIELD, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51747\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51747\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51747\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"91280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ADAMS\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409273268\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6507 SUMMIT RD SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51751\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51751\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51751\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39460\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CARPENTER\",\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409645105\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"350 E BROAD ST, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51754\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51754\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51754\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KRUSE\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409277974\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3595 DIXON RD SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51758\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51758\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51758\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"73170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SKEENS\",\n                        \"suffix\": [\n                            \"LPN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6145628945\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"114 DEER PATH CT N, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51768\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51768\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51768\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71300\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MAYNARD\",\n                        \"suffix\": [\n                            \"LISW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409632976\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7257 E BROAD ST SW, UNIT C\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51773\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51773\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51773\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"56560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ADAMS\",\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7407390722\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"300 PATASKALA RIDGE DR SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51777\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51777\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51777\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"30880\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHIRCK\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6143543629\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"196 E BROAD ST, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51778\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51778\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51778\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"11230\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SMITH\",\n                        \"suffix\": [\n                            \"L.P.N.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409646246\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9580 REFUGEE RD SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51783\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51783\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51783\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"16350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GUNDLER\",\n                        \"suffix\": [\n                            \"RPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409641007\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"325 W BROAD ST, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51785\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51785\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51785\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZACHARATOS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409277665\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8200 HAZELTON ETNA RD SW, SUITE 100\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51788\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51788\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51788\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39010\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MASON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"OD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409273061\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"180 E BROAD ST, SUITE A\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51791\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51791\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51791\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"37080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WILLIAMS\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"R.N.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409649378\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"136 PAR VIEW DR BLDG 19, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51793\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51793\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51793\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"58720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HOLLIS\",\n                        \"suffix\": [\n                            \"R.N.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6145607316\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"108 SPRING BROOK CT, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51797\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51797\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51797\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"32370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MALONE\",\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6143091885\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"30 CHALLEDON CIR SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51799\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51799\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51799\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52250\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHRALLOW\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409645138\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"722 CORYLUS DR, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51803\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51803\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51803\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZOCHOWSKI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409277665\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8200 HAZELTON ETNA RD SW, STE 100\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51805\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51805\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51805\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93500\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ELKHAIRI\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7403481920\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1 HEALTHY PL, SUITE 201\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51806\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51806\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51806\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JENKINS\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7403481930\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1 HEALTHY PL, SUITE 105\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51808\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51808\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51808\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71620\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MINNICK\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"AT, ATC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9376311593\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"231 FAIRWAY DR, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51814\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51814\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51814\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"68460\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KRAMER-MARTIN\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"P.C.,CAC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6144252653\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1120 DEANSWAY DR, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51816\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51816\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51816\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"5310\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOORE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"CNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409270475\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"418 CITATION RD SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51818\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51818\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51818\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"7820\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HALL\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409733284\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"387 COTTAGE GROVE CIR, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51821\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51821\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51821\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"45260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GLADURA\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409273981\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"124 EMSWILER WAY, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51823\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51823\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51823\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SAGER\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409641007\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"325 W BROAD ST, SUITE B\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51828\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51828\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51828\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BENNETT\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"RN BSN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409643218\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"161 MOHICAN LN, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51830\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51830\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51830\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49990\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"THOMPSON\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409273365\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6565 SUMMIT RD SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51834\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51834\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51834\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46890\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MASSIE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"SLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409273861\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"391 S. HIGH STREET, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51836\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51836\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51836\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"80060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZOCHOWSKI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409277665\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8200 HAZELTON ETNA RD SW, STE 100\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51840\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51840\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51840\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"88160\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"COATES\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409278450\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3652 MINK ST SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51843\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51843\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51843\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"36440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"STEINBUGL\",\n                        \"suffix\": [\n                            \"OTA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409640978\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"102 S HIGHVIEW BLVD, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51846\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51846\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51846\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"23020\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ALLERTON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409277026\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"30 S TOWNSHIP RD, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51849\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51849\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51849\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87390\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DONO\",\n                        \"suffix\": [\n                            \"MS/CCCSLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409276926\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6539 SUMMIT RD SW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51852\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51852\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51852\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"86000\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WALSH\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"O.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6143956998\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"180 E BROAD ST, SUITE A\"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51854\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51854\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51854\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KORN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409642081\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"378 S MAIN ST, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51857\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51857\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51857\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54540\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GUARD\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"R.N.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7407397201\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"238 S VINE ST, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51862\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51862\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51862\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59930\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JEDLICKA\",\n                        \"suffix\": [\n                            \"MSW, LISW-S\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6143951395\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9800 JUG ST NW, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51868\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51868\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51868\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"37500\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HARRIS\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409272792\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"932 POPPLETON PL, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51871\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51871\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51871\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"2390\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RIPPETH\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6148323008\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"729 WOODINGTON DR, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51873\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51873\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51873\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84000\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHAMBERS\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409273941\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"927 SOUTH ST, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51877\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51877\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51877\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"55740\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JENKINS\",\n                        \"suffix\": [\n                            \"PH.D., P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7409718344\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"580 E BROAD ST, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51880\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51880\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51880\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27070\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"UPTON\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"RN, MS, CPNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7403481925\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"ONE HEALTHY PLACE, SUITE 203, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51882\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51882\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51882\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90680\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GREMLING\",\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6143238335\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"215 JOHN REESE PKWY, \"\n                        ],\n                        \"city\": \"PATASKALA\",\n                        \"state\": \"OH\",\n                        \"postalCode\": \"43062\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51885\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51885\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51885\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78160\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TRINH\",\n                        \"suffix\": [\n                            \"DO\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098929100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1108 WARD AVE, BLDG A STE 1\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51889\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51889\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51889\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87930\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROSE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098923595\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1128 MARSH WREN DR, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51892\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51892\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51892\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"69930\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MCCULLOUGH\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098954420\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1030 SPERRY AVE, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51894\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51894\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51894\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"83300\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FRISHMAN\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458789078\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 JON BARRETT RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51897\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51897\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51897\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WRIGHT\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098928444\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"47 S DEL PUERTO AVE, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51902\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51902\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51902\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"6390\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DESANTIS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PSY.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9143295106\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1283 ROUTE 311, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51907\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51907\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51907\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89610\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DIETSCH\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"EMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458783590\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"215 CORNWALL MEADOWS LN, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51911\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51911\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51911\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TOYMIL\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"MS ED./TVI\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8452792795\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"56 SLATER RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51912\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51912\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51912\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"2910\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PEARSALL\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"R.N.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8453631034\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"123 HAVILAND DRIVE, APT B\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51915\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51915\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51915\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"32640\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AKHBARATI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098929100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1108 WARD AVE, BUILDING A\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51916\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51916\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51916\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57820\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCOTT\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9125902620\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3436 HOPEWELL RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"GA\",\n                        \"postalCode\": \"31557\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51918\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51918\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51918\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GARCIA\",\n                        \"suffix\": [\n                            \"NP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098921300\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1108 WARD AVE, BLDG A, SUITE 1\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51921\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51921\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51921\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61010\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DUFFY\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"R.N.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8454738856\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 JON BARRETT RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51926\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51926\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51926\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"22370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHILPP\",\n                        \"suffix\": [\n                            \"DVM\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458787500\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2933 ROUTE 22, NEW ENGLAND EQUINE\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51928\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51928\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51928\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BURDICK\",\n                        \"suffix\": [\n                            \"FNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458789078\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 JON BARRETT RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51930\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51930\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51930\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"21130\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FISHER\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"FNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098957100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1010 W LAS PALMAS AVE, SUITE E\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51932\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51932\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51932\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48410\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BOGLER\",\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8452786116\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"83 HAVILAND DR, SUITE 2\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51933\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51933\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51933\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BROWN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098928441\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"200 C ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51936\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51936\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51936\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"58080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LAMAZOR\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098929100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1108 WARD AVE, BLD A STE 1\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51939\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51939\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51939\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54110\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PAPARATTI\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8453631039\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"66 WARREN DR, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51943\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51943\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51943\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"24910\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LIN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9739776721\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"680 MARTIN LUTHER KING JR WAY, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07514\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51951\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51951\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51951\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WONG\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098928444\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1108 WARD AVE, BLDG B SUITE #6\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51953\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51953\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51953\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"22400\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GILL\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"LPC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9122820992\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5920 REESE ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"GA\",\n                        \"postalCode\": \"31557\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51955\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51955\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51955\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"24230\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HANSHAFT\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"M.S. SPECIAL ED\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458789078\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 JON BARRETT RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51958\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51958\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51958\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BERRY\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5105418784\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1108 WARD AVE, STE A\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51959\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51959\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51959\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"45300\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SANCHEZ\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098928890\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1040 W. LAS PALMAS AVE., SUITE C\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51962\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51962\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51962\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"STOKMAN\",\n                        \"suffix\": [\n                            \"RN MSN CDE\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2095730798\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1467 ZACHARIAS RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51964\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51964\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51964\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"73060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PITTSON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098922915\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"420 W LAS PALMAS AVE, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51969\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51969\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51969\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"62240\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TAYLOR\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"MSW, LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9519561191\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"26 S 3RD ST, SUITE E\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51971\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51971\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51971\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KLEIN\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098922454\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"101 S EL CIRCULO AVE, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51974\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51974\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51974\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VAZQUEZ\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458789078\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 JON BARRETT RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51977\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51977\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51977\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52760\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DURK\",\n                        \"suffix\": [\n                            \"LCSW-R\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458789078\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 JON BARRETT RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51979\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51979\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51979\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12050\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"EUES\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9853952601\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1129 FIRST ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"LA\",\n                        \"postalCode\": \"70392\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51985\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51985\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51985\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZENCHECK\",\n                        \"suffix\": [\n                            \"MA CCC-A\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458789078\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 JON BARRETT RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51989\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51989\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51989\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57660\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MACCARTHY\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"LCSW-R\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458783211\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"100 SOUTH ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51993\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51993\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51993\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CASSIDY\",\n                        \"suffix\": [\n                            \"ANP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458786701\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"64 DEVON RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"51996\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51996\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51996\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"73670\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WEBB\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098926989\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"216 N EL CIRCULO AVE, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"51999\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/51999\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"51999\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"THEIRING\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9853959637\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"610 OAK DR, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"LA\",\n                        \"postalCode\": \"70392\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52002\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52002\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52002\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZAUG\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"M.S.,CCC/SLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458782094\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"81 SOUTH ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52004\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52004\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52004\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"29480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KELLY-MCGARRY\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098924545\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1035 SPERRY AVE, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52007\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52007\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52007\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84870\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FRIEARY\",\n                        \"suffix\": [\n                            \"RCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458789078\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 JON BARRETT RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52011\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52011\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52011\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WEBSTER\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"LOTR\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9857591473\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1086 VICTORIA RIVERSIDE RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"LA\",\n                        \"postalCode\": \"70392\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52014\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52014\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52014\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SERVICE\",\n                        \"suffix\": [\n                            \"FNP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098954712\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2065 KEYSTONE PACIFIC PKWY, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52020\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52020\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52020\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"38960\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LIESEGANG\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M. D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8287546850\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1345 HIGHWAY 268, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NC\",\n                        \"postalCode\": \"28661\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52022\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52022\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52022\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46740\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHIRIBOGA\",\n                        \"suffix\": [\n                            \"P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458789078\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 JON BARRETT RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52028\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52028\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52028\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41990\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"EINOWSKI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5304009343\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"628 TOTMAN CT, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52030\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52030\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52030\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44240\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DELIA\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458789078\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 JON BARRETT RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52034\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52034\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52034\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"6990\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BANDOOKWALA\",\n                        \"suffix\": [\n                            \"NP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098929100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1700 KEYSTONE PACIFIC PKWY, SUITE B\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52039\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52039\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52039\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"15860\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZIMMERMANN\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"M.S., OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8453196084\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"46 MAPLE AVE, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52043\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52043\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52043\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"62510\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PAUL\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098925129\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"600 N 2ND ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52046\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52046\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52046\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"74510\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEWIS-BERRY\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9735232755\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"284 WALL AVE, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"07504\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52047\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52047\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52047\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59680\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OBRYAN\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"PA-C\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098921400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"101 N 3RD ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52048\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52048\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52048\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WEISBEIN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8452788314\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"115 BRIMSTONE RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52050\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52050\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52050\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RODRIGUEZ\",\n                        \"suffix\": [\n                            \"RPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098943700\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"995 SPERRY AVE, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52052\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52052\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52052\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"45790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LOMELI-GIL\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098953270\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8609 SMITH ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52053\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52053\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52053\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93240\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CUCCUINI\",\n                        \"suffix\": [\n                            \"PA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098922081\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"801 E ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52054\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52054\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52054\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"8060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZACH\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8458789078\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"40 JON BARRETT RD, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52060\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52060\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52060\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"85080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GREWAL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098955440\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1108 WARD AVE, SUITE #10\"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52062\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52062\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52062\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"IBARRA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098926307\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"200 C ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52065\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52065\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52065\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"62750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CAMPBELL\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9172168147\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"710 ROUTE 311, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"12563\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52068\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52068\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52068\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"69680\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HARRIS\",\n                        \"suffix\": [\n                            \"CRT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9854981576\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"410 CHARLOTTE DR, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"LA\",\n                        \"postalCode\": \"70392\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52069\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52069\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52069\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHARMA\",\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098925978\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"801 E ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52070\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52070\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52070\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10610\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BALUYUT\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2098928441\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"200 C ST, \"\n                        ],\n                        \"city\": \"PATTERSON\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95363\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52072\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52072\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52072\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"2710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MATUTINO\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"LMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084554448\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"803 KAMEHAMEHA HWY STE 416F, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52075\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52075\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52075\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DEGUZMAN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52078\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52078\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52078\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"38820\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BARTHLEN\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084567378\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"98-1238 KAAHUMANU ST, 300\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52079\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52079\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52079\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"390\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TATEYAMA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52081\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52081\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52081\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"73440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RODRIGUES\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52085\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52085\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52085\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"13330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HIMALAYA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52088\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52088\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52088\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49850\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KIM\",\n                        \"suffix\": [\n                            \"D.M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084565953\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1000 KAMEHAMEHA HWY, #235\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52091\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52091\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52091\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44660\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SUPNET\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084535950\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52092\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52092\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52092\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"91250\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KANEHAILUA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52096\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52096\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52096\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65060\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NAKAMATSU\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084565953\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1000 KAMEHAMEHA HWY, STE 235\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52102\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52102\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52102\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"26640\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NISHIMURA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D,S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084564552\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"850 KAMEHAMEHA HWY, SUITE 112\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52104\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52104\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52104\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"370\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LANGFORD\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52105\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52105\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52105\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"74450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VO\",\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084881990\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"98-1238 KAAHUMANU ST STE 404A, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52109\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52109\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52109\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MARISTELA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084535950\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52110\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52110\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52110\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"32980\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HARDING\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PSY.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8089279038\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52113\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52113\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52113\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34520\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CRYER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084562273\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1245 KUALA ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52116\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52116\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52116\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"21760\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"O'SULLIVAN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084535950\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52118\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52118\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52118\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12900\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KOROLEV\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"L.AC., L.M.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083913086\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"803 KAMEHAMEHA HWY, SUITE 416\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52122\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52122\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52122\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87510\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TALAEAI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52126\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52126\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52126\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1130\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SMORSE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084535953\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52128\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52128\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52128\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"53710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"YUN\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084536960\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, RM. 150\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52133\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52133\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52133\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"29360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GARCIA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52137\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52137\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52137\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"4450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HIGUCHI\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHYSICAL THERAPIST\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084565888\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"880 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52140\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52140\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52140\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49960\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SEO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S., M.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084868881\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"98-1254 KAAHUMANU ST STE A5, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52146\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52146\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52146\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"21490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LONG\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52148\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52148\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52148\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"4020\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VIDAL\",\n                        \"suffix\": [\n                            \"L.M.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084867567\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"379 KAMEHAMEHA HWY, STE. E\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52153\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52153\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52153\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHIGEOKA\",\n                        \"suffix\": [\n                            \"D.D.S\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084565953\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1000 KAMEHAMEHA HWY STE 235, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52154\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52154\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52154\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KUNIHIRO\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"RPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084833078\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"98-1264 KAAHUMANU ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52157\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52157\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52157\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KAUFUSI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52159\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52159\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52159\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46620\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WAY\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"SOIDC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084742513\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2001 VICTOR WARF ACCESS RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52161\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52161\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52161\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78510\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROLLER\",\n                        \"suffix\": [\n                            \"APRN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084562273\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1245 KUALA ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52163\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52163\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52163\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47140\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NISHIOKA\",\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084553485\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"719 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52166\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52166\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52166\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57640\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BROAD\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084565553\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"803 KAMEHAMEHA HWY STE 309, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52171\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52171\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52171\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31050\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOMES\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"ATC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084879494\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"425 KAMEHAMEHA HWY, 2B\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52172\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52172\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52172\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FREEMAN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52173\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52173\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52173\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41320\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FANUA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52174\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52174\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52174\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"UEHARA-TOM\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"M.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087412757\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1742 HOOHULU ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52176\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52176\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52176\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"30310\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOMEZ\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084864746\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"98-1268 KAAHUMANU ST., STE. #2C-3\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52179\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52179\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52179\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MINA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084535950\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52182\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52182\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52182\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"92970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DOMINGO\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52184\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52184\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52184\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DEVERA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52186\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52186\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52186\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"32510\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LIN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD, MPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8087842273\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1245 KUALA ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52191\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52191\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52191\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87820\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HANDLEY\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084535950\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52199\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52199\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52199\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"24930\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AWEAU\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52201\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52201\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52201\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"62490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DOMINGO\",\n                        \"suffix\": [\n                            \"LMT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8083527531\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1447 NOELANI ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52203\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52203\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52203\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"66490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TARUMOTO\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"M.S., CCC-SLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084536969\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, ROOM 150\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52205\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52205\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52205\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"570\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SAGAYAGA\",\n                        \"suffix\": [\n                            \"C.N.A.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084558776\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1483 KALAUIPO ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52206\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52206\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52206\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"36640\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FUJIMOTO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084553888\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"850 KAMEHAMEHA HWY STE 215, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52208\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52208\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52208\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"56140\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DARLING\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8089547810\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"941 KAMEHAMEHA HWY, SUITE 208\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52211\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52211\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52211\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KO\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084535900\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52213\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52213\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52213\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"53270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VIERNES\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"LPN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084535950\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52216\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52216\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52216\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NOWICKI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C., D.A.B.C.O\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084565553\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"803 KAMEHAMEHA HWY STE 309, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52217\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52217\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52217\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PRICE\",\n                        \"suffix\": [\n                            \"LVN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3603555273\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1304 ROBINSON AVE, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52218\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52218\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52218\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PALOLA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084864746\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"98-1268 KAAHUMANU ST, SUITE 203\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52221\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52221\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52221\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"42600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MISHRA\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084535953\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, 2ND FLOOR\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52224\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52224\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52224\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"21340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HERNANDEZ\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084541411\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2501 WAIMANO HOME RD, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52228\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52228\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52228\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93160\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ENDO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DENTIST\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084568552\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"803 KAMEHAMEHA HWY, SUITE 300\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52231\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52231\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52231\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27880\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WAWRZENSKI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"O.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084563937\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1000 KAMEHAMEHA HWY, SUITE 100\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52233\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52233\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52233\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DANOWSKY\",\n                        \"suffix\": [\n                            \"R.D., CLC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8088594788\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2486 AKEPA ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52237\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52237\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52237\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PARK\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084535950\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"860 FOURTH ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52240\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52240\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52240\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71640\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MURAI\",\n                        \"suffix\": [\n                            \"RPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8084554555\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"850 KAMEHAMEHA HWY, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52242\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52242\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52242\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"49190\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HANDEGARD\",\n                        \"suffix\": [\n                            \"MS, ATC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2089894382\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2100 HOOKIEKIE ST, \"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52248\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52248\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52248\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"45980\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MILLER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2246281002\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"98-838 NOELANI ST, APT. 101\"\n                        ],\n                        \"city\": \"PEARL CITY\",\n                        \"state\": \"HI\",\n                        \"postalCode\": \"96782\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52251\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52251\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52251\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89200\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BUDIG\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9168767624\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3331 POWER INN RD, SUITE 450\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95826\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52254\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52254\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52254\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"25570\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GONSALVES\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9168755000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7171 BOWLING DR, SUITE 800\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95823\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52255\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52255\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52255\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TRIVEDI\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163251040\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1485 RIVER PARK DR, SUITE 200\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95815\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52259\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52259\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52259\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34690\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OAKES\",\n                        \"suffix\": [\n                            \"CAS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163953552\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7000 FRANKLIN BLVD STE 110, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95823\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52262\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52262\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52262\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57150\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"THOMPSON\",\n                        \"suffix\": [\n                            \"L.P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9168751000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2150 STOCKTON BLVD, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95817\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52268\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52268\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52268\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48000\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DIFUNTORUM\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9162838280\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1260 FULTON AVE STE B, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95825\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52271\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52271\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52271\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"63660\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TWEET\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9162629440\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2725 CAPITOL AVE, SUITE 302\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95816\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52274\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52274\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52274\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"47280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JUNCK\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167032273\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4860 Y STREET, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95817\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52277\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52277\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52277\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"25270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WILCOX\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5305214350\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1421 P ST., #16\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95814\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52280\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52280\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52280\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"39490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HULL\",\n                        \"suffix\": [\n                            \"D.D.S\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164815990\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1870 AVONDALE AVE, SUITE #2\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95825\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52282\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52282\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52282\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48670\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KUJIRAOKA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164837459\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2821 EASTERN AVENUE, SUITE #2\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95821\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52284\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52284\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52284\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MATIN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D., M.P.H.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167334401\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2800 L ST, SUITE 610\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95816\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52287\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52287\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52287\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"21710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BALLIF\",\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164861443\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4300 AUBURN BLVD, SUITE 203\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95841\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52289\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52289\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52289\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BEGUN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163683080\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8233 E STOCKTON BLVD, SUITE D\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95828\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52290\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52290\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52290\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1920\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MACNEAR\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167346978\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4860 Y ST, SUITE 2500\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95817\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52295\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52295\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52295\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"21560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SPROWL\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9165758000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4400 DUCKHORN DRIVE, SUITE 100\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95834\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52298\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52298\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52298\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"22580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NUNEZ\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"CAS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163942328\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2515 48TH AVE, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95822\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52300\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52300\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52300\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TROUTMAN\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164423979\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"500 22ND ST, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95816\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52303\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52303\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52303\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"590\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAZEGHAZAM\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"RD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164464449\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2025 P ST, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95811\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52307\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52307\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52307\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"6280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GARCIA\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"BSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163440199\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8912 VOLUNTEER LN, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95826\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52309\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52309\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52309\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"METOYER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164843570\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"900 FULTON AVE, #205\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95825\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52313\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52313\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52313\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48730\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"YU\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164440889\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7750 COLLEGE TOWN DR, SUITE 102\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95826\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52315\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52315\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52315\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"33450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HU\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167342724\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2315 STOCKTON BLVD, ROOM 6309\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95817\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52320\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52320\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52320\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"51120\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PITRONE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9169205276\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"601 UNIVERSITY AVE, STE 225\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95825\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52322\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52322\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52322\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ARMOUR\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167333372\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3000 Q STREET, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95816\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52325\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52325\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52325\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"37240\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KAMARA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163931222\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4600 47TH AVE, 111\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95824\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52326\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52326\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52326\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"66650\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RICHARDS\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167333346\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3000 Q ST, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95816\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52330\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52330\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52330\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"29960\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RESPALL\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9169216099\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3131 PALMER ST, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95815\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52334\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52334\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52334\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"5600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CORYEA\",\n                        \"suffix\": [\n                            \"P.T.A.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167317900\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1201 ALHAMBRA BLVD, SUITE 200\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95816\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52336\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52336\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52336\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"16490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OAKES\",\n                        \"suffix\": [\n                            \"AUD.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9165256280\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7300 WYNDHAM DR, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95823\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52337\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52337\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52337\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"18690\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"XUNCAX\",\n                        \"suffix\": [\n                            \"RRW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163953552\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4343 WILLIAMSBOURGH DR, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95823\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52341\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52341\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52341\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"17450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WARREN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARM.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163358818\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4600 BROADWAY, COUMADIN CLINIC\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95820\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52344\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52344\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52344\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"79000\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BARICEVIC\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9168749883\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3321 POWER INN RD, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95826\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52347\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52347\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52347\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"25210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHANDRA\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164546667\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1625 STOCKTON BLVD STE 104, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95816\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52348\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52348\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52348\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"230\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"REYNOLDS\",\n                        \"suffix\": [\n                            \"RD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167333325\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3000 Q STREET, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95816\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52349\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52349\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52349\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LOVE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164487392\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2230 9TH ST, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95818\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52352\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52352\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52352\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50790\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"THOMPSON\",\n                        \"suffix\": [\n                            \"S.P.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164786570\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1625 STOCKTON BLVD, SUITE 103\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95816\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52353\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52353\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52353\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"680\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SMITH\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"RRW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163953552\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4343 WILLIAMSBOURGH DR, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95823\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52357\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52357\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52357\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"84580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROBERTSON\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9168544564\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3353 BRADSHAW RD, 106\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95827\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52361\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52361\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52361\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GRANTHAM\",\n                        \"suffix\": [\n                            \"LPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163933900\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6278 DAYSPRING WAY, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95823\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52362\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52362\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52362\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"11550\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GLIDEWELL\",\n                        \"suffix\": [\n                            \"MSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163886397\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9343 TECH CENTER DR, SECOND FLOOR\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95826\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52370\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52370\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52370\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"43660\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CAOAGAS\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"LVN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9168743573\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4875 BROADWAY, 4875 BROADWAY\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95820\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52371\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52371\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52371\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"90\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KENTERA\",\n                        \"suffix\": [\n                            \"CRNA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9166887254\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6600 BRUCEVILLE RD, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95823\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52372\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52372\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52372\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"190\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AMASOWOMWAN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9168751000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2150 STOCKTON BLVD, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95817\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52373\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52373\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52373\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"60200\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SUMMERS\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164523981\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2750 SUTTERVILLE ROAD, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95820\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52375\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52375\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52375\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"18360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ARBUCKLE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164822370\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3555 AUBURN BLVD, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95821\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52376\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52376\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52376\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DUKE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163941000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7225 E SOUTHGATE DR, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95823\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52382\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52382\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52382\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"950\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CLINE\",\n                        \"suffix\": [\n                            \"MFT, CADC II\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9168302565\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4250 AUBURN BLVD, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95841\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52385\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52385\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52385\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50730\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FREITAS\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"RPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163791657\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8364 ROVANA CIR, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95828\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52386\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52386\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52386\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57810\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GROVHOUG\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167343630\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4860 Y ST STE 1600, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95817\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52387\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52387\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52387\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"110\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FRASER\",\n                        \"suffix\": [\n                            \"COUNSELOR\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164299030\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7600 GREENHAVEN DR, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95831\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52391\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52391\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52391\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"35290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ANG\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9513100758\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3521 DEL PASO RD, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95835\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52394\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52394\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52394\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"80140\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BAILEY\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167342724\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2315 STOCKTON BLVD # OP512, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95817\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52397\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52397\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52397\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"180\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"EASTMAN\",\n                        \"suffix\": [\n                            \"LMFT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9165486641\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5409 PALM AVE, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95841\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52398\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52398\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52398\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"58690\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MANINGO\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163440199\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8912 VOLUNTEER LN, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95826\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52400\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52400\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52400\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89020\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHILTON\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"MFT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9165741000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3610 AMERICAN RIVER DR STE 140, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95864\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52403\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52403\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52403\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"68200\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CARFIELD\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164854175\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"9719 LINCOLN VILLAGE DR STE 300, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95827\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52405\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52405\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52405\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WINISTORFER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163440199\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8912 VOLUNTEER LN, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95826\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52406\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52406\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52406\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AGUILAR\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167348730\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2315 STOCKTON BLVD, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95817\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52407\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52407\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52407\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"28830\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PELOTE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163953552\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4343 WILLIAMSBOURGH DR, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95823\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52411\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52411\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52411\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"58980\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LOWE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9163953552\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4343 WILLIAMSBOURGH DR, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95823\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52413\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52413\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52413\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"23690\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NEWMAN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9164196644\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4650 NATOMAS BLVD, \"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95835\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52414\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52414\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52414\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3140\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAWK\",\n                        \"suffix\": [\n                            \"M.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9167348396\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3671 BUSINESS DR, SUITE 110\"\n                        ],\n                        \"city\": \"SACRAMENTO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"95820\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52418\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52418\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52418\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"310\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PRESS\",\n                        \"suffix\": [\n                            \"LMFT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5102909956\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"525 GOUGH ST, #103\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94102\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52420\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52420\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52420\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48090\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MICKELSON\",\n                        \"prefix\": [\n                            \"PROF.\"\n                        ],\n                        \"suffix\": [\n                            \"RPH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4154369032\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2020 MARKET ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94114\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52422\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52422\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52422\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"830\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SAKAMOTO\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4155751130\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2300 16TH ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94103\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52424\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52424\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52424\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NISSENBAUM\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4153029007\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"548 BRANNAN ST UNIT 311, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94107\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52427\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52427\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52427\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34230\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CAMARILLO\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4154876700\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"440 POTRERO AVE, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94110\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52428\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52428\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52428\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"520\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"QUEZADA\",\n                        \"suffix\": [\n                            \"PHARM.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152068978\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1001 POTRERO AVE, SFGH GENERAL MEDICINE CLINIC, 1M\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94110\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52429\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52429\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52429\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"82560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VENISSE\",\n                        \"suffix\": [\n                            \"MSW, ASW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4153599407\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"101 GROVE ST # 323, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94102\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52431\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52431\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52431\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12200\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CLOPPER\",\n                        \"suffix\": [\n                            \"LPC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4155581320\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1235 MISSION ST, SUITE 200\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94103\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52434\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52434\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52434\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"22890\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MCBRIDE\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152068611\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"995 POTRERO AVENUE, BLDG 80, WD 83, UNIVERSITY OF \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94110\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52438\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52438\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52438\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"48940\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BARAKAT\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152068611\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"995 POTRERO AVE, BLDG 80, WD 83\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94110\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52439\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52439\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52439\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"510\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LAM\",\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4154768221\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"521 PARNASSUS AVE, UCSF - DEPT OF ORAL AND MAXILLO\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94143\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52440\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52440\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52440\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"41140\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BUTLER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4156265199\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"484 OAK ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94102\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52441\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52441\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52441\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"540\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PARAMO\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152850180\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"810 CAPP ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94110\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52443\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52443\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52443\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44690\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BUCKMAN\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4154376243\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"25 VAN NESS AVE STE 500, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94102\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52444\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52444\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52444\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"130\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MATHESON\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4154376313\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"25 VAN NESS AVE, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94102\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52445\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52445\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52445\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"92600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JIN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152523908\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1390 MARKET ST STE 210, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94102\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52448\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52448\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52448\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"87360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WEBB\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"LAC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4153073869\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3925 SACRAMENTO ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94118\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52450\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52450\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52450\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"470\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"FUIMAONO\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4159347731\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3801 17TH ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94114\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52451\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52451\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52451\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"69390\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VITT\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4154769000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"500 PARNASSUS AVE, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94143\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52453\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52453\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52453\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DACOSTA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152826490\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2480 MISSION ST. #331, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94110\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52454\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52454\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52454\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"30\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HERO\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"OTR/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4154220095\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"585 8TH AVE, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94118\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52455\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52455\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52455\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PRICE\",\n                        \"suffix\": [\n                            \"DC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4158239707\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4052 18TH ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94114\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52457\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52457\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52457\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"11980\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BARNOW\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152065270\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1001 POTRERO AVE, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94110\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52458\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52458\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52458\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"440\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RUGGLES\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"7023402242\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2844 CALIFORNIA ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94115\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52459\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52459\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52459\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"410\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BOYCE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9259843535\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3333 CALIFORNIA ST, SUITE 245\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94118\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52460\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52460\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52460\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10320\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LALIBERTE\",\n                        \"suffix\": [\n                            \"M.D., F.R.C.S.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4155656136\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45 CASTRO ST, SUITE 121\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94114\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52461\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52461\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52461\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93300\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SMITH\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4159055050\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"68 12TH ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94103\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52462\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52462\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52462\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"74340\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BAUCH\",\n                        \"suffix\": [\n                            \"RN, MS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5026933208\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1285 5TH AVE, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94122\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52466\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52466\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52466\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"88940\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"YAN\",\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4156722040\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"343 NAPLES ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94112\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52468\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52468\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52468\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"29890\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DAVIS\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4157779953\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"915 BRYANT ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94103\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52470\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52470\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52470\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"30670\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BRANDWENE\",\n                        \"suffix\": [\n                            \"ACSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9255961765\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1500 FRANKLIN ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94109\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52471\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52471\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52471\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"60\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"REEVES\",\n                        \"suffix\": [\n                            \"R.N.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6507998361\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"125 EUREKA ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94114\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52472\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52472\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52472\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"55780\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PARGETT\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4159287800\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"433 TURK ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94102\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52474\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52474\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52474\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"32240\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ODOBESCU\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4155656136\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"45 CASTRO ST STE 121, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94114\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52476\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52476\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52476\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93590\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JOHNSTONE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8772646747\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"36 MONTEREY BLVD, A\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94131\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52478\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52478\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52478\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"18350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BARRETTE\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4158334983\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2425 GEARY BLVD, M160\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94115\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52480\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52480\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52480\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"74560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KELLY\",\n                        \"suffix\": [\n                            \"SSPS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152214810\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4150 CLEMENT ST, (116E)\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94121\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52486\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52486\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52486\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89930\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LEE\",\n                        \"suffix\": [\n                            \"PHARMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152214810\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4150 CLEMENT ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94121\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52487\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52487\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52487\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HAHN\",\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4154761784\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"707 PARNASSUS AVE, BOX 0758\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94143\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52489\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52489\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52489\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VAYNSHTOK\",\n                        \"suffix\": [\n                            \"CCC-SLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4153648774\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"251 RHODE ISLAND ST, SUITE 101\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94103\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52490\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52490\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52490\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"800\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NIXON\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"NP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4153531383\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"505 PARNASSUS AVE FL 11, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94143\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52491\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52491\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52491\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"77070\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ROBERTS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.C.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4155127007\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"703 MARKET ST STE 1308, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94103\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52492\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52492\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52492\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KO\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.S.N.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4153532421\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"400 PARNASSUS AVE # A502, UCSF MEDICAL CENTER\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94143\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52493\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52493\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52493\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"78360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GOODE\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4159233500\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2300 CALIFORNIA ST, STE 111\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94115\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52497\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52497\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52497\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"57400\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NGHIEM-SHUM\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DC LAC QME\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4155843042\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4879 MISSION STREET, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94112\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52499\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52499\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52499\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"35970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"RILEY\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4157592389\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"375 LAGUNA HONDA BLVD, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94116\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52502\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52502\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52502\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89990\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ANDERSON\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4158857478\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2330 POST ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94115\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52503\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52503\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52503\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93540\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HARBISON\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152065612\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1001 POTRERO AVENUE, RM 7M\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94110\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52505\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52505\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52505\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SURBER\",\n                        \"suffix\": [\n                            \"APRN, BC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4155517334\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"401 3RD ST, VA DOWNTOWN CLINIC\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94107\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52507\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52507\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52507\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"7350\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BUKUROV\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4159338266\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3905 SACRAMENTO ST, 307\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94118\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52509\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52509\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52509\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"1030\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HALL\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6508215601\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"SFO MEDICAL CLINIC SAN FRANCISCO INTL AIRPORT, TER\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94125\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52512\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52512\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52512\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"61800\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HARVEY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152922940\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1199 BUSH ST, SUITE 690\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94109\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52514\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52514\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52514\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PORTALE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4154762423\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"505 PARNASSUS AVE, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94143\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52516\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52516\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52516\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"83730\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GALVIN\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152065871\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1001 POTRERO AVENUE, RM 1X55\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94110\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52518\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52518\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52518\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65300\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4153532507\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"400 PARNASSUS AVE, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94143\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52522\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52522\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52522\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"36630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"STAMPER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4154763707\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"533 PARNASSUS AVE, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94143\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52526\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52526\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52526\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71420\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WOLTERS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4153532961\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"400 PARNASSUS AVE, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94143\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52528\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52528\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52528\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"400\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OEI\",\n                        \"suffix\": [\n                            \"D.P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4158066338\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"450 SUTTER ST, SUITE 2640\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94108\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52529\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52529\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52529\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"80330\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BUSCHMAN\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4157190000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3700 CALIFORNIA ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94118\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52530\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52530\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52530\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHEUNG\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ],\n                        \"suffix\": [\n                            \"P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4152928852\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1333 BUSH ST, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94109\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52531\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52531\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52531\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50750\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BRETT\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4154761545\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"505 PARNASSUS AVE, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94143\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52532\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52532\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52532\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"140\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LAXER\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4156007880\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2100 WEBSTER ST #115, \"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94115\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52535\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52535\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52535\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"80\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NIENOW\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4157461950\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"558 CLAYTON ST, PSSB G500\"\n                        ],\n                        \"city\": \"SAN FRANCISCO\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94117\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52537\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52537\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52537\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"22970\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PARKER\",\n                        \"suffix\": [\n                            \"DPM\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732398849\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"741 BLOOMFIELD AVE., STE. 1\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52539\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52539\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52539\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"65080\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TODD\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"MS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4122413625\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"8204 CHASKE ST, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"15147\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52540\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52540\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52540\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PICA\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"PA-C\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4128972933\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"427 SOUTH AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"15147\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52544\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52544\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52544\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"16580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BORLESKE\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6086988873\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"732 FAIRVIEW TER, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52545\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52545\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52545\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93380\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PECKMAN\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PSYD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732395857\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"280 BLOOMFIELD AVENUE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52548\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52548\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52548\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10560\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HUEGERICH\",\n                        \"suffix\": [\n                            \"MPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088486628\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"411 PRAIRIE HEIGHTS DR STE 101, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52550\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52550\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52550\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"50050\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WALTERS\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"LCSW\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732390948\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"685 BLOOMFIELD AVE, SUITE 201\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52553\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52553\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52553\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"16540\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TOBIAS\",\n                        \"suffix\": [\n                            \"PH.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9738574400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"130 POMPTON AVE, MONTCLAIR PSYCHOLOGY ASSOCIATES\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52556\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52556\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52556\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"70380\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"PLEVA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6087320628\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"610 ASHTON DR, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52560\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52560\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52560\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WASHINGTON\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9739715595\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"799 BLOOMFIELD AVE, SUITE 201\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52562\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52562\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52562\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"70\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CASSELL\",\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5402131201\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1 GREEN HILL DR, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"VA\",\n                        \"postalCode\": \"24482\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52563\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52563\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52563\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"8220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GRIFFITH\",\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5402131201\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1 GREEN HILL DR, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"VA\",\n                        \"postalCode\": \"24482\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52564\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52564\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52564\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93470\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HOLESH\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"P.T.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4127985370\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5360 SALTSBURG RD, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"15147\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52565\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52565\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52565\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54160\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MANIKAM\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5402481006\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"25 PROFESSIONAL WAY, SUITE 101\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"VA\",\n                        \"postalCode\": \"24482\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52568\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52568\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52568\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"20590\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOLDYSZ\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088452100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1049 N EDGE TRL, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52569\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52569\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52569\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MERRINGER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4127982597\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"6310 QUINCY DR, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"15147\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52570\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52570\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52570\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93580\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JANNICELLI\",\n                        \"suffix\": [\n                            \"MS, CCC-SLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732391176\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"825 BLOOMFIELD AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52571\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52571\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52571\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BARONIA-WHITE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9737467050\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"799 BLOOMFIELD AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52572\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52572\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52572\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"81850\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CARPENTER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4124416399\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"222 ARCH STREET, SUITE A\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"15147\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52573\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52573\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52573\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"620\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GREENBERG\",\n                        \"suffix\": [\n                            \"M.A.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732396359\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"10 HILLSIDE AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52574\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52574\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52574\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"360\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ALDANA\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PSY.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9738262206\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"80 POMPTON AVE, SUITE 204\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52575\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52575\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52575\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93450\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MORLEY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088482332\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"427 S MAIN ST, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52576\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52576\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52576\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BEATTY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088480828\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"925 N MAIN ST, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52577\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52577\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52577\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"44500\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DISTEFANO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732397777\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1 MOUNT PROSPECT AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52580\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52580\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52580\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"53150\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WARD\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"LPC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9178375401\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"139 GROVE AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52584\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52584\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52584\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"79250\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AGRESTI\",\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732395580\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1 MOUNT PROSPECT AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52588\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52588\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52588\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"52600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"IVORY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"PHD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"8668957592\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"159 BLOOMFIELD AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52590\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52590\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52590\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"550\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DESANTIS\",\n                        \"suffix\": [\n                            \"PAC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9738573400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"50 POMPTON AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52591\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52591\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52591\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"34390\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OLSON\",\n                        \"suffix\": [\n                            \"RN\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6082799166\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"290 PRAIRIE HEIGHTS DR, 301\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52592\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52592\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52592\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93460\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MISIASZEK\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"OT/L\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"3153615897\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5647 E MAIN ST, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NY\",\n                        \"postalCode\": \"13478\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52594\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52594\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52594\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"77190\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BARETTO\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732593563\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"799 BLOOMFIELD AVE, SUITE 201\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52595\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52595\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52595\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"27280\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HARNED\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088452100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1049 N EDGE TRL, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52597\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52597\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52597\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93410\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"DAVIDSON\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732394000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"825 BLOOMFIELD AVE, SUITE 101\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52598\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52598\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52598\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"38520\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"LE\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.O\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5402484487\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1 GREEN HILLS DR, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"VA\",\n                        \"postalCode\": \"24482\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52599\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52599\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52599\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"500\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BECKER\",\n                        \"suffix\": [\n                            \"MPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088486628\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"411 PRAIRIE HEIGHTS DR, STE 101\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52600\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52600\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52600\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93570\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MICHALOWSKI\",\n                        \"suffix\": [\n                            \"LCSW, MT-BC\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9737688662\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"14 VINCENT PL, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52601\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52601\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52601\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"0\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NEUMAN\",\n                        \"suffix\": [\n                            \"PT, DPT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088486628\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"411 PRAIRIE HEIGHTS DR., STE 101\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52602\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52602\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52602\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"86430\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SAM\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732593563\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"799 BLOOMFIELD AVE, 201\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52603\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52603\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52603\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"220\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SNOGANS\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"MS/CCC-SPEECH\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732392354\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"131 PARK AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52604\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52604\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52604\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"72610\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CARR\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088459531\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"100 N NINE MOUND RD, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52605\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52605\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52605\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MOHEB\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9738577799\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"685 BLOOMFIELD AVE, SUITE 102\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52606\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52606\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52606\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"320\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"REWEY\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"PTA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088278834\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3325 MOUND VIEW RD, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52607\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52607\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52607\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"260\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"VELLAS\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2018960900\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"50 POMPTON AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52608\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52608\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52608\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"610\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"POOLE\",\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5402131201\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1 GREEN HILL DR, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"VA\",\n                        \"postalCode\": \"24482\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52609\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52609\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52609\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"51680\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ODIGBOEGWU\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732593578\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"799 BLOOMFIELD AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52610\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52610\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52610\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93480\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SIVARAJU\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9732392600\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"271 GROVE AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52611\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52611\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52611\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"12160\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HERKERT\",\n                        \"prefix\": [\n                            \"MRS\"\n                        ],\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088452100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1049 N EDGE TRL, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52614\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52614\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52614\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"75600\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ALLEYNE\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5402483413\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1371 LEE HIGHWAY, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"VA\",\n                        \"postalCode\": \"24482\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52615\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52615\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52615\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"20\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCURTI\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9738579034\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"184 POMPTON AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52617\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52617\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52617\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"54720\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KASOWITZ\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"D.O.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9737467050\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"799 BLOOMFIELD AVE, #201\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52621\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52621\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52621\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"9640\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"WAIT\",\n                        \"suffix\": [\n                            \"PT\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088486628\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"411 PRAIRIE HEIGHTS DR, SUITE 101\"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52623\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52623\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52623\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93400\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHEIBEL\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088459531\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"100 N NINE MOUNDS RD, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52624\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52624\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52624\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"46880\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GUPTA\",\n                        \"suffix\": [\n                            \"DDS\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4128281920\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"625 ALLEGHENY RIVER BLVD, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"15147\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52625\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52625\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52625\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"150\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JONES\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DDS FAGD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"5402480424\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"56 QUICKS MILL RD, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"VA\",\n                        \"postalCode\": \"24482\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52626\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52626\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52626\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AMBROSIO\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9738573400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"50 POMPTON AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52627\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52627\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52627\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"26630\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"O'CONNOR\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9738575370\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"37 GLEN RD, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52628\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52628\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52628\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"HIGHBERGER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"DMD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4127955600\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5769 SALTSBURG RD, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"15147\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52629\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52629\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52629\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"3020\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CARSON\",\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9088459531\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"100 N NINE MOUNDS ROAD, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52631\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52631\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52631\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SHOLL\",\n                        \"suffix\": [\n                            \"R.N.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6085769701\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"717 SPRUCE ST, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52632\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52632\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52632\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"780\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZACHARIAS\",\n                        \"prefix\": [\n                            \"MR.\"\n                        ],\n                        \"suffix\": [\n                            \"LPTA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6088451262\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1100 E VERONA AVE, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52633\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52633\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52633\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"240\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SCHWARTZ\",\n                        \"suffix\": [\n                            \"D.D.S.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"6082277777\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"927 N MAIN ST, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"WI\",\n                        \"postalCode\": \"53593\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52634\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52634\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52634\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"64840\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ARRINGTON\",\n                        \"suffix\": [\n                            \"SLP\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"9785780192\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"101 LYNWOOD RD, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"NJ\",\n                        \"postalCode\": \"07044\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52635\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52635\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52635\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40270\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MCCORMICK\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"4127988000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5360 SALTSBURG RD, \"\n                        ],\n                        \"city\": \"VERONA\",\n                        \"state\": \"PA\",\n                        \"postalCode\": \"15147\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52636\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52636\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52636\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"40\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CHAUDHRY\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2028657151\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2041 GEORGIA AVE NW, SUITE5C\"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20060\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52637\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52637\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52637\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"10\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MAHEND\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2027221725\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"821 KENNEDY ST NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20011\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52638\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52638\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52638\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"45730\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"UKPABI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2024839111\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1416 9TH ST NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20001\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52639\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52639\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52639\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"300\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NYAMSI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2025262400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5101 WISCONSIN AVE NW, SUITE 250\"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20016\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52640\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52640\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52640\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"100\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CLARK\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2022916973\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7506 GEORGIA AVE NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20012\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52641\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52641\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52641\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93530\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MAMAVI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2025262400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5101 WISCONSIN AVE NW, SUITE 250\"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20016\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52642\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52642\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52642\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"290\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BESONG\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2026356006\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2312 RHODE ISLAND AVE NE, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20018\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52643\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52643\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52643\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"89520\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AMEIR\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2025262400\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"5101 WISCONSIN AVE NW, SUITE 250\"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20016\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52644\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52644\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52644\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93390\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OKOI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2025448211\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"313 8TH ST NE, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20002\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52645\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52645\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52645\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"120\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"TANTEH\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2025448211\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"313 8TH ST NE, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20002\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52646\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52646\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52646\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"31190\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BURKA\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2027231100\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7826 EASTERN AVE NW STE LL16, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20012\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52647\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52647\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52647\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"71170\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KEWIR\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2027233060\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7600 GEORGIA AVE NW, SUITE 323\"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20012\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52648\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52648\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52648\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"460\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"GIBREAL\",\n                        \"suffix\": [\n                            \"M.D.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2027413000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2150 PENNSYLVANIA AVE NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20037\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52649\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52649\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52649\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"200\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BARBER\",\n                        \"suffix\": [\n                            \"PCA\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2022932931\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1420 K STREET NW 7TH FLOOR, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20005\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52650\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52650\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52650\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93230\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"CALLENDER\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2022991109\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1025 THOMAS JEFFERSON ST NW, SUITE 180G\"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20007\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52651\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52651\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52651\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"250\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"OJONG\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2026355758\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1731 BUNKER HILL RD NE, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20017\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52652\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52652\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52652\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"59100\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SANI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2027230304\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"820 UPSHUR ST NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20011\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52653\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52653\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52653\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93520\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"KASSAYE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2027230304\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"820 UPSHUR ST NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20011\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52654\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52654\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52654\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"43010\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"SEMERE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2027230304\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"820 UPSHUR ST NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20011\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52655\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52655\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52655\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"210\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BELL\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2027230304\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"820 UPSHUR ST NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20011\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52656\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52656\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52656\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"6180\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"BERAHO\",\n                        \"suffix\": [\n                            \"M.D., M.P.H.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2024694699\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"3924 MINNESOTA AVE NE, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20019\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52657\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52657\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52657\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"380\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ELAME\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2022991109\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1025 THOMAS JEFFERSON ST NW, 180G\"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20007\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52658\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52658\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52658\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"710\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"MILLER\",\n                        \"prefix\": [\n                            \"DR.\"\n                        ],\n                        \"suffix\": [\n                            \"MD\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2027413000\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"2150 PENNSYLVANIA AVE NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20037\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52659\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52659\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52659\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93490\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"JONES\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2022991109\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1025 THOMAS JEFFERSON ST NW, SUITE 180G\"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20007\"\n                    }\n                ],\n                \"gender\": \"female\"\n            }\n        },\n        {\n            \"id\": \"52660\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52660\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52660\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"63040\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AMIIN\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2022991109\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"1025 THOMAS JEFFERSON ST NW, SUITE 180G\"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20007\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52661\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52661\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52661\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"160\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"ZURAWSKI\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2028778278\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"110 IRVING ST NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20010\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52662\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52662\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52662\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"770\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"AYELE\"\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2027221725\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"4616 9TH ST NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20011\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        },\n        {\n            \"id\": \"52663\",\n            \"fullUrl\": \"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/52663\",\n            \"resource\": {\n                \"resourceType\": \"Practitioner\",\n                \"id\": \"52663\",\n                \"meta\": {\n                    \"versionId\": \"1\"\n                },\n                \"identifier\": [\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n                        \"value\": \"93510\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"family\": \"NWANYANWU\",\n                        \"prefix\": [\n                            \"MS.\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"2022916973\"\n                    }\n                ],\n                \"address\": [\n                    {\n                        \"use\": \"work\",\n                        \"type\": \"both\",\n                        \"line\": [\n                            \"7506 GEORGIA AVE NW, \"\n                        ],\n                        \"city\": \"WASHINGTON\",\n                        \"state\": \"DC\",\n                        \"postalCode\": \"20012\"\n                    }\n                ],\n                \"gender\": \"male\"\n            }\n        }\n    ]\n}"}],"_postman_id":"ad8512eb-513f-48c4-9e85-d5169b9944c7"},{"name":"Practitioner Read","id":"a934a46e-f5bd-4114-b820-004846bdfbaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Practitioner/49687","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual Practitioner by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Practitioner/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>String</td>\n<td>The Practitioner FHIR ID.</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Practitioner","49687"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"8ae3cb0a-867e-4697-88d8-aa5f85a58554","name":"Practitioner Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Practitioner/49687"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"451"},{"key":"Date","value":"Mon, 28 Nov 2022 10:28:25 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Practitioner\",\n    \"id\": \"49687\",\n    \"meta\": {\n        \"versionId\": \"1\"\n    },\n    \"identifier\": [\n        {\n            \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n            \"value\": \"34440\"\n        }\n    ],\n    \"active\": true,\n    \"name\": [\n        {\n            \"family\": \"REITZEL\",\n            \"given\": [\n                \"LILI\"\n            ],\n            \"prefix\": [\n                \"MS.\"\n            ],\n            \"suffix\": [\n                \"C.N.M.\"\n            ]\n        }\n    ],\n    \"telecom\": [\n        {\n            \"system\": \"phone\",\n            \"value\": \"5038485861\"\n        }\n    ],\n    \"address\": [\n        {\n            \"use\": \"work\",\n            \"type\": \"both\",\n            \"line\": [\n                \"17175 SW TUALATIN VALLEY HWY, B-2\"\n            ],\n            \"city\": \"BEAVERTON\",\n            \"state\": \"OR\",\n            \"postalCode\": \"97003\"\n        }\n    ],\n    \"gender\": \"female\"\n}"}],"_postman_id":"a934a46e-f5bd-4114-b820-004846bdfbaf"}],"id":"4e861186-74f1-4b66-81f2-e9748236adcc","description":"<p>The Practitioner Resource provides information about a person formally involved in the care of a patient on behalf of a healthcare facility. Practitioners include but are not limited to physicians, nurses, pharmacists, therapists, technologists, and social workers.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>An identifier for the person as this agent</td>\n</tr>\n<tr>\n<td>active</td>\n<td>boolean</td>\n<td>Whether this practitioner's record is in active use</td>\n</tr>\n<tr>\n<td>name</td>\n<td>HumanName</td>\n<td>The name(s) associated with the practitioner</td>\n</tr>\n<tr>\n<td>telecom</td>\n<td>ContactPoint</td>\n<td>A contact detail for the practitioner (that apply to all roles)</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Address</td>\n<td>Address(es) of the practitioner that are not role specific (typically home address)</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>code</td>\n<td>male,female,other,unknown</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>date</td>\n<td>The date  on which the practitioner was born</td>\n</tr>\n<tr>\n<td>photo</td>\n<td>Attachment</td>\n<td>Image of the person</td>\n</tr>\n<tr>\n<td>qualification</td>\n<td>object</td>\n<td>Certification, licenses, or training pertaining to the provision of care</td>\n</tr>\n<tr>\n<td>qualification.identifier</td>\n<td>Identifier</td>\n<td>An identifier for this qualification for the practitioner</td>\n</tr>\n<tr>\n<td>qualification.code</td>\n<td>CodeableConcept</td>\n<td>Coded representation of the qualification</td>\n</tr>\n<tr>\n<td>qualification.period</td>\n<td>Period</td>\n<td>Period during which the qualification is valid</td>\n</tr>\n<tr>\n<td>qualification.issuer</td>\n<td>Reference(Organization)</td>\n<td>Organization that regulates and issues the qualification</td>\n</tr>\n<tr>\n<td>communication</td>\n<td>CodeableConcept</td>\n<td>A language the practitioner can use in patient communication</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4e861186-74f1-4b66-81f2-e9748236adcc"},{"name":"Location","item":[{"name":"Location Search","id":"eb332e66-ec22-4008-8dc4-f37555c607d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Location?:parameters\">https://stage-fhir.cozeva.com:16443/4_0_0/Location?:parameters</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Search for Locations that meet supplied query parameters:\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Location?:parameters\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>[{ Identifier }]</td>\n<td>Unique code or number identifying the location to its users</td>\n<td>false</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>active, suspended, inactive</td>\n<td>false</td>\n</tr>\n<tr>\n<td>operationalStatus</td>\n<td>{ Coding }</td>\n<td>The operational status of the location (typically only for a bed/room)</td>\n<td>false</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the location as used by humans</td>\n<td>false</td>\n</tr>\n<tr>\n<td>alias</td>\n<td>string</td>\n<td>A list of alternate names that the location is known as, or was known as, in the past</td>\n<td>false</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Additional details about the location that could be displayed as further information to identify the location beyond its name</td>\n<td>false</td>\n</tr>\n<tr>\n<td>mode</td>\n<td>code</td>\n<td>instance, kind</td>\n<td>false</td>\n</tr>\n<tr>\n<td>type</td>\n<td>[{ CodeableConcept }]</td>\n<td>Type of function performed</td>\n<td>false</td>\n</tr>\n<tr>\n<td>telecom</td>\n<td>[{ ContactPoint }]</td>\n<td>Contact details of the location</td>\n<td>false</td>\n</tr>\n<tr>\n<td>address</td>\n<td>{ Address }</td>\n<td>physical location</td>\n<td>false</td>\n</tr>\n<tr>\n<td>physicalType</td>\n<td>{ CodeableConcept }</td>\n<td>Physical form of the location</td>\n<td>false</td>\n</tr>\n<tr>\n<td>position</td>\n<td>object</td>\n<td>The absolute geographic location</td>\n<td>false</td>\n</tr>\n<tr>\n<td>position-longitude</td>\n<td>decimal&gt;</td>\n<td>Longitude with WGS84 datum</td>\n<td>false</td>\n</tr>\n<tr>\n<td>position-latitude</td>\n<td>decimal</td>\n<td>Latitude with WGS84 datum</td>\n<td>false</td>\n</tr>\n<tr>\n<td>position-altitude</td>\n<td>decimal</td>\n<td>Altitude with WGS84 datum</td>\n<td>false</td>\n</tr>\n<tr>\n<td>managingOrganization</td>\n<td>{ Reference(Organization) }</td>\n<td>Organization responsible for provisioning and upkeep</td>\n<td>false</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>{ Reference(Location) }</td>\n<td>Another Location this one is physically a part of</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hoursOfOperation</td>\n<td>array</td>\n<td>What days/times during a week is this location usually open</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hoursOfOperation-daysOfWeek</td>\n<td>code</td>\n<td>mon , tue , wed , thu , fri , sat , sun</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hoursOfOperation-allDay</td>\n<td>boolean</td>\n<td>The Location is open all day</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hoursOfOperation-openingTime</td>\n<td>time</td>\n<td>Time that the Location opens</td>\n<td>false</td>\n</tr>\n<tr>\n<td>hoursOfOperation-closingTime</td>\n<td>time</td>\n<td>Time that the Location closes</td>\n<td>false</td>\n</tr>\n<tr>\n<td>availabilityExceptions</td>\n<td>string</td>\n<td>Description of availability exceptions</td>\n<td>false</td>\n</tr>\n<tr>\n<td>endpoint</td>\n<td>[{ Reference(Endpoint) }]</td>\n<td>Technical endpoints providing access to services operated for the location</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"eb332e66-ec22-4008-8dc4-f37555c607d5"},{"name":"Location Read","id":"fd5fc371-a880-4a21-ac6d-a949b328c09d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Location/38233","description":"<h2 id=\"general-information\">General Information</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Http Method</th>\n<th>Url Template</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td><a href=\"https://stage-fhir.cozeva.com:16443/4_0_0/Location/%7BID%7D\">https://stage-fhir.cozeva.com:16443/4_0_0/Location/{ID}</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"description\">Description</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List an individual Location by its id.\n</code></pre><h2 id=\"request\">Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://stage-fhir.cozeva.com:16443/4_0_0/Location/{ID}\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Is Optional</th>\n<th>Is Array</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID (String)</td>\n<td>The Location FHIR ID.</td>\n<td>false</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["4_0_0","Location","38233"],"host":["{{API_BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"1687939c-a942-4626-ba98-dc44dc786970","name":"Location Read","originalRequest":{"method":"GET","header":[],"url":"{{API_BASE_URL}}/4_0_0/Location/38233"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"https://stage-fhir.cozeva.com"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Last-Modified","value":"undefined"},{"key":"ETag","value":"W/\"1\""},{"key":"Content-Type","value":"application/fhir+json; charset=utf-8"},{"key":"Content-Length","value":"539"},{"key":"Date","value":"Tue, 29 Nov 2022 13:36:51 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Location\",\n    \"id\": \"38233\",\n    \"meta\": {\n        \"versionId\": \"1\",\n        \"profile\": [\n            \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-location\"\n        ]\n    },\n    \"status\": \"active\",\n    \"name\": \"DR. EARLE H. NAKAGAWA OPTOMETRIST LLC\",\n    \"telecom\": [\n        {\n            \"system\": \"phone\",\n            \"value\": \"8082476696\"\n        }\n    ],\n    \"address\": {\n        \"line\": [\n            \"45-1123 KAM HWY, SUITE C\"\n        ],\n        \"city\": \"KANEOHE\",\n        \"state\": \"HI\",\n        \"postalCode\": \"96744\",\n        \"country\": \"US\"\n    },\n    \"position\": {\n        \"longitude\": -157.80006,\n        \"latitude\": 21.40385\n    },\n    \"managingOrganization\": {\n        \"reference\": \"Organization/58233\",\n        \"display\": \"DR. EARLE H. NAKAGAWA OPTOMETRIST LLC\"\n    }\n}"}],"_postman_id":"fd5fc371-a880-4a21-ac6d-a949b328c09d"}],"id":"ffc5cbaf-a61a-4d12-a88f-416176454f69","description":"<p>Details and position information for a physical place where services are provided and resources and participants may be stored, found, contained, or accommodated.</p>\n<h2 id=\"response-body\">Response Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>identifier</td>\n<td>Identifier</td>\n<td>Unique code or number identifying the location to its users</td>\n</tr>\n<tr>\n<td>status</td>\n<td>code</td>\n<td>active, suspended, inactive</td>\n</tr>\n<tr>\n<td>operationalStatus</td>\n<td>Coding</td>\n<td>The operational status of the location (typically only for a bed/room)</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the location as used by humans</td>\n</tr>\n<tr>\n<td>alias</td>\n<td>string</td>\n<td>A list of alternate names that the location is known as, or was known as, in the past</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Additional details about the location that could be displayed as further information to identify the location beyond its name</td>\n</tr>\n<tr>\n<td>mode</td>\n<td>code</td>\n<td>instance, kind</td>\n</tr>\n<tr>\n<td>type</td>\n<td>CodeableConcept</td>\n<td>Type of function performed</td>\n</tr>\n<tr>\n<td>telecom</td>\n<td>ContactPoint</td>\n<td>Contact details of the location</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Address</td>\n<td>physical location</td>\n</tr>\n<tr>\n<td>physicalType</td>\n<td>CodeableConcept</td>\n<td>Physical form of the location</td>\n</tr>\n<tr>\n<td>position</td>\n<td>object</td>\n<td>The absolute geographic location</td>\n</tr>\n<tr>\n<td>position.longitude</td>\n<td>decimal</td>\n<td>Longitude with WGS84 datum</td>\n</tr>\n<tr>\n<td>position.latitude</td>\n<td>decimal</td>\n<td>Latitude with WGS84 datum</td>\n</tr>\n<tr>\n<td>position.altitude</td>\n<td>decimal</td>\n<td>Altitude with WGS84 datum</td>\n</tr>\n<tr>\n<td>managingOrganization</td>\n<td>Reference(Organization)</td>\n<td>Organization responsible for provisioning and upkeep</td>\n</tr>\n<tr>\n<td>partOf</td>\n<td>Reference(Location)</td>\n<td>Another Location this one is physically a part of</td>\n</tr>\n<tr>\n<td>hoursOfOperation</td>\n<td>object</td>\n<td>What days/times during a week is this location usually open</td>\n</tr>\n<tr>\n<td>hoursOfOperation.daysOfWeek</td>\n<td>code</td>\n<td>mon , tue , wed , thu , fri , sat , sun</td>\n</tr>\n<tr>\n<td>hoursOfOperation.allDay</td>\n<td>boolean</td>\n<td>The Location is open all day</td>\n</tr>\n<tr>\n<td>hoursOfOperation.openingTime</td>\n<td>time</td>\n<td>Time that the Location opens</td>\n</tr>\n<tr>\n<td>hoursOfOperation.closingTime</td>\n<td>time</td>\n<td>Time that the Location closes</td>\n</tr>\n<tr>\n<td>availabilityExceptions</td>\n<td>string</td>\n<td>Description of availability exceptions</td>\n</tr>\n<tr>\n<td>endpoint</td>\n<td>Reference(Endpoint)</td>\n<td>Technical endpoints providing access to services operated for the location</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ffc5cbaf-a61a-4d12-a88f-416176454f69"},{"name":"Electronic Health Information Export","item":[],"id":"6a2c404e-5178-45c0-8afc-4dfbdda48317","description":"<p><strong>170.315(b) (10) Electronic Health Information Export</strong></p>\n<p><strong>Introduction</strong><br />EHI means “electronic protected health information” (ePHI) as defined in 45 CFR 160.103 to the<br />extent that it would be included in a designated record set as defined in 45 CFR 164.501,<br />regardless of whether the group of records are used or maintained by or for a covered entity.<br />EHR (electronic health record) systems provide means for exporting PHI (protected health<br />information) that allows healthcare clinicians to share information while maintaining the privacy<br />and security of patient data.</p>\n<p>Users with specific permission that can be granted upon request can use the export option<br />available via the Download button on the Cozeva Developer Dashboard to export EHI<br />for one or more patients.</p>\n<p>The applications provide export of electronic health information (EHI) for a single patient as well as<br />for patient population in the following formats.</p>\n<p><strong>FHIR</strong>: Cozeva supports HL7® Version 4.0.1 FHIR® Release 4, October 30, 2019, FHIR®<br />US Core Implementation Guide STU V3.1.1, HL7 FHIR Bulk Data export. Please refer<br />170.315(g)(10) API Documentation for the API Specifications.</p>\n<p><strong>General Information</strong><br />The export function meets the requirements of the Electronic Health Information export<br />criterion §170.315(b)(10) in the 2015 Edition Cures Update.</p>\n","_postman_id":"6a2c404e-5178-45c0-8afc-4dfbdda48317"}]}