Summary Table
| Categories |
Total Count |
| PII |
0 |
| URL |
0 |
| DNS |
0 |
| EKL |
0 |
| IP |
0 |
| PORT |
0 |
| VsID |
0 |
| CF |
0 |
| AI |
0 |
| VPD |
0 |
| PL |
0 |
| Other |
0 |
File Content
[
'{{repeat(5, 10)}}',
{
patientIdentifier: [
'{{repeat(1)}}',
{
assigningAuthority: 'EDIPI',
uniqueId: 'D123401'
}
],
type: function (tags) {
var types = ['Personal', 'Provider', 'Facility', 'Insurance'];
return types[tags.integer(0, types.length - 1)];
},
association: function(tags) {
var assns = ['PersonalAssociationType', 'PhysicianAssociationType', 'FacilityAssociationType', 'InsuranceAssociationType'];
return assns[tags.integer(0, assns.length - 1)];
},
phones: [
'{{repeat(3)}}',
{
phoneNumber: '{{integer(100, 10000000000)}}',
type: function(tags) {
var phones = ['PersonalPhoneType', 'ProviderPhoneType', 'FacilityPhoneType', 'InsurancePhoneType'];
return phones[tags.integer(0, phones.length - 1)];
}
}
],
address: {
city: '{{city()}}',
country: 'USA',
county: 'Fairfax',
stateAbbrev: '{{state()}}',
providence: '',
line1: '{{street()}}',
line2: '',
zipCode: '{{integer(100, 100000)}}'
},
emailAddress: '{{email()}}',
notes: 'Laborum aute fugiat minim elit nisi sunt ad culpa amet. Officia cupidatat dolore do labore nulla mollit dolor reprehenderit Lorem cillum. Dolore eiusmod ad commodo cillum id aliqua aliquip laboris esse minim proident incididunt reprehenderit dolor. Aute nulla eiusmod nostrud enim sunt aute laboris culpa ipsum aliquip. Consectetur consectetur ipsum exercitation adipisicing tempor.',
website: 'http://happypuppy.com',
prefix: function(tags) {
var prefixes = ['Mr', 'Mrs', 'Ms', 'Dr'];
return prefixes[tags.integer(0, prefixes.length - 1)];
},
firstName: '{{firstName()}}',
lastName: '{{surname()}}',
specialty: function(tags) {
var specs = ['Doctor', 'Special Ops', 'Nurse'];
return specs[tags.integer(0, specs.length - 1)];
},
address2: '{{integer(100, 999)}} {{street()}}, {{city()}}, {{state()}}, {{integer(100, 10000)}}'
}
]