Array of certifications or professional licenses the candidate has earned.
| Attribute | String | Description |
|---|---|---|
| issuingAgency* | object(LicensingAgency) | The agency that issued the license. |
| number | string | License number. |
| name | string | License name. |
| startDate | string | Start date from when license is valid. |
| status | string | Must be "active" or "inactive". |
| notes | string | Any additional notes on a given license. |
"licenses":[
{
"issuingAgency":{
"name":"Some Institute",
"address":{
"addressLine":"ABC company",
"municipality":"SEATTLE",
"regionCode":"US-WA",
"postalCode":"98001",
"countryCode":"US",
"validFrom":"2008-08-01"
}
},
"number":"S12345",
"name":"Nursing Certification",
"startDate":"2016-01-01",
"status":"active",
"notes":"some notes"
}
]