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(100)}}',
{
"_id" :'{{objectId()}}',
"patientIdentifier" : {
"uniqueId" :"D123401",
"assigningAuthority" : "EDIPI"
},
"type" :"Provider",
"association" : function (tags) {
var types = ['Physician', 'Nurse Practitioner', 'Physician Assistant', 'Dentist', 'Pharamacist', 'Chiropractor', 'Nurse', 'Other'];
return types[tags.integer(0, types.length - 1)];
},
"phones" : [
'{{repeat(4)}}',
{
"number" :'{{phone()}}',
"type" : function (tags) {
var types = ['Office', 'Fax', 'Mobile', 'Other'];
return types[tags.integer(0, types.length - 1)];
}
}
],
"address" : {
"city" : '{{city()}}',
"country" :'{{country()}}',
"stateAbbrev" :'{{state()}}' ,
"line1" : '{{integer(100, 999)}} {{street()}}',
"zipCode" : '{{integer(20000,29999)}}'
},
"notes" :'{{lorem(10, "words")}}',
"website" :function (tags) {
return ('http://' + this.association+ tags.domainZone()).toLowerCase();
},
"prefix" : function (tags) {
var types = ['Dr.', 'Ms.', 'Mrs.', 'Mr.'];
return types[tags.integer(0, types.length - 1)];
},
"firstName" : '{{firstName()}}',
"lastName" : '{{surname()}}',
"emailAddress" :function (tags) {
return (this.firstName + '.' + this.lastName + '@' + this.association+ tags.domainZone()).toLowerCase();
},
"specialty" : '{{lorem(1,"words")}}'
}
]