You can link Veeva Vault claims to the text fragments of e-Detailers, emails, sites, and modules in eWizard Editor.
When linking claims, eWizard checks if the text fragment matches with the Veeva Vault Match Text or Match Text Variations field.
Claims configuration file
The linked claims metadata is saved in the ./common/resources/claims.json
file. The file appears in your project after you link a claim to a project in eWizard Editor. Each claim is a separate object in the list
array.
Example of a claims.json
file:
// ./.ewizard/claims.json{ "app": { "list": [ { "id": "V1W000000000102", "name": "CL-000001", "matchText": "choice for patients with NERD", "matchTextVariations": [ "elderly patients with NERD", "Test 2 2wer 23e 23r 23 23 r23 23r23r" ], "linked": true, "references": [ { "id": 108, "name": "Comparative efficacy of esomeprazole and omeprazole", "type": {}, "citation": "Citation #2", "related": [ "V1W000000000104", "V1W000000000105", "V1W000000000106", "V1W000000000107", "V1W000000000202" ], } ] } ], "order": [ "V1W000000000102", "V1W000000000103", "V1W000000000107", "V1W000000000206" ] } }
WARNING: Don't modify the claims.json
file manually to guarantee stable behavior in eWizard.
Fields description
The claims.json
file has the following fields:
Field | Description |
| The ID of the claim in Veeva Vault |
| The name of the claim in Veeva Vault |
| The value of the Match Text field in Veeva Vault. eWizard matches the data from this field to the text in the component |
| The value of the Match Text Variations field in Veeva Vault |
| If |
| Contains info about the references that are linked with the claim |
| Displays the order in which the claims are linked |
Each reference in the references
array has the following fields:
Field | Description |
| ID of the Veeva Vault reference |
| Name of the Veeva Vault reference |
| The Veeva Vault document type |
| The Veeva Vault citation |
| The IDs of the claims related to the current reference |