davinci_pas_test_kit 0.11.1 → 0.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/config/presets/pas_client_example.json +30 -0
  3. data/config/presets/pas_ri.json +69 -0
  4. data/lib/davinci_pas_test_kit/client_suite.rb +28 -2
  5. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/client_tests/pas_client_approval_submit_test.rb +29 -1
  6. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/client_tests/pas_client_denial_submit_test.rb +27 -4
  7. data/lib/davinci_pas_test_kit/{generated/v2.0.1/client_tests/client_pended_pas_inquiry_request_bundle_validation_test.rb → custom_groups/v2.0.1/client_tests/pas_client_inquire_request_bundle_validation_test.rb} +22 -20
  8. data/lib/davinci_pas_test_kit/{generated/v2.0.1/client_tests/client_denial_pas_response_bundle_validation_test.rb → custom_groups/v2.0.1/client_tests/pas_client_inquire_response_bundle_validation_test.rb} +34 -21
  9. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/client_tests/pas_client_pended_submit_test.rb +124 -5
  10. data/lib/davinci_pas_test_kit/{generated/v2.0.1/client_tests/client_pas_request_bundle_validation_test.rb → custom_groups/v2.0.1/client_tests/pas_client_request_bundle_validation_test.rb} +22 -20
  11. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/client_tests/{pas_client_approval_submit_response_attest.rb → pas_client_response_attest.rb} +26 -9
  12. data/lib/davinci_pas_test_kit/{generated/v2.0.1/client_tests/client_pended_pas_response_bundle_validation_test.rb → custom_groups/v2.0.1/client_tests/pas_client_response_bundle_validation_test.rb} +44 -20
  13. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/client_tests/pas_client_subscription_create_test.rb +49 -0
  14. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/client_tests/pas_client_subscription_pas_conformance_test.rb +48 -0
  15. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/pas_client_approval_group.rb +21 -9
  16. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/pas_client_authentication_group.rb +2 -2
  17. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/pas_client_denial_group.rb +21 -22
  18. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/pas_client_pended_group.rb +97 -31
  19. data/lib/davinci_pas_test_kit/docs/PAS Requirements Interpretation.xlsx +0 -0
  20. data/lib/davinci_pas_test_kit/docs/client_suite_description_v201.md +213 -72
  21. data/lib/davinci_pas_test_kit/endpoints/claim_endpoint.rb +85 -134
  22. data/lib/davinci_pas_test_kit/endpoints/subscription_create_endpoint.rb +96 -0
  23. data/lib/davinci_pas_test_kit/endpoints/subscription_status_endpoint.rb +90 -0
  24. data/lib/davinci_pas_test_kit/fhir_resource_navigation.rb +3 -3
  25. data/lib/davinci_pas_test_kit/generated/v2.0.1/pas_inquiry_request_bundle/metadata.yml +0 -2
  26. data/lib/davinci_pas_test_kit/generated/v2.0.1/pas_inquiry_request_bundle/server_pas_inquiry_request_bundle_validation_test.rb +3 -1
  27. data/lib/davinci_pas_test_kit/generated/v2.0.1/pas_inquiry_response_bundle/server_pas_inquiry_response_bundle_validation_test.rb +2 -1
  28. data/lib/davinci_pas_test_kit/generated/v2.0.1/pas_request_bundle/metadata.yml +0 -2
  29. data/lib/davinci_pas_test_kit/generated/v2.0.1/pas_request_bundle/server_pas_request_bundle_validation_test.rb +3 -1
  30. data/lib/davinci_pas_test_kit/generated/v2.0.1/pas_response_bundle/metadata.yml +0 -4
  31. data/lib/davinci_pas_test_kit/generated/v2.0.1/pas_response_bundle/server_pas_response_bundle_validation_test.rb +2 -1
  32. data/lib/davinci_pas_test_kit/generated/v2.0.1/pas_server_denial_use_case_group.rb +1 -1
  33. data/lib/davinci_pas_test_kit/generated/v2.0.1/pas_server_pended_use_case_group.rb +6 -5
  34. data/lib/davinci_pas_test_kit/generated/v2.0.1/server_suite.rb +5 -2
  35. data/lib/davinci_pas_test_kit/generator/group_generator.rb +9 -8
  36. data/lib/davinci_pas_test_kit/generator/group_metadata_extractor.rb +7 -3
  37. data/lib/davinci_pas_test_kit/generator/templates/group.rb.erb +129 -0
  38. data/lib/davinci_pas_test_kit/generator/templates/must_support.rb.erb +73 -0
  39. data/lib/davinci_pas_test_kit/generator/templates/operation.rb.erb +62 -0
  40. data/lib/davinci_pas_test_kit/generator/templates/resource_list.rb.erb +13 -0
  41. data/lib/davinci_pas_test_kit/generator/templates/suite.rb.erb +92 -0
  42. data/lib/davinci_pas_test_kit/generator/templates/validation.rb.erb +98 -0
  43. data/lib/davinci_pas_test_kit/generator/validation_test_generator.rb +19 -56
  44. data/lib/davinci_pas_test_kit/generator/value_extractor.rb +4 -1
  45. data/lib/davinci_pas_test_kit/generator.rb +1 -1
  46. data/lib/davinci_pas_test_kit/igs/davinci_pas_2.0.1.tgz +0 -0
  47. data/lib/davinci_pas_test_kit/jobs/send_pas_subscription_notification.rb +136 -0
  48. data/lib/davinci_pas_test_kit/jobs/send_subscription_handshake.rb +139 -0
  49. data/lib/davinci_pas_test_kit/metadata.rb +87 -0
  50. data/lib/davinci_pas_test_kit/pas_bundle_validation.rb +8 -7
  51. data/lib/davinci_pas_test_kit/response_generator.rb +397 -0
  52. data/lib/davinci_pas_test_kit/tags.rb +9 -0
  53. data/lib/davinci_pas_test_kit/urls.rb +8 -0
  54. data/lib/davinci_pas_test_kit/user_input_response.rb +11 -8
  55. data/lib/davinci_pas_test_kit/validation_test.rb +0 -1
  56. data/lib/davinci_pas_test_kit/version.rb +2 -1
  57. data/lib/davinci_pas_test_kit.rb +1 -0
  58. metadata +44 -15
  59. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/client_tests/pas_client_denial_submit_response_attest.rb +0 -38
  60. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/client_tests/pas_client_pended_inquire_response_attest.rb +0 -39
  61. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/client_tests/pas_client_pended_inquire_test.rb +0 -35
  62. data/lib/davinci_pas_test_kit/custom_groups/v2.0.1/client_tests/pas_client_pended_submit_response_attest.rb +0 -39
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c4814f5a03b2688fac37d470bfa033640ba717a566897bf1d037c618cd404a66
4
- data.tar.gz: 7d346d15fcbac4c5032263ed40da6ae018792cbbc9c5dd2589cbb0eee193897f
3
+ metadata.gz: 62baa1ef3d1f180bb4ca13321592b2068377bc014a075338b2a2549f72b9a471
4
+ data.tar.gz: 032b4d39b5f4e5b82912f46dce3ae2d22431d14119c036c528f6620249299e16
5
5
  SHA512:
6
- metadata.gz: 99ad90a6c99758c1bcc61d0d67529676c4a63f328e73ec527bd5b429e5509d0133848a884220dc7e82a064c229879eff7a42233966a4ff254dd2f41a9eb3bf4b
7
- data.tar.gz: 9fe9a036b193b5a201515881a40f657325a0535730c89a70c32acdc936eb6c9210d93b698393aff135eb25a309f27e583073b0f5f90789469f6b152a0e2f0cda
6
+ metadata.gz: 9d32c1fc5e23da501b1b708a18b564f8f722c0759994c87c04c2ebbebb5806361ba0893af1178ee2de99ba0ecd17aeb36cfab9af0e42eba2f286884138e7edbd
7
+ data.tar.gz: cfbdece1e0e3d1dc963d0335608a698bb3c7e8cfb8e9a337e89a90fa0756f8c23f8732cdd986303dee3ac1b3a788cc1b3efe723aa5d973572d2d37346f876348
@@ -0,0 +1,30 @@
1
+ {
2
+ "title": "Example PAS Server Responses",
3
+ "id": "pas_client_example",
4
+ "test_suite_id": "davinci_pas_client_suite_v201",
5
+ "inputs": [
6
+ {
7
+ "name": "client_id",
8
+ "value": "8e065803bfd3cd8a9b59e488160b88f6",
9
+ "_title": "Client ID",
10
+ "_description": "\n Client ID that the client will use to request an access token.\n ",
11
+ "_type": "text"
12
+ },
13
+ {
14
+ "name": "denial_json_response",
15
+ "value": "{\r\n \"id\": \"095641c0-8ad9-41ce-abae-f53b446fefff\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/profile-pas-response-bundle\"\r\n ]\r\n },\r\n \"type\": \"collection\",\r\n \"timestamp\": \"2024-01-30T13:29:32Z\",\r\n \"entry\": [\r\n {\r\n \"fullUrl\": \"urn:uuid:45e176b5-c381-42df-9264-ffd74a38ef92\",\r\n \"resource\": {\r\n \"id\": \"45e176b5-c381-42df-9264-ffd74a38ef92\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/profile-claimresponse\"\r\n ]\r\n },\r\n \"identifier\": [\r\n {\r\n \"system\": \"http:\/\/notreal.com\/PATIENT_EVENT_TRACE_NUMBER\",\r\n \"value\": \"111366\",\r\n \"assigner\": {\r\n \"identifier\": {\r\n \"system\": \"http:\/\/notreal.com\/USER_ASSIGNED\",\r\n \"value\": \"5556667771\"\r\n }\r\n }\r\n }\r\n ],\r\n \"status\": \"active\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http:\/\/terminology.hl7.org\/CodeSystem\/claim-type\",\r\n \"code\": \"professional\"\r\n }\r\n ]\r\n },\r\n \"use\": \"preauthorization\",\r\n \"patient\": {\r\n \"reference\": \"urn:uuid:0b321e9e-571b-4f83-8cea-fa23424383bb\"\r\n },\r\n \"created\": \"2024-01-30T13:29:32Z\",\r\n \"insurer\": {\r\n \"reference\": \"urn:uuid:ff7adc9d-8854-4947-874a-8b61bca953c1\"\r\n },\r\n \"requestor\": {\r\n \"reference\": \"urn:uuid:b0881003-0d22-499d-840b-91dc7f6f4479\"\r\n },\r\n \"outcome\": \"complete\",\r\n \"item\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-itemPreAuthIssueDate\",\r\n \"valueDate\": \"2024-01-30\"\r\n },\r\n {\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-itemPreAuthPeriod\",\r\n \"valuePeriod\": {\r\n \"start\": \"2024-01-30\",\r\n \"end\": \"2024-02-29\"\r\n }\r\n }\r\n ],\r\n \"itemSequence\": 1,\r\n \"adjudication\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-reviewActionCode\",\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"https:\/\/codesystem.x12.org\/005010\/306\",\r\n \"code\": \"DENIEDCODE\",\r\n \"display\": \"Not Certified\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-reviewAction\"\r\n }\r\n ],\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http:\/\/terminology.hl7.org\/CodeSystem\/adjudication\",\r\n \"code\": \"submitted\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"extension\": [\r\n {\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-itemPreAuthIssueDate\",\r\n \"valueDate\": \"2024-01-30\"\r\n },\r\n {\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-itemPreAuthPeriod\",\r\n \"valuePeriod\": {\r\n \"start\": \"2024-01-30\",\r\n \"end\": \"2024-02-29\"\r\n }\r\n }\r\n ],\r\n \"itemSequence\": 2,\r\n \"adjudication\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-reviewActionCode\",\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"https:\/\/codesystem.x12.org\/005010\/306\",\r\n \"code\": \"A1\",\r\n \"display\": \"Certified in total\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-reviewAction\"\r\n }\r\n ],\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http:\/\/terminology.hl7.org\/CodeSystem\/adjudication\",\r\n \"code\": \"submitted\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceType\": \"ClaimResponse\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:0b321e9e-571b-4f83-8cea-fa23424383bb\",\r\n \"resource\": {\r\n \"id\": \"0b321e9e-571b-4f83-8cea-fa23424383bb\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/profile-subscriber\"\r\n ]\r\n },\r\n \"extension\": [\r\n {\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-militaryStatus\",\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"https:\/\/codesystem.x12.org\/005010\/584\",\r\n \"code\": \"RU\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"identifier\": [\r\n {\r\n \"system\": \"http:\/\/notreal.com\/MIN\",\r\n \"value\": \"12345678901\"\r\n }\r\n ],\r\n \"name\": [\r\n {\r\n \"family\": \"SMITH\",\r\n \"given\": [\r\n \"JOE\"\r\n ]\r\n }\r\n ],\r\n \"gender\": \"male\",\r\n \"resourceType\": \"Patient\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:ff7adc9d-8854-4947-874a-8b61bca953c1\",\r\n \"resource\": {\r\n \"id\": \"ff7adc9d-8854-4947-874a-8b61bca953c1\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/profile-insurer\"\r\n ]\r\n },\r\n \"identifier\": [\r\n {\r\n \"system\": \"http:\/\/hl7.org\/fhir\/sid\/us-npi\",\r\n \"value\": \"789312\"\r\n }\r\n ],\r\n \"active\": true,\r\n \"type\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"https:\/\/codesystem.x12.org\/005010\/98\",\r\n \"code\": \"PR\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"name\": \"MARYLAND CAPITAL INSURANCE COMPANY\",\r\n \"resourceType\": \"Organization\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:b0881003-0d22-499d-840b-91dc7f6f4479\",\r\n \"resource\": {\r\n \"id\": \"b0881003-0d22-499d-840b-91dc7f6f4479\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/profile-requestor\"\r\n ]\r\n },\r\n \"identifier\": [\r\n {\r\n \"system\": \"http:\/\/hl7.org\/fhir\/sid\/us-npi\",\r\n \"value\": \"8189991234\"\r\n }\r\n ],\r\n \"active\": true,\r\n \"type\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"https:\/\/codesystem.x12.org\/005010\/98\",\r\n \"code\": \"X3\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"name\": \"DR. JOE SMITH CORPORATION\",\r\n \"address\": [\r\n {\r\n \"line\": [\r\n \"111 1ST STREET\"\r\n ],\r\n \"city\": \"SAN DIEGO\",\r\n \"state\": \"CA\",\r\n \"postalCode\": \"92101\",\r\n \"country\": \"US\"\r\n }\r\n ],\r\n \"resourceType\": \"Organization\"\r\n }\r\n }\r\n ],\r\n \"resourceType\": \"Bundle\"\r\n}",
16
+ "_title": "Claim denied response JSON",
17
+ "_description": "\n The response provided will be validated against the PAS Response Bundle profile. If determined to be\n invalid, a validation message will be returned, and the test group will be skipped.\n ",
18
+ "_type": "textarea",
19
+ "_optional": true
20
+ },
21
+ {
22
+ "name": "pended_json_response",
23
+ "value": "{\r\n \"id\": \"28c1b339-16d1-4bd3-b397-cce304a31d50\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/profile-pas-response-bundle\"\r\n ]\r\n },\r\n \"type\": \"collection\",\r\n \"timestamp\": \"2024-01-30T13:44:30Z\",\r\n \"entry\": [\r\n {\r\n \"fullUrl\": \"urn:uuid:482fd012-7825-423d-83de-69d09920198b\",\r\n \"resource\": {\r\n \"id\": \"482fd012-7825-423d-83de-69d09920198b\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/profile-claimresponse\"\r\n ]\r\n },\r\n \"identifier\": [\r\n {\r\n \"system\": \"http:\/\/notreal.com\/PATIENT_EVENT_TRACE_NUMBER\",\r\n \"value\": \"1263291\",\r\n \"assigner\": {\r\n \"identifier\": {\r\n \"system\": \"http:\/\/notreal.com\/USER_ASSIGNED\",\r\n \"value\": \"99102388213\"\r\n }\r\n }\r\n }\r\n ],\r\n \"status\": \"active\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http:\/\/terminology.hl7.org\/CodeSystem\/claim-type\",\r\n \"code\": \"professional\"\r\n }\r\n ]\r\n },\r\n \"use\": \"preauthorization\",\r\n \"patient\": {\r\n \"reference\": \"urn:uuid:0b321e9e-571b-4f83-8cea-fa23424383bb\"\r\n },\r\n \"created\": \"2024-01-30T13:44:30Z\",\r\n \"insurer\": {\r\n \"reference\": \"urn:uuid:ff7adc9d-8854-4947-874a-8b61bca953c1\"\r\n },\r\n \"requestor\": {\r\n \"reference\": \"urn:uuid:b0881003-0d22-499d-840b-91dc7f6f4479\"\r\n },\r\n \"outcome\": \"queued\",\r\n \"item\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-itemPreAuthIssueDate\",\r\n \"valueDate\": \"2024-01-30\"\r\n },\r\n {\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-itemPreAuthPeriod\",\r\n \"valuePeriod\": {\r\n \"start\": \"2024-01-30\",\r\n \"end\": \"2024-02-29\"\r\n }\r\n }\r\n ],\r\n \"itemSequence\": 1,\r\n \"adjudication\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-reviewActionCode\",\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"https:\/\/codesystem.x12.org\/005010\/306\",\r\n \"code\": \"PENDEDCODE\",\r\n \"display\": \"Pended\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-reviewAction\"\r\n }\r\n ],\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http:\/\/terminology.hl7.org\/CodeSystem\/adjudication\",\r\n \"code\": \"submitted\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceType\": \"ClaimResponse\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:0b321e9e-571b-4f83-8cea-fa23424383bb\",\r\n \"resource\": {\r\n \"id\": \"0b321e9e-571b-4f83-8cea-fa23424383bb\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/profile-subscriber\"\r\n ]\r\n },\r\n \"extension\": [\r\n {\r\n \"url\": \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/extension-militaryStatus\",\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"https:\/\/codesystem.x12.org\/005010\/584\",\r\n \"code\": \"RU\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"identifier\": [\r\n {\r\n \"system\": \"http:\/\/notreal.com\/MIN\",\r\n \"value\": \"12345678901\"\r\n }\r\n ],\r\n \"name\": [\r\n {\r\n \"family\": \"SMITH\",\r\n \"given\": [\r\n \"JOE\"\r\n ]\r\n }\r\n ],\r\n \"gender\": \"male\",\r\n \"resourceType\": \"Patient\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:ff7adc9d-8854-4947-874a-8b61bca953c1\",\r\n \"resource\": {\r\n \"id\": \"ff7adc9d-8854-4947-874a-8b61bca953c1\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/profile-insurer\"\r\n ]\r\n },\r\n \"identifier\": [\r\n {\r\n \"system\": \"http:\/\/hl7.org\/fhir\/sid\/us-npi\",\r\n \"value\": \"789312\"\r\n }\r\n ],\r\n \"active\": true,\r\n \"type\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"https:\/\/codesystem.x12.org\/005010\/98\",\r\n \"code\": \"PR\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"name\": \"MARYLAND CAPITAL INSURANCE COMPANY\",\r\n \"resourceType\": \"Organization\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:b0881003-0d22-499d-840b-91dc7f6f4479\",\r\n \"resource\": {\r\n \"id\": \"b0881003-0d22-499d-840b-91dc7f6f4479\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"http:\/\/hl7.org\/fhir\/us\/davinci-pas\/StructureDefinition\/profile-requestor\"\r\n ]\r\n },\r\n \"identifier\": [\r\n {\r\n \"system\": \"http:\/\/hl7.org\/fhir\/sid\/us-npi\",\r\n \"value\": \"8189991234\"\r\n }\r\n ],\r\n \"active\": true,\r\n \"type\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"https:\/\/codesystem.x12.org\/005010\/98\",\r\n \"code\": \"X3\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"name\": \"DR. JOE SMITH CORPORATION\",\r\n \"address\": [\r\n {\r\n \"line\": [\r\n \"111 1ST STREET\"\r\n ],\r\n \"city\": \"SAN DIEGO\",\r\n \"state\": \"CA\",\r\n \"postalCode\": \"92101\",\r\n \"country\": \"US\"\r\n }\r\n ],\r\n \"resourceType\": \"Organization\"\r\n }\r\n }\r\n ],\r\n \"resourceType\": \"Bundle\"\r\n}",
24
+ "_title": "Claim pended response JSON",
25
+ "_description": "\n The response provided will be validated against the PAS Response Bundle profile. If determined to be\n invalid, a validation message will be returned, and the test group will be skipped.\n ",
26
+ "_type": "textarea",
27
+ "_optional": true
28
+ }
29
+ ]
30
+ }