SelfDisclosures

An array of objects to disclosing aliases and convictions in a POST /screenings request.

Attribute

Type

Description

address

object(Address)

Candidate's address during the time of the conviction or during the time they used the alias.

aliasFamilyName

string

First name of alias.

aliasGivenName

string

Last name of alias.

aliasMiddleName

string

Middle name of alias.

isAliasCurrentName

boolean

Boolean to confirm whether the alias is same as current name.

conviction

object(SelfDisclosureConviction)

Information about a past conviction.

notes

string

Any additional notes.

"selfDisclosures"[
  {
    "address":{
      "addressLine":"University District",
      "municipality":"SEATTLE",
      "regionCode":"US-WA",
      "postalCode":"98001",
      "countryCode":"US",
      "validFrom":"2008-08-01"
    },
    "aliasFamilyName":"Steve",
    "aliasGivenName":"Rogers",
    "aliasMiddleName":"K",
    "isAliasCurrentName":false,
    "conviction":{
      "arrestDate":"1990-12-01",
      "caseCounty":"King",
      "convicted":false,
      "convictionDetails":"Found not guilty",
      "currentlyOnProbation":false,
      "dispositionDate":"1991-31-03",
      "offenseLevel":"Class B Felony",
      "offenseDate":"1990-29-11",
      "sentenceDate":"1990-20-04",
      "summary":"Arrest occurred but candidate was found not guilty."
    },
    "notes":"nothing"
  }
]