About the CCAP database

Link to the table | Raw data files | SQL Reference | About Google's Big Query

CCAP2: This is the most up to date master table.

Table name Case types Date range Record count Updated date
master CM, CV, CF, CT, SC, CI, HL, HT, ME, AD, TP Jan. 1st, 2005 - Jan, 15th, 2018 8.0 million Jan, 31th, 2018

CCAP: This table is depreciated. Use CCAP2 instead.

Table name Case types Date range Record count Updated date
master_all CV, CM, CF, CT, HL, CI, SC Varies by case type 3 million May, 17th, 2016

Tip: Use command+f to search through this documentation.

Querying tips:

Case Types:
CV: Civil, CM: Misdemeanor, CF: Felony, CT: Criminal Traffic, HL: Hospital Lien, CI: Commitment of an Inmate, SC: Small Claims

The data is stored in a hierarchical format. As a result, only leaf nodes can be returned with SELECT statements. For example, to get the case status, use status.descr or to get the county information, use county.countyName, county.countyNo.

Cases are unique by case number (caseNo) and county number (county.countyNo) however the only required field in the database is the case number since sealed cases do not return a county number but instead have the county name in the status description(status.descr).


You can perform case-insensitive queries by appending IGNORE CASE at the end of query. - Docs

If you are receiving an error similar to Cannot query the cross product of repeated fields... then you likely need to flatten the columns mentioned in the error. This can be done using the FLATTEN(table,column) function. - Docs


There are several hundred cases that do not have any case details other than a case number and status description. These are likely sealed or confidential cases.

More details about how this data was generated and loaded into the database at the bottom of this page.

Examples

Count all cases by case type:

SELECT
  type.caseType, Count(*)
FROM
  [CCAP.master_all]
group by type.caseType
                    

Search for cases by court record event text:

SELECT
  caseNo,
  county.countyNo,
  courtRecord.eventDate,
  courtRecord.dktTxt
FROM
  [CCAP.master_all]
WHERE
  courtRecord.dktTxt LIKE '%Milwaukee Journal Sentinel%'
                    

Cases per county:

SELECT
  county.countyNo,
  county.countyName,
  COUNT(*) AS total_cases
FROM
  [CCAP.master_all]
GROUP BY
  county.countyNo,
  county.countyName
ORDER BY
  total_cases DESC
                    

Get all charge statutes for any cases where court record text matches a phrase. Normally this would return a cross product error, but notice the usage of flatten to force those columns into a tabular format.

SELECT
  county.countyNo,
  county.countyName,
  caseNo,
  caption,
  type.caseType,
  charges.statuteCite,
  charges.chargeNo,
  charges.jdgmts.jdgmtSeqNo,
  charges.jdgmts.jdgmtDispoDate,
  charges.jdgmts.dispo.descr,
  courtRecord.dktTxt
FROM
  FLATTEN(FLATTEN(CCAP.master_all, charges), courtRecord)
WHERE
  (type.caseType = 'CF')
  AND courtRecord.dktTxt LIKE '%Milwaukee Journal Sentinel%'
                    

Database fields

county
Field nameFull field nameType
countycountyrecord
county / countyNo
Field nameFull field nameType
countyNocounty.countyNointeger

County number

county / countyName
Field nameFull field nameType
countyNamecounty.countyNamestring

County name

county / districtNo
Field nameFull field nameType
districtNocounty.districtNointeger
caseNo
Field nameFull field nameType
caseNocaseNostring
caption
Field nameFull field nameType
captioncaptionstring
status
Field nameFull field nameType
statusstatusrecord
status / statusCode
Field nameFull field nameType
statusCodestatus.statusCodestring
status / caseOrParty
Field nameFull field nameType
caseOrPartystatus.caseOrPartystring
status / descr
Field nameFull field nameType
descrstatus.descrstring
status / isActive
Field nameFull field nameType
isActivestatus.isActiveboolean
type
Field nameFull field nameType
typetyperecord
type / caseType
Field nameFull field nameType
caseTypetype.caseTypestring
type / descr
Field nameFull field nameType
descrtype.descrstring
type / isActive
Field nameFull field nameType
isActivetype.isActiveboolean
type / isAllowCharges
Field nameFull field nameType
isAllowChargestype.isAllowChargesboolean
type / isRestricted
Field nameFull field nameType
isRestrictedtype.isRestrictedboolean
isPardoned
Field nameFull field nameType
isPardonedisPardonedboolean
isConverted
Field nameFull field nameType
isConvertedisConvertedboolean
isRemandFromAppeal
Field nameFull field nameType
isRemandFromAppealisRemandFromAppealboolean
isPartySeal
Field nameFull field nameType
isPartySealisPartySealboolean
isPetitionerSeal
Field nameFull field nameType
isPetitionerSealisPetitionerSealboolean
isSeal
Field nameFull field nameType
isSealisSealboolean
prosecutingAgency
Field nameFull field nameType
prosecutingAgencyprosecutingAgencyrecord
prosecutingAgency / countyNo
Field nameFull field nameType
countyNoprosecutingAgency.countyNointeger
prosecutingAgency / prosAgencyNo
Field nameFull field nameType
prosAgencyNoprosecutingAgency.prosAgencyNointeger
prosecutingAgency / name
Field nameFull field nameType
nameprosecutingAgency.namestring
prosecutingAttorneyName
Field nameFull field nameType
prosecutingAttorneyNameprosecutingAttorneyNamerecord
prosecutingAttorneyName / first
Field nameFull field nameType
firstprosecutingAttorneyName.firststring
prosecutingAttorneyName / middle
Field nameFull field nameType
middleprosecutingAttorneyName.middlestring
prosecutingAttorneyName / last
Field nameFull field nameType
lastprosecutingAttorneyName.laststring
prosecutingAttorneyName / suffix
Field nameFull field nameType
suffixprosecutingAttorneyName.suffixstring
wcisClass
Field nameFull field nameType
wcisClasswcisClassrecord
wcisClass / caseType
Field nameFull field nameType
caseTypewcisClass.caseTypestring
wcisClass / wcisClsCode
Field nameFull field nameType
wcisClsCodewcisClass.wcisClsCodestring
wcisClass / descr
Field nameFull field nameType
descrwcisClass.descrstring
responsibleOfficialName
Field nameFull field nameType
responsibleOfficialNameresponsibleOfficialNamerecord
responsibleOfficialName / first
Field nameFull field nameType
firstresponsibleOfficialName.firststring
responsibleOfficialName / middle
Field nameFull field nameType
middleresponsibleOfficialName.middlestring
responsibleOfficialName / last
Field nameFull field nameType
lastresponsibleOfficialName.laststring
responsibleOfficialName / suffix
Field nameFull field nameType
suffixresponsibleOfficialName.suffixstring
charges
Field nameFull field nameType
chargeschargesrecord
charges / chargeNo
Field nameFull field nameType
chargeNocharges.chargeNointeger
charges / statuteCite
Field nameFull field nameType
statuteCitecharges.statuteCitestring
charges / severity
Field nameFull field nameType
severitycharges.severityrecord
charges / severity / sevClsCode
Field nameFull field nameType
sevClsCodecharges.severity.sevClsCodestring
charges / severity / descr
Field nameFull field nameType
descrcharges.severity.descrstring
charges / severity / isActive
Field nameFull field nameType
isActivecharges.severity.isActiveboolean
charges / descr
Field nameFull field nameType
descrcharges.descrstring
charges / offenseDate
Field nameFull field nameType
offenseDatecharges.offenseDatetimestamp
charges / plea
Field nameFull field nameType
pleacharges.plearecord
charges / plea / pleaCode
Field nameFull field nameType
pleaCodecharges.plea.pleaCodestring
charges / plea / descr
Field nameFull field nameType
descrcharges.plea.descrstring
charges / plea / isActive
Field nameFull field nameType
isActivecharges.plea.isActiveboolean
charges / pleaDate
Field nameFull field nameType
pleaDatecharges.pleaDatetimestamp
charges / chargeSeqNo
Field nameFull field nameType
chargeSeqNocharges.chargeSeqNointeger
charges / reopEvent
Field nameFull field nameType
reopEventcharges.reopEventrecord
charges / reopEvent / eventType
Field nameFull field nameType
eventTypecharges.reopEvent.eventTypestring
charges / reopEvent / eventDate
Field nameFull field nameType
eventDatecharges.reopEvent.eventDatetimestamp
charges / reopEvent / descr
Field nameFull field nameType
descrcharges.reopEvent.descrstring
charges / chargeModifiers
Field nameFull field nameType
chargeModifierscharges.chargeModifiersrecord
charges / chargeModifiers / modSeqNo
Field nameFull field nameType
modSeqNocharges.chargeModifiers.modSeqNointeger
charges / chargeModifiers / statuteCite
Field nameFull field nameType
statuteCitecharges.chargeModifiers.statuteCitestring
charges / chargeModifiers / descr
Field nameFull field nameType
descrcharges.chargeModifiers.descrstring
charges / modifiedSeverity
Field nameFull field nameType
modifiedSeveritycharges.modifiedSeverityrecord
charges / modifiedSeverity / sevClsCode
Field nameFull field nameType
sevClsCodecharges.modifiedSeverity.sevClsCodestring
charges / modifiedSeverity / isActive
Field nameFull field nameType
isActivecharges.modifiedSeverity.isActiveboolean
charges / modifiedSeverity / descr
Field nameFull field nameType
descrcharges.modifiedSeverity.descrstring
charges / jdgmts
Field nameFull field nameType
jdgmtscharges.jdgmtsrecord
charges / jdgmts / jdgmtSeqNo
Field nameFull field nameType
jdgmtSeqNocharges.jdgmts.jdgmtSeqNointeger
charges / jdgmts / dispoTxt
Field nameFull field nameType
dispoTxtcharges.jdgmts.dispoTxtstring
charges / jdgmts / prob
Field nameFull field nameType
probcharges.jdgmts.probrecord
charges / jdgmts / prob / len1
Field nameFull field nameType
len1charges.jdgmts.prob.len1integer
charges / jdgmts / prob / len2
Field nameFull field nameType
len2charges.jdgmts.prob.len2integer
charges / jdgmts / prob / isForJdgmt
Field nameFull field nameType
isForJdgmtcharges.jdgmts.prob.isForJdgmtboolean
charges / jdgmts / prob / comments
Field nameFull field nameType
commentscharges.jdgmts.prob.commentsstring
charges / jdgmts / prob / pd1
Field nameFull field nameType
pd1charges.jdgmts.prob.pd1record
charges / jdgmts / prob / pd1 / isActive
Field nameFull field nameType
isActivecharges.jdgmts.prob.pd1.isActiveboolean
charges / jdgmts / prob / pd1 / pdCode
Field nameFull field nameType
pdCodecharges.jdgmts.prob.pd1.pdCodestring
charges / jdgmts / prob / pd1 / descr
Field nameFull field nameType
descrcharges.jdgmts.prob.pd1.descrstring
charges / jdgmts / prob / pd2
Field nameFull field nameType
pd2charges.jdgmts.prob.pd2record
charges / jdgmts / prob / pd2 / isActive
Field nameFull field nameType
isActivecharges.jdgmts.prob.pd2.isActiveboolean
charges / jdgmts / prob / pd2 / pdCode
Field nameFull field nameType
pdCodecharges.jdgmts.prob.pd2.pdCodestring
charges / jdgmts / prob / pd2 / descr
Field nameFull field nameType
descrcharges.jdgmts.prob.pd2.descrstring
charges / jdgmts / prob / superAgency
Field nameFull field nameType
superAgencycharges.jdgmts.prob.superAgencyrecord
charges / jdgmts / prob / superAgency / isActive
Field nameFull field nameType
isActivecharges.jdgmts.prob.superAgency.isActiveboolean
charges / jdgmts / prob / superAgency / countyNo
Field nameFull field nameType
countyNocharges.jdgmts.prob.superAgency.countyNointeger
charges / jdgmts / prob / superAgency / superAgencyNo
Field nameFull field nameType
superAgencyNocharges.jdgmts.prob.superAgency.superAgencyNostring
charges / jdgmts / prob / superAgency / name
Field nameFull field nameType
namecharges.jdgmts.prob.superAgency.namestring
charges / jdgmts / prob / jdgmtDispoDate
Field nameFull field nameType
jdgmtDispoDatecharges.jdgmts.prob.jdgmtDispoDatetimestamp
charges / jdgmts / orderDate
Field nameFull field nameType
orderDatecharges.jdgmts.orderDatetimestamp
charges / jdgmts / dispoCtofcName
Field nameFull field nameType
dispoCtofcNamecharges.jdgmts.dispoCtofcNamerecord
charges / jdgmts / dispoCtofcName / first
Field nameFull field nameType
firstcharges.jdgmts.dispoCtofcName.firststring
charges / jdgmts / dispoCtofcName / middle
Field nameFull field nameType
middlecharges.jdgmts.dispoCtofcName.middlestring
charges / jdgmts / dispoCtofcName / last
Field nameFull field nameType
lastcharges.jdgmts.dispoCtofcName.laststring
charges / jdgmts / dispoCtofcName / suffix
Field nameFull field nameType
suffixcharges.jdgmts.dispoCtofcName.suffixstring
charges / jdgmts / jdgmtDispoDate
Field nameFull field nameType
jdgmtDispoDatecharges.jdgmts.jdgmtDispoDatetimestamp
charges / jdgmts / isJOC
Field nameFull field nameType
isJOCcharges.jdgmts.isJOCboolean
charges / jdgmts / isModified
Field nameFull field nameType
isModifiedcharges.jdgmts.isModifiedboolean
charges / jdgmts / isProbOrdered
Field nameFull field nameType
isProbOrderedcharges.jdgmts.isProbOrderedboolean
charges / jdgmts / dispo
Field nameFull field nameType
dispocharges.jdgmts.disporecord
charges / jdgmts / dispo / dispoCode
Field nameFull field nameType
dispoCodecharges.jdgmts.dispo.dispoCodestring
charges / jdgmts / dispo / descr
Field nameFull field nameType
descrcharges.jdgmts.dispo.descrstring
charges / jdgmts / dispo / isActive
Field nameFull field nameType
isActivecharges.jdgmts.dispo.isActiveboolean
charges / jdgmts / supervisions
Field nameFull field nameType
supervisionscharges.jdgmts.supervisionsrecord
charges / jdgmts / supervisions / orderSeqNo
Field nameFull field nameType
orderSeqNocharges.jdgmts.supervisions.orderSeqNointeger
charges / jdgmts / supervisions / sentenceCode
Field nameFull field nameType
sentenceCodecharges.jdgmts.supervisions.sentenceCoderecord
charges / jdgmts / supervisions / sentenceCode / sentCode
Field nameFull field nameType
sentCodecharges.jdgmts.supervisions.sentenceCode.sentCodestring
charges / jdgmts / supervisions / sentenceCode / descr
Field nameFull field nameType
descrcharges.jdgmts.supervisions.sentenceCode.descrstring
charges / jdgmts / supervisions / sentenceCode / isActive
Field nameFull field nameType
isActivecharges.jdgmts.supervisions.sentenceCode.isActiveboolean
charges / jdgmts / supervisions / sentenceCode / wcisSentCode
Field nameFull field nameType
wcisSentCodecharges.jdgmts.supervisions.sentenceCode.wcisSentCodestring
charges / jdgmts / supervisions / pd1
Field nameFull field nameType
pd1charges.jdgmts.supervisions.pd1record
charges / jdgmts / supervisions / pd1 / isActive
Field nameFull field nameType
isActivecharges.jdgmts.supervisions.pd1.isActiveboolean
charges / jdgmts / supervisions / pd1 / pdCode
Field nameFull field nameType
pdCodecharges.jdgmts.supervisions.pd1.pdCodestring
charges / jdgmts / supervisions / pd1 / descr
Field nameFull field nameType
descrcharges.jdgmts.supervisions.pd1.descrstring
charges / jdgmts / supervisions / pd2
Field nameFull field nameType
pd2charges.jdgmts.supervisions.pd2record
charges / jdgmts / supervisions / pd2 / isActive
Field nameFull field nameType
isActivecharges.jdgmts.supervisions.pd2.isActiveboolean
charges / jdgmts / supervisions / pd2 / pdCode
Field nameFull field nameType
pdCodecharges.jdgmts.supervisions.pd2.pdCodestring
charges / jdgmts / supervisions / pd2 / descr
Field nameFull field nameType
descrcharges.jdgmts.supervisions.pd2.descrstring
charges / jdgmts / supervisions / sentDate
Field nameFull field nameType
sentDatecharges.jdgmts.supervisions.sentDatetimestamp
charges / jdgmts / supervisions / beginDate
Field nameFull field nameType
beginDatecharges.jdgmts.supervisions.beginDatetimestamp
charges / jdgmts / supervisions / len1
Field nameFull field nameType
len1charges.jdgmts.supervisions.len1integer
charges / jdgmts / supervisions / len2
Field nameFull field nameType
len2charges.jdgmts.supervisions.len2integer
charges / jdgmts / supervisions / wWhat
Field nameFull field nameType
wWhatcharges.jdgmts.supervisions.wWhatstring
charges / jdgmts / supervisions / concurConsec
Field nameFull field nameType
concurConseccharges.jdgmts.supervisions.concurConsecrecord
charges / jdgmts / supervisions / concurConsec / comments
Field nameFull field nameType
commentscharges.jdgmts.supervisions.concurConsec.commentsstring
charges / jdgmts / supervisions / concurConsec / concurConsecCode
Field nameFull field nameType
concurConsecCodecharges.jdgmts.supervisions.concurConsec.concurConsecCodestring
charges / jdgmts / supervisions / superTimeConds
Field nameFull field nameType
superTimeCondscharges.jdgmts.supervisions.superTimeCondsrecord
charges / jdgmts / supervisions / superTimeConds / wWhat
Field nameFull field nameType
wWhatcharges.jdgmts.supervisions.superTimeConds.wWhatstring
charges / jdgmts / supervisions / superTimeConds / condPd1
Field nameFull field nameType
condPd1charges.jdgmts.supervisions.superTimeConds.condPd1record
charges / jdgmts / supervisions / superTimeConds / condPd1 / isActive
Field nameFull field nameType
isActivecharges.jdgmts.supervisions.superTimeConds.condPd1.isActiveboolean
charges / jdgmts / supervisions / superTimeConds / condPd1 / pdCode
Field nameFull field nameType
pdCodecharges.jdgmts.supervisions.superTimeConds.condPd1.pdCodestring
charges / jdgmts / supervisions / superTimeConds / condPd1 / descr
Field nameFull field nameType
descrcharges.jdgmts.supervisions.superTimeConds.condPd1.descrstring
charges / jdgmts / supervisions / superTimeConds / condPd2
Field nameFull field nameType
condPd2charges.jdgmts.supervisions.superTimeConds.condPd2record
charges / jdgmts / supervisions / superTimeConds / condPd2 / isActive
Field nameFull field nameType
isActivecharges.jdgmts.supervisions.superTimeConds.condPd2.isActiveboolean
charges / jdgmts / supervisions / superTimeConds / condPd2 / pdCode
Field nameFull field nameType
pdCodecharges.jdgmts.supervisions.superTimeConds.condPd2.pdCodestring
charges / jdgmts / supervisions / superTimeConds / condPd2 / descr
Field nameFull field nameType
descrcharges.jdgmts.supervisions.superTimeConds.condPd2.descrstring
charges / jdgmts / supervisions / superTimeConds / condLen1
Field nameFull field nameType
condLen1charges.jdgmts.supervisions.superTimeConds.condLen1integer
charges / jdgmts / supervisions / superTimeConds / condLen2
Field nameFull field nameType
condLen2charges.jdgmts.supervisions.superTimeConds.condLen2integer
charges / jdgmts / supervisions / superTimeConds / condSeqNo
Field nameFull field nameType
condSeqNocharges.jdgmts.supervisions.superTimeConds.condSeqNointeger
charges / jdgmts / supervisions / superTimeConds / condition
Field nameFull field nameType
conditioncharges.jdgmts.supervisions.superTimeConds.conditionrecord
charges / jdgmts / supervisions / superTimeConds / condition / wcisCondType
Field nameFull field nameType
wcisCondTypecharges.jdgmts.supervisions.superTimeConds.condition.wcisCondTypestring
charges / jdgmts / supervisions / superTimeConds / condition / descr
Field nameFull field nameType
descrcharges.jdgmts.supervisions.superTimeConds.condition.descrstring
charges / jdgmts / supervisions / superTimeConds / condition / groupedType
Field nameFull field nameType
groupedTypecharges.jdgmts.supervisions.superTimeConds.condition.groupedTypestring
charges / jdgmts / supervisions / superTimeConds / condition / isMoreThanOne
Field nameFull field nameType
isMoreThanOnecharges.jdgmts.supervisions.superTimeConds.condition.isMoreThanOneboolean
charges / jdgmts / supervisions / superTimeConds / condition / isJuvCrim
Field nameFull field nameType
isJuvCrimcharges.jdgmts.supervisions.superTimeConds.condition.isJuvCrimboolean
charges / jdgmts / supervisions / superTimeConds / condition / condCode
Field nameFull field nameType
condCodecharges.jdgmts.supervisions.superTimeConds.condition.condCodestring
charges / jdgmts / supervisions / superTimeConds / concurConsec
Field nameFull field nameType
concurConseccharges.jdgmts.supervisions.superTimeConds.concurConsecrecord
charges / jdgmts / supervisions / superTimeConds / concurConsec / comments
Field nameFull field nameType
commentscharges.jdgmts.supervisions.superTimeConds.concurConsec.commentsstring
charges / jdgmts / supervisions / superTimeConds / concurConsec / concurConsecCode
Field nameFull field nameType
concurConsecCodecharges.jdgmts.supervisions.superTimeConds.concurConsec.concurConsecCodestring
charges / jdgmts / supervisions / superMiscConds
Field nameFull field nameType
superMiscCondscharges.jdgmts.supervisions.superMiscCondsrecord
charges / jdgmts / supervisions / superMiscConds / condSeqNo
Field nameFull field nameType
condSeqNocharges.jdgmts.supervisions.superMiscConds.condSeqNointeger
charges / jdgmts / supervisions / superMiscConds / condition
Field nameFull field nameType
conditioncharges.jdgmts.supervisions.superMiscConds.conditionrecord
charges / jdgmts / supervisions / superMiscConds / condition / wcisCondType
Field nameFull field nameType
wcisCondTypecharges.jdgmts.supervisions.superMiscConds.condition.wcisCondTypestring
charges / jdgmts / supervisions / superMiscConds / condition / descr
Field nameFull field nameType
descrcharges.jdgmts.supervisions.superMiscConds.condition.descrstring
charges / jdgmts / supervisions / superMiscConds / condition / groupedType
Field nameFull field nameType
groupedTypecharges.jdgmts.supervisions.superMiscConds.condition.groupedTypestring
charges / jdgmts / supervisions / superMiscConds / condition / isMoreThanOne
Field nameFull field nameType
isMoreThanOnecharges.jdgmts.supervisions.superMiscConds.condition.isMoreThanOneboolean
charges / jdgmts / supervisions / superMiscConds / condition / isJuvCrim
Field nameFull field nameType
isJuvCrimcharges.jdgmts.supervisions.superMiscConds.condition.isJuvCrimboolean
charges / jdgmts / supervisions / superMiscConds / condition / condCode
Field nameFull field nameType
condCodecharges.jdgmts.supervisions.superMiscConds.condition.condCodestring
charges / jdgmts / supervisions / superMiscConds / condTxt
Field nameFull field nameType
condTxtcharges.jdgmts.supervisions.superMiscConds.condTxtstring
charges / jdgmts / timeConds
Field nameFull field nameType
timeCondscharges.jdgmts.timeCondsrecord
charges / jdgmts / timeConds / wWhat
Field nameFull field nameType
wWhatcharges.jdgmts.timeConds.wWhatstring
charges / jdgmts / timeConds / concurConsec
Field nameFull field nameType
concurConseccharges.jdgmts.timeConds.concurConsecrecord
charges / jdgmts / timeConds / concurConsec / comments
Field nameFull field nameType
commentscharges.jdgmts.timeConds.concurConsec.commentsstring
charges / jdgmts / timeConds / concurConsec / concurConsecCode
Field nameFull field nameType
concurConsecCodecharges.jdgmts.timeConds.concurConsec.concurConsecCodestring
charges / jdgmts / timeConds / condLen1
Field nameFull field nameType
condLen1charges.jdgmts.timeConds.condLen1integer
charges / jdgmts / timeConds / condLen2
Field nameFull field nameType
condLen2charges.jdgmts.timeConds.condLen2integer
charges / jdgmts / timeConds / condSeqNo
Field nameFull field nameType
condSeqNocharges.jdgmts.timeConds.condSeqNointeger
charges / jdgmts / timeConds / condPd1
Field nameFull field nameType
condPd1charges.jdgmts.timeConds.condPd1record
charges / jdgmts / timeConds / condPd1 / isActive
Field nameFull field nameType
isActivecharges.jdgmts.timeConds.condPd1.isActiveboolean
charges / jdgmts / timeConds / condPd1 / pdCode
Field nameFull field nameType
pdCodecharges.jdgmts.timeConds.condPd1.pdCodestring
charges / jdgmts / timeConds / condPd1 / descr
Field nameFull field nameType
descrcharges.jdgmts.timeConds.condPd1.descrstring
charges / jdgmts / timeConds / condPd2
Field nameFull field nameType
condPd2charges.jdgmts.timeConds.condPd2record
charges / jdgmts / timeConds / condPd2 / isActive
Field nameFull field nameType
isActivecharges.jdgmts.timeConds.condPd2.isActiveboolean
charges / jdgmts / timeConds / condPd2 / pdCode
Field nameFull field nameType
pdCodecharges.jdgmts.timeConds.condPd2.pdCodestring
charges / jdgmts / timeConds / condPd2 / descr
Field nameFull field nameType
descrcharges.jdgmts.timeConds.condPd2.descrstring
charges / jdgmts / timeConds / condition
Field nameFull field nameType
conditioncharges.jdgmts.timeConds.conditionrecord
charges / jdgmts / timeConds / condition / wcisCondType
Field nameFull field nameType
wcisCondTypecharges.jdgmts.timeConds.condition.wcisCondTypestring
charges / jdgmts / timeConds / condition / descr
Field nameFull field nameType
descrcharges.jdgmts.timeConds.condition.descrstring
charges / jdgmts / timeConds / condition / groupedType
Field nameFull field nameType
groupedTypecharges.jdgmts.timeConds.condition.groupedTypestring
charges / jdgmts / timeConds / condition / isMoreThanOne
Field nameFull field nameType
isMoreThanOnecharges.jdgmts.timeConds.condition.isMoreThanOneboolean
charges / jdgmts / timeConds / condition / isJuvCrim
Field nameFull field nameType
isJuvCrimcharges.jdgmts.timeConds.condition.isJuvCrimboolean
charges / jdgmts / timeConds / condition / condCode
Field nameFull field nameType
condCodecharges.jdgmts.timeConds.condition.condCodestring
charges / jdgmts / miscConds
Field nameFull field nameType
miscCondscharges.jdgmts.miscCondsrecord
charges / jdgmts / miscConds / condSeqNo
Field nameFull field nameType
condSeqNocharges.jdgmts.miscConds.condSeqNointeger
charges / jdgmts / miscConds / condition
Field nameFull field nameType
conditioncharges.jdgmts.miscConds.conditionrecord
charges / jdgmts / miscConds / condition / wcisCondType
Field nameFull field nameType
wcisCondTypecharges.jdgmts.miscConds.condition.wcisCondTypestring
charges / jdgmts / miscConds / condition / descr
Field nameFull field nameType
descrcharges.jdgmts.miscConds.condition.descrstring
charges / jdgmts / miscConds / condition / groupedType
Field nameFull field nameType
groupedTypecharges.jdgmts.miscConds.condition.groupedTypestring
charges / jdgmts / miscConds / condition / isMoreThanOne
Field nameFull field nameType
isMoreThanOnecharges.jdgmts.miscConds.condition.isMoreThanOneboolean
charges / jdgmts / miscConds / condition / isJuvCrim
Field nameFull field nameType
isJuvCrimcharges.jdgmts.miscConds.condition.isJuvCrimboolean
charges / jdgmts / miscConds / condition / condCode
Field nameFull field nameType
condCodecharges.jdgmts.miscConds.condition.condCodestring
charges / jdgmts / miscConds / condTxt
Field nameFull field nameType
condTxtcharges.jdgmts.miscConds.condTxtstring
historicalCharges
Field nameFull field nameType
historicalChargeshistoricalChargesrecord
historicalCharges / chargeNo
Field nameFull field nameType
chargeNohistoricalCharges.chargeNointeger
historicalCharges / statuteCite
Field nameFull field nameType
statuteCitehistoricalCharges.statuteCitestring
historicalCharges / reopEvent
Field nameFull field nameType
reopEventhistoricalCharges.reopEventrecord
historicalCharges / reopEvent / eventType
Field nameFull field nameType
eventTypehistoricalCharges.reopEvent.eventTypestring
historicalCharges / reopEvent / eventDate
Field nameFull field nameType
eventDatehistoricalCharges.reopEvent.eventDatetimestamp
historicalCharges / reopEvent / descr
Field nameFull field nameType
descrhistoricalCharges.reopEvent.descrstring
historicalCharges / severity
Field nameFull field nameType
severityhistoricalCharges.severityrecord
historicalCharges / severity / sevClsCode
Field nameFull field nameType
sevClsCodehistoricalCharges.severity.sevClsCodestring
historicalCharges / severity / descr
Field nameFull field nameType
descrhistoricalCharges.severity.descrstring
historicalCharges / severity / isActive
Field nameFull field nameType
isActivehistoricalCharges.severity.isActiveboolean
historicalCharges / modifiedSeverity
Field nameFull field nameType
modifiedSeverityhistoricalCharges.modifiedSeverityrecord
historicalCharges / modifiedSeverity / sevClsCode
Field nameFull field nameType
sevClsCodehistoricalCharges.modifiedSeverity.sevClsCodestring
historicalCharges / modifiedSeverity / isActive
Field nameFull field nameType
isActivehistoricalCharges.modifiedSeverity.isActiveboolean
historicalCharges / modifiedSeverity / descr
Field nameFull field nameType
descrhistoricalCharges.modifiedSeverity.descrstring
historicalCharges / descr
Field nameFull field nameType
descrhistoricalCharges.descrstring
historicalCharges / offenseDate
Field nameFull field nameType
offenseDatehistoricalCharges.offenseDatetimestamp
historicalCharges / pleaDate
Field nameFull field nameType
pleaDatehistoricalCharges.pleaDatetimestamp
historicalCharges / chargeSeqNo
Field nameFull field nameType
chargeSeqNohistoricalCharges.chargeSeqNointeger
historicalCharges / chargeModifiers
Field nameFull field nameType
chargeModifiershistoricalCharges.chargeModifiersrecord
historicalCharges / chargeModifiers / modSeqNo
Field nameFull field nameType
modSeqNohistoricalCharges.chargeModifiers.modSeqNointeger
historicalCharges / chargeModifiers / statuteCite
Field nameFull field nameType
statuteCitehistoricalCharges.chargeModifiers.statuteCitestring
historicalCharges / chargeModifiers / descr
Field nameFull field nameType
descrhistoricalCharges.chargeModifiers.descrstring
historicalCharges / plea
Field nameFull field nameType
pleahistoricalCharges.plearecord
historicalCharges / plea / pleaCode
Field nameFull field nameType
pleaCodehistoricalCharges.plea.pleaCodestring
historicalCharges / plea / descr
Field nameFull field nameType
descrhistoricalCharges.plea.descrstring
historicalCharges / plea / isActive
Field nameFull field nameType
isActivehistoricalCharges.plea.isActiveboolean
historicalCharges / jdgmts
Field nameFull field nameType
jdgmtshistoricalCharges.jdgmtsrecord
historicalCharges / jdgmts / jdgmtSeqNo
Field nameFull field nameType
jdgmtSeqNohistoricalCharges.jdgmts.jdgmtSeqNointeger
historicalCharges / jdgmts / orderDate
Field nameFull field nameType
orderDatehistoricalCharges.jdgmts.orderDatetimestamp
historicalCharges / jdgmts / dispoCtofcName
Field nameFull field nameType
dispoCtofcNamehistoricalCharges.jdgmts.dispoCtofcNamerecord
historicalCharges / jdgmts / dispoCtofcName / first
Field nameFull field nameType
firsthistoricalCharges.jdgmts.dispoCtofcName.firststring
historicalCharges / jdgmts / dispoCtofcName / middle
Field nameFull field nameType
middlehistoricalCharges.jdgmts.dispoCtofcName.middlestring
historicalCharges / jdgmts / dispoCtofcName / last
Field nameFull field nameType
lasthistoricalCharges.jdgmts.dispoCtofcName.laststring
historicalCharges / jdgmts / dispoCtofcName / suffix
Field nameFull field nameType
suffixhistoricalCharges.jdgmts.dispoCtofcName.suffixstring
historicalCharges / jdgmts / prob
Field nameFull field nameType
probhistoricalCharges.jdgmts.probrecord
historicalCharges / jdgmts / prob / len1
Field nameFull field nameType
len1historicalCharges.jdgmts.prob.len1integer
historicalCharges / jdgmts / prob / len2
Field nameFull field nameType
len2historicalCharges.jdgmts.prob.len2integer
historicalCharges / jdgmts / prob / isForJdgmt
Field nameFull field nameType
isForJdgmthistoricalCharges.jdgmts.prob.isForJdgmtboolean
historicalCharges / jdgmts / prob / comments
Field nameFull field nameType
commentshistoricalCharges.jdgmts.prob.commentsstring
historicalCharges / jdgmts / prob / pd1
Field nameFull field nameType
pd1historicalCharges.jdgmts.prob.pd1record
historicalCharges / jdgmts / prob / pd1 / isActive
Field nameFull field nameType
isActivehistoricalCharges.jdgmts.prob.pd1.isActiveboolean
historicalCharges / jdgmts / prob / pd1 / pdCode
Field nameFull field nameType
pdCodehistoricalCharges.jdgmts.prob.pd1.pdCodestring
historicalCharges / jdgmts / prob / pd1 / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.prob.pd1.descrstring
historicalCharges / jdgmts / prob / pd2
Field nameFull field nameType
pd2historicalCharges.jdgmts.prob.pd2record
historicalCharges / jdgmts / prob / pd2 / isActive
Field nameFull field nameType
isActivehistoricalCharges.jdgmts.prob.pd2.isActiveboolean
historicalCharges / jdgmts / prob / pd2 / pdCode
Field nameFull field nameType
pdCodehistoricalCharges.jdgmts.prob.pd2.pdCodestring
historicalCharges / jdgmts / prob / pd2 / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.prob.pd2.descrstring
historicalCharges / jdgmts / prob / superAgency
Field nameFull field nameType
superAgencyhistoricalCharges.jdgmts.prob.superAgencyrecord
historicalCharges / jdgmts / prob / superAgency / isActive
Field nameFull field nameType
isActivehistoricalCharges.jdgmts.prob.superAgency.isActiveboolean
historicalCharges / jdgmts / prob / superAgency / countyNo
Field nameFull field nameType
countyNohistoricalCharges.jdgmts.prob.superAgency.countyNointeger
historicalCharges / jdgmts / prob / superAgency / superAgencyNo
Field nameFull field nameType
superAgencyNohistoricalCharges.jdgmts.prob.superAgency.superAgencyNostring
historicalCharges / jdgmts / prob / superAgency / name
Field nameFull field nameType
namehistoricalCharges.jdgmts.prob.superAgency.namestring
historicalCharges / jdgmts / prob / jdgmtDispoDate
Field nameFull field nameType
jdgmtDispoDatehistoricalCharges.jdgmts.prob.jdgmtDispoDatetimestamp
historicalCharges / jdgmts / jdgmtDispoDate
Field nameFull field nameType
jdgmtDispoDatehistoricalCharges.jdgmts.jdgmtDispoDatetimestamp
historicalCharges / jdgmts / isJOC
Field nameFull field nameType
isJOChistoricalCharges.jdgmts.isJOCboolean
historicalCharges / jdgmts / dispoTxt
Field nameFull field nameType
dispoTxthistoricalCharges.jdgmts.dispoTxtstring
historicalCharges / jdgmts / isModified
Field nameFull field nameType
isModifiedhistoricalCharges.jdgmts.isModifiedboolean
historicalCharges / jdgmts / isProbOrdered
Field nameFull field nameType
isProbOrderedhistoricalCharges.jdgmts.isProbOrderedboolean
historicalCharges / jdgmts / dispo
Field nameFull field nameType
dispohistoricalCharges.jdgmts.disporecord
historicalCharges / jdgmts / dispo / dispoCode
Field nameFull field nameType
dispoCodehistoricalCharges.jdgmts.dispo.dispoCodestring
historicalCharges / jdgmts / dispo / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.dispo.descrstring
historicalCharges / jdgmts / dispo / isActive
Field nameFull field nameType
isActivehistoricalCharges.jdgmts.dispo.isActiveboolean
historicalCharges / jdgmts / supervisions
Field nameFull field nameType
supervisionshistoricalCharges.jdgmts.supervisionsrecord
historicalCharges / jdgmts / supervisions / orderSeqNo
Field nameFull field nameType
orderSeqNohistoricalCharges.jdgmts.supervisions.orderSeqNointeger
historicalCharges / jdgmts / supervisions / len1
Field nameFull field nameType
len1historicalCharges.jdgmts.supervisions.len1integer
historicalCharges / jdgmts / supervisions / len2
Field nameFull field nameType
len2historicalCharges.jdgmts.supervisions.len2integer
historicalCharges / jdgmts / supervisions / sentenceCode
Field nameFull field nameType
sentenceCodehistoricalCharges.jdgmts.supervisions.sentenceCoderecord
historicalCharges / jdgmts / supervisions / sentenceCode / sentCode
Field nameFull field nameType
sentCodehistoricalCharges.jdgmts.supervisions.sentenceCode.sentCodestring
historicalCharges / jdgmts / supervisions / sentenceCode / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.supervisions.sentenceCode.descrstring
historicalCharges / jdgmts / supervisions / sentenceCode / isActive
Field nameFull field nameType
isActivehistoricalCharges.jdgmts.supervisions.sentenceCode.isActiveboolean
historicalCharges / jdgmts / supervisions / sentenceCode / wcisSentCode
Field nameFull field nameType
wcisSentCodehistoricalCharges.jdgmts.supervisions.sentenceCode.wcisSentCodestring
historicalCharges / jdgmts / supervisions / pd1
Field nameFull field nameType
pd1historicalCharges.jdgmts.supervisions.pd1record
historicalCharges / jdgmts / supervisions / pd1 / isActive
Field nameFull field nameType
isActivehistoricalCharges.jdgmts.supervisions.pd1.isActiveboolean
historicalCharges / jdgmts / supervisions / pd1 / pdCode
Field nameFull field nameType
pdCodehistoricalCharges.jdgmts.supervisions.pd1.pdCodestring
historicalCharges / jdgmts / supervisions / pd1 / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.supervisions.pd1.descrstring
historicalCharges / jdgmts / supervisions / pd2
Field nameFull field nameType
pd2historicalCharges.jdgmts.supervisions.pd2record
historicalCharges / jdgmts / supervisions / pd2 / isActive
Field nameFull field nameType
isActivehistoricalCharges.jdgmts.supervisions.pd2.isActiveboolean
historicalCharges / jdgmts / supervisions / pd2 / pdCode
Field nameFull field nameType
pdCodehistoricalCharges.jdgmts.supervisions.pd2.pdCodestring
historicalCharges / jdgmts / supervisions / pd2 / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.supervisions.pd2.descrstring
historicalCharges / jdgmts / supervisions / sentDate
Field nameFull field nameType
sentDatehistoricalCharges.jdgmts.supervisions.sentDatetimestamp
historicalCharges / jdgmts / supervisions / beginDate
Field nameFull field nameType
beginDatehistoricalCharges.jdgmts.supervisions.beginDatetimestamp
historicalCharges / jdgmts / supervisions / wWhat
Field nameFull field nameType
wWhathistoricalCharges.jdgmts.supervisions.wWhatstring
historicalCharges / jdgmts / supervisions / concurConsec
Field nameFull field nameType
concurConsechistoricalCharges.jdgmts.supervisions.concurConsecrecord
historicalCharges / jdgmts / supervisions / concurConsec / comments
Field nameFull field nameType
commentshistoricalCharges.jdgmts.supervisions.concurConsec.commentsstring
historicalCharges / jdgmts / supervisions / concurConsec / concurConsecCode
Field nameFull field nameType
concurConsecCodehistoricalCharges.jdgmts.supervisions.concurConsec.concurConsecCodestring
historicalCharges / jdgmts / supervisions / superTimeConds
Field nameFull field nameType
superTimeCondshistoricalCharges.jdgmts.supervisions.superTimeCondsrecord
historicalCharges / jdgmts / supervisions / superTimeConds / wWhat
Field nameFull field nameType
wWhathistoricalCharges.jdgmts.supervisions.superTimeConds.wWhatstring
historicalCharges / jdgmts / supervisions / superTimeConds / condPd1
Field nameFull field nameType
condPd1historicalCharges.jdgmts.supervisions.superTimeConds.condPd1record
historicalCharges / jdgmts / supervisions / superTimeConds / condPd1 / isActive
Field nameFull field nameType
isActivehistoricalCharges.jdgmts.supervisions.superTimeConds.condPd1.isActiveboolean
historicalCharges / jdgmts / supervisions / superTimeConds / condPd1 / pdCode
Field nameFull field nameType
pdCodehistoricalCharges.jdgmts.supervisions.superTimeConds.condPd1.pdCodestring
historicalCharges / jdgmts / supervisions / superTimeConds / condPd1 / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.supervisions.superTimeConds.condPd1.descrstring
historicalCharges / jdgmts / supervisions / superTimeConds / condPd2
Field nameFull field nameType
condPd2historicalCharges.jdgmts.supervisions.superTimeConds.condPd2record
historicalCharges / jdgmts / supervisions / superTimeConds / condPd2 / isActive
Field nameFull field nameType
isActivehistoricalCharges.jdgmts.supervisions.superTimeConds.condPd2.isActiveboolean
historicalCharges / jdgmts / supervisions / superTimeConds / condPd2 / pdCode
Field nameFull field nameType
pdCodehistoricalCharges.jdgmts.supervisions.superTimeConds.condPd2.pdCodestring
historicalCharges / jdgmts / supervisions / superTimeConds / condPd2 / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.supervisions.superTimeConds.condPd2.descrstring
historicalCharges / jdgmts / supervisions / superTimeConds / condLen1
Field nameFull field nameType
condLen1historicalCharges.jdgmts.supervisions.superTimeConds.condLen1integer
historicalCharges / jdgmts / supervisions / superTimeConds / condLen2
Field nameFull field nameType
condLen2historicalCharges.jdgmts.supervisions.superTimeConds.condLen2integer
historicalCharges / jdgmts / supervisions / superTimeConds / condSeqNo
Field nameFull field nameType
condSeqNohistoricalCharges.jdgmts.supervisions.superTimeConds.condSeqNointeger
historicalCharges / jdgmts / supervisions / superTimeConds / condition
Field nameFull field nameType
conditionhistoricalCharges.jdgmts.supervisions.superTimeConds.conditionrecord
historicalCharges / jdgmts / supervisions / superTimeConds / condition / wcisCondType
Field nameFull field nameType
wcisCondTypehistoricalCharges.jdgmts.supervisions.superTimeConds.condition.wcisCondTypestring
historicalCharges / jdgmts / supervisions / superTimeConds / condition / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.supervisions.superTimeConds.condition.descrstring
historicalCharges / jdgmts / supervisions / superTimeConds / condition / groupedType
Field nameFull field nameType
groupedTypehistoricalCharges.jdgmts.supervisions.superTimeConds.condition.groupedTypestring
historicalCharges / jdgmts / supervisions / superTimeConds / condition / isMoreThanOne
Field nameFull field nameType
isMoreThanOnehistoricalCharges.jdgmts.supervisions.superTimeConds.condition.isMoreThanOneboolean
historicalCharges / jdgmts / supervisions / superTimeConds / condition / isJuvCrim
Field nameFull field nameType
isJuvCrimhistoricalCharges.jdgmts.supervisions.superTimeConds.condition.isJuvCrimboolean
historicalCharges / jdgmts / supervisions / superTimeConds / condition / condCode
Field nameFull field nameType
condCodehistoricalCharges.jdgmts.supervisions.superTimeConds.condition.condCodestring
historicalCharges / jdgmts / supervisions / superTimeConds / concurConsec
Field nameFull field nameType
concurConsechistoricalCharges.jdgmts.supervisions.superTimeConds.concurConsecrecord
historicalCharges / jdgmts / supervisions / superTimeConds / concurConsec / comments
Field nameFull field nameType
commentshistoricalCharges.jdgmts.supervisions.superTimeConds.concurConsec.commentsstring
historicalCharges / jdgmts / supervisions / superTimeConds / concurConsec / concurConsecCode
Field nameFull field nameType
concurConsecCodehistoricalCharges.jdgmts.supervisions.superTimeConds.concurConsec.concurConsecCodestring
historicalCharges / jdgmts / supervisions / superMiscConds
Field nameFull field nameType
superMiscCondshistoricalCharges.jdgmts.supervisions.superMiscCondsrecord
historicalCharges / jdgmts / supervisions / superMiscConds / condSeqNo
Field nameFull field nameType
condSeqNohistoricalCharges.jdgmts.supervisions.superMiscConds.condSeqNointeger
historicalCharges / jdgmts / supervisions / superMiscConds / condition
Field nameFull field nameType
conditionhistoricalCharges.jdgmts.supervisions.superMiscConds.conditionrecord
historicalCharges / jdgmts / supervisions / superMiscConds / condition / wcisCondType
Field nameFull field nameType
wcisCondTypehistoricalCharges.jdgmts.supervisions.superMiscConds.condition.wcisCondTypestring
historicalCharges / jdgmts / supervisions / superMiscConds / condition / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.supervisions.superMiscConds.condition.descrstring
historicalCharges / jdgmts / supervisions / superMiscConds / condition / groupedType
Field nameFull field nameType
groupedTypehistoricalCharges.jdgmts.supervisions.superMiscConds.condition.groupedTypestring
historicalCharges / jdgmts / supervisions / superMiscConds / condition / isMoreThanOne
Field nameFull field nameType
isMoreThanOnehistoricalCharges.jdgmts.supervisions.superMiscConds.condition.isMoreThanOneboolean
historicalCharges / jdgmts / supervisions / superMiscConds / condition / isJuvCrim
Field nameFull field nameType
isJuvCrimhistoricalCharges.jdgmts.supervisions.superMiscConds.condition.isJuvCrimboolean
historicalCharges / jdgmts / supervisions / superMiscConds / condition / condCode
Field nameFull field nameType
condCodehistoricalCharges.jdgmts.supervisions.superMiscConds.condition.condCodestring
historicalCharges / jdgmts / supervisions / superMiscConds / condTxt
Field nameFull field nameType
condTxthistoricalCharges.jdgmts.supervisions.superMiscConds.condTxtstring
historicalCharges / jdgmts / timeConds
Field nameFull field nameType
timeCondshistoricalCharges.jdgmts.timeCondsrecord
historicalCharges / jdgmts / timeConds / wWhat
Field nameFull field nameType
wWhathistoricalCharges.jdgmts.timeConds.wWhatstring
historicalCharges / jdgmts / timeConds / concurConsec
Field nameFull field nameType
concurConsechistoricalCharges.jdgmts.timeConds.concurConsecrecord
historicalCharges / jdgmts / timeConds / concurConsec / comments
Field nameFull field nameType
commentshistoricalCharges.jdgmts.timeConds.concurConsec.commentsstring
historicalCharges / jdgmts / timeConds / concurConsec / concurConsecCode
Field nameFull field nameType
concurConsecCodehistoricalCharges.jdgmts.timeConds.concurConsec.concurConsecCodestring
historicalCharges / jdgmts / timeConds / condLen1
Field nameFull field nameType
condLen1historicalCharges.jdgmts.timeConds.condLen1integer
historicalCharges / jdgmts / timeConds / condLen2
Field nameFull field nameType
condLen2historicalCharges.jdgmts.timeConds.condLen2integer
historicalCharges / jdgmts / timeConds / condSeqNo
Field nameFull field nameType
condSeqNohistoricalCharges.jdgmts.timeConds.condSeqNointeger
historicalCharges / jdgmts / timeConds / condPd1
Field nameFull field nameType
condPd1historicalCharges.jdgmts.timeConds.condPd1record
historicalCharges / jdgmts / timeConds / condPd1 / isActive
Field nameFull field nameType
isActivehistoricalCharges.jdgmts.timeConds.condPd1.isActiveboolean
historicalCharges / jdgmts / timeConds / condPd1 / pdCode
Field nameFull field nameType
pdCodehistoricalCharges.jdgmts.timeConds.condPd1.pdCodestring
historicalCharges / jdgmts / timeConds / condPd1 / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.timeConds.condPd1.descrstring
historicalCharges / jdgmts / timeConds / condPd2
Field nameFull field nameType
condPd2historicalCharges.jdgmts.timeConds.condPd2record
historicalCharges / jdgmts / timeConds / condPd2 / isActive
Field nameFull field nameType
isActivehistoricalCharges.jdgmts.timeConds.condPd2.isActiveboolean
historicalCharges / jdgmts / timeConds / condPd2 / pdCode
Field nameFull field nameType
pdCodehistoricalCharges.jdgmts.timeConds.condPd2.pdCodestring
historicalCharges / jdgmts / timeConds / condPd2 / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.timeConds.condPd2.descrstring
historicalCharges / jdgmts / timeConds / condition
Field nameFull field nameType
conditionhistoricalCharges.jdgmts.timeConds.conditionrecord
historicalCharges / jdgmts / timeConds / condition / wcisCondType
Field nameFull field nameType
wcisCondTypehistoricalCharges.jdgmts.timeConds.condition.wcisCondTypestring
historicalCharges / jdgmts / timeConds / condition / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.timeConds.condition.descrstring
historicalCharges / jdgmts / timeConds / condition / groupedType
Field nameFull field nameType
groupedTypehistoricalCharges.jdgmts.timeConds.condition.groupedTypestring
historicalCharges / jdgmts / timeConds / condition / isMoreThanOne
Field nameFull field nameType
isMoreThanOnehistoricalCharges.jdgmts.timeConds.condition.isMoreThanOneboolean
historicalCharges / jdgmts / timeConds / condition / isJuvCrim
Field nameFull field nameType
isJuvCrimhistoricalCharges.jdgmts.timeConds.condition.isJuvCrimboolean
historicalCharges / jdgmts / timeConds / condition / condCode
Field nameFull field nameType
condCodehistoricalCharges.jdgmts.timeConds.condition.condCodestring
historicalCharges / jdgmts / miscConds
Field nameFull field nameType
miscCondshistoricalCharges.jdgmts.miscCondsrecord
historicalCharges / jdgmts / miscConds / condSeqNo
Field nameFull field nameType
condSeqNohistoricalCharges.jdgmts.miscConds.condSeqNointeger
historicalCharges / jdgmts / miscConds / condition
Field nameFull field nameType
conditionhistoricalCharges.jdgmts.miscConds.conditionrecord
historicalCharges / jdgmts / miscConds / condition / wcisCondType
Field nameFull field nameType
wcisCondTypehistoricalCharges.jdgmts.miscConds.condition.wcisCondTypestring
historicalCharges / jdgmts / miscConds / condition / descr
Field nameFull field nameType
descrhistoricalCharges.jdgmts.miscConds.condition.descrstring
historicalCharges / jdgmts / miscConds / condition / groupedType
Field nameFull field nameType
groupedTypehistoricalCharges.jdgmts.miscConds.condition.groupedTypestring
historicalCharges / jdgmts / miscConds / condition / isMoreThanOne
Field nameFull field nameType
isMoreThanOnehistoricalCharges.jdgmts.miscConds.condition.isMoreThanOneboolean
historicalCharges / jdgmts / miscConds / condition / isJuvCrim
Field nameFull field nameType
isJuvCrimhistoricalCharges.jdgmts.miscConds.condition.isJuvCrimboolean
historicalCharges / jdgmts / miscConds / condition / condCode
Field nameFull field nameType
condCodehistoricalCharges.jdgmts.miscConds.condition.condCodestring
historicalCharges / jdgmts / miscConds / condTxt
Field nameFull field nameType
condTxthistoricalCharges.jdgmts.miscConds.condTxtstring
parties
Field nameFull field nameType
partiespartiesrecord
parties / partyNo
Field nameFull field nameType
partyNoparties.partyNointeger
parties / dob
Field nameFull field nameType
dobparties.dobstring
parties / justisNo
Field nameFull field nameType
justisNoparties.justisNostring
parties / dod
Field nameFull field nameType
dodparties.dodtimestamp
parties / fingerPrintId
Field nameFull field nameType
fingerPrintIdparties.fingerPrintIdstring
parties / sex
Field nameFull field nameType
sexparties.sexstring
parties / race
Field nameFull field nameType
raceparties.racerecord
parties / race / raceCode
Field nameFull field nameType
raceCodeparties.race.raceCodestring
parties / race / descr
Field nameFull field nameType
descrparties.race.descrstring
parties / race / isActive
Field nameFull field nameType
isActiveparties.race.isActiveboolean
parties / type
Field nameFull field nameType
typeparties.typerecord
parties / type / partyType
Field nameFull field nameType
partyTypeparties.type.partyTypestring
parties / type / descr
Field nameFull field nameType
descrparties.type.descrstring
parties / type / isActive
Field nameFull field nameType
isActiveparties.type.isActiveboolean
parties / name
Field nameFull field nameType
nameparties.namerecord
parties / name / first
Field nameFull field nameType
firstparties.name.firststring
parties / name / middle
Field nameFull field nameType
middleparties.name.middlestring
parties / name / last
Field nameFull field nameType
lastparties.name.laststring
parties / name / suffix
Field nameFull field nameType
suffixparties.name.suffixstring
parties / defendantId
Field nameFull field nameType
defendantIdparties.defendantIdstring
parties / address
Field nameFull field nameType
addressparties.addressrecord
parties / address / addr
Field nameFull field nameType
addrparties.address.addrrecord
parties / address / addr / streetLine1
Field nameFull field nameType
streetLine1parties.address.addr.streetLine1string
parties / address / addr / streetLine2
Field nameFull field nameType
streetLine2parties.address.addr.streetLine2string
parties / address / addr / city
Field nameFull field nameType
cityparties.address.addr.citystring
parties / address / addr / state
Field nameFull field nameType
stateparties.address.addr.statestring
parties / address / addr / zip
Field nameFull field nameType
zipparties.address.addr.zipstring
parties / address / addr / country
Field nameFull field nameType
countryparties.address.addr.countrystring
parties / address / effDate
Field nameFull field nameType
effDateparties.address.effDatetimestamp
parties / status
Field nameFull field nameType
statusparties.statusrecord
parties / status / statusCode
Field nameFull field nameType
statusCodeparties.status.statusCodestring
parties / status / caseOrParty
Field nameFull field nameType
caseOrPartyparties.status.caseOrPartystring
parties / status / descr
Field nameFull field nameType
descrparties.status.descrstring
parties / status / isActive
Field nameFull field nameType
isActiveparties.status.isActiveboolean
parties / aliases
Field nameFull field nameType
aliasesparties.aliasesrecord
parties / aliases / aliasNo
Field nameFull field nameType
aliasNoparties.aliases.aliasNointeger
parties / aliases / dob
Field nameFull field nameType
dobparties.aliases.dobstring
parties / aliases / name
Field nameFull field nameType
nameparties.aliases.namerecord
parties / aliases / name / first
Field nameFull field nameType
firstparties.aliases.name.firststring
parties / aliases / name / middle
Field nameFull field nameType
middleparties.aliases.name.middlestring
parties / aliases / name / last
Field nameFull field nameType
lastparties.aliases.name.laststring
parties / aliases / name / suffix
Field nameFull field nameType
suffixparties.aliases.name.suffixstring
parties / aliases / code
Field nameFull field nameType
codeparties.aliases.coderecord
parties / aliases / code / aliasCode
Field nameFull field nameType
aliasCodeparties.aliases.code.aliasCodestring
parties / aliases / code / descr
Field nameFull field nameType
descrparties.aliases.code.descrstring
parties / aliases / code / isActive
Field nameFull field nameType
isActiveparties.aliases.code.isActiveboolean
parties / attorneys
Field nameFull field nameType
attorneysparties.attorneysrecord
parties / attorneys / attyNo
Field nameFull field nameType
attyNoparties.attorneys.attyNointeger
parties / attorneys / name
Field nameFull field nameType
nameparties.attorneys.namerecord
parties / attorneys / name / first
Field nameFull field nameType
firstparties.attorneys.name.firststring
parties / attorneys / name / middle
Field nameFull field nameType
middleparties.attorneys.name.middlestring
parties / attorneys / name / last
Field nameFull field nameType
lastparties.attorneys.name.laststring
parties / attorneys / name / suffix
Field nameFull field nameType
suffixparties.attorneys.name.suffixstring
parties / attorneys / enteredDate
Field nameFull field nameType
enteredDateparties.attorneys.enteredDatetimestamp
parties / attorneys / withdrewDate
Field nameFull field nameType
withdrewDateparties.attorneys.withdrewDatetimestamp
parties / attorneys / isGal
Field nameFull field nameType
isGalparties.attorneys.isGalboolean
parties / isAddrSealed
Field nameFull field nameType
isAddrSealedparties.isAddrSealedboolean
parties / isSeal
Field nameFull field nameType
isSealparties.isSealboolean
filingDate
Field nameFull field nameType
filingDatefilingDatetimestamp
daCaseNo
Field nameFull field nameType
daCaseNodaCaseNostring
branchId
Field nameFull field nameType
branchIdbranchIdstring
crossReferencedCases
Field nameFull field nameType
crossReferencedCasescrossReferencedCasesstring
maintenance
Field nameFull field nameType
maintenancemaintenancerecord
maintenance / isActive
Field nameFull field nameType
isActivemaintenance.isActiveboolean
maintenance / descr
Field nameFull field nameType
descrmaintenance.descrstring
maintenance / maintCode
Field nameFull field nameType
maintCodemaintenance.maintCodestring
caseMaints
Field nameFull field nameType
caseMaintscaseMaintsrecord
caseMaints / partyName
Field nameFull field nameType
partyNamecaseMaints.partyNamerecord
caseMaints / partyName / first
Field nameFull field nameType
firstcaseMaints.partyName.firststring
caseMaints / partyName / middle
Field nameFull field nameType
middlecaseMaints.partyName.middlestring
caseMaints / partyName / last
Field nameFull field nameType
lastcaseMaints.partyName.laststring
caseMaints / partyName / suffix
Field nameFull field nameType
suffixcaseMaints.partyName.suffixstring
caseMaints / eventDate
Field nameFull field nameType
eventDatecaseMaints.eventDatetimestamp
caseMaints / maintenance
Field nameFull field nameType
maintenancecaseMaints.maintenancerecord
caseMaints / maintenance / isActive
Field nameFull field nameType
isActivecaseMaints.maintenance.isActiveboolean
caseMaints / maintenance / descr
Field nameFull field nameType
descrcaseMaints.maintenance.descrstring
caseMaints / maintenance / maintCode
Field nameFull field nameType
maintCodecaseMaints.maintenance.maintCodestring
caseMaints / event
Field nameFull field nameType
eventcaseMaints.eventrecord
caseMaints / event / isActive
Field nameFull field nameType
isActivecaseMaints.event.isActiveboolean
caseMaints / event / descr
Field nameFull field nameType
descrcaseMaints.event.descrstring
caseMaints / event / eventType
Field nameFull field nameType
eventTypecaseMaints.event.eventTypestring
activities
Field nameFull field nameType
activitiesactivitiesrecord
activities / start
Field nameFull field nameType
startactivities.startstring
activities / ctofcName
Field nameFull field nameType
ctofcNameactivities.ctofcNamerecord
activities / ctofcName / first
Field nameFull field nameType
firstactivities.ctofcName.firststring
activities / ctofcName / middle
Field nameFull field nameType
middleactivities.ctofcName.middlestring
activities / ctofcName / last
Field nameFull field nameType
lastactivities.ctofcName.laststring
activities / ctofcName / suffix
Field nameFull field nameType
suffixactivities.ctofcName.suffixstring
activities / isCourtType
Field nameFull field nameType
isCourtTypeactivities.isCourtTypeboolean
activities / descr
Field nameFull field nameType
descractivities.descrstring
activities / loc
Field nameFull field nameType
locactivities.locstring
rcvbls
Field nameFull field nameType
rcvblsrcvblsrecord
rcvbls / totAmtDue
Field nameFull field nameType
totAmtDuercvbls.totAmtDuestring
rcvbls / totAdjustments
Field nameFull field nameType
totAdjustmentsrcvbls.totAdjustmentsstring
rcvbls / paidToDate
Field nameFull field nameType
paidToDatercvbls.paidToDatestring
rcvbls / balDue
Field nameFull field nameType
balDuercvbls.balDuestring
rcvbls / probAmt
Field nameFull field nameType
probAmtrcvbls.probAmtstring
rcvbls / rcvblNo
Field nameFull field nameType
rcvblNorcvbls.rcvblNointeger
rcvbls / rcvblType
Field nameFull field nameType
rcvblTypercvbls.rcvblTypestring
rcvbls / dueDate
Field nameFull field nameType
dueDatercvbls.dueDatestring
citns
Field nameFull field nameType
citnscitnsrecord
citns / statuteCite
Field nameFull field nameType
statuteCitecitns.statuteCitestring
citns / citnNo
Field nameFull field nameType
citnNocitns.citnNostring
citns / depositAmt
Field nameFull field nameType
depositAmtcitns.depositAmtstring
citns / depositType
Field nameFull field nameType
depositTypecitns.depositTypestring
citns / descr
Field nameFull field nameType
descrcitns.descrstring
citns / appearTime
Field nameFull field nameType
appearTimecitns.appearTimestring
citns / appearDate
Field nameFull field nameType
appearDatecitns.appearDatetimestamp
citns / balDue
Field nameFull field nameType
balDuecitns.balDuestring
citns / vehicleIdNo
Field nameFull field nameType
vehicleIdNocitns.vehicleIdNostring
citns / fineForfAmt
Field nameFull field nameType
fineForfAmtcitns.fineForfAmtstring
citns / ordStatuteFlag
Field nameFull field nameType
ordStatuteFlagcitns.ordStatuteFlagstring
citns / isMandatoryAppear
Field nameFull field nameType
isMandatoryAppearcitns.isMandatoryAppearboolean
citns / offenseDate
Field nameFull field nameType
offenseDatecitns.offenseDatetimestamp
citns / vehLicState
Field nameFull field nameType
vehLicStatecitns.vehLicStatestring
citns / citnVin
Field nameFull field nameType
citnVincitns.citnVinstring
citns / vehLicYear
Field nameFull field nameType
vehLicYearcitns.vehLicYearinteger
citns / mphOver
Field nameFull field nameType
mphOvercitns.mphOverinteger
citns / severity
Field nameFull field nameType
severitycitns.severityrecord
citns / severity / sevClsCode
Field nameFull field nameType
sevClsCodecitns.severity.sevClsCodestring
citns / severity / isActive
Field nameFull field nameType
isActivecitns.severity.isActiveboolean
citns / severity / descr
Field nameFull field nameType
descrcitns.severity.descrstring
citns / officer
Field nameFull field nameType
officercitns.officerrecord
citns / officer / officerId
Field nameFull field nameType
officerIdcitns.officer.officerIdstring
citns / officer / countyNo
Field nameFull field nameType
countyNocitns.officer.countyNointeger
citns / officer / issAgencyNo
Field nameFull field nameType
issAgencyNocitns.officer.issAgencyNointeger
citns / officer / name
Field nameFull field nameType
namecitns.officer.namerecord
citns / officer / name / first
Field nameFull field nameType
firstcitns.officer.name.firststring
citns / officer / name / middle
Field nameFull field nameType
middlecitns.officer.name.middlestring
citns / officer / name / last
Field nameFull field nameType
lastcitns.officer.name.laststring
citns / officer / name / suffix
Field nameFull field nameType
suffixcitns.officer.name.suffixstring
citns / officer / expDate
Field nameFull field nameType
expDatecitns.officer.expDatetimestamp
citns / officer / effDate
Field nameFull field nameType
effDatecitns.officer.effDatetimestamp
citns / issAgency
Field nameFull field nameType
issAgencycitns.issAgencyrecord
citns / issAgency / countyNo
Field nameFull field nameType
countyNocitns.issAgency.countyNointeger
citns / issAgency / name
Field nameFull field nameType
namecitns.issAgency.namestring
citns / issAgency / ncicAgencyId
Field nameFull field nameType
ncicAgencyIdcitns.issAgency.ncicAgencyIdstring
citns / issAgency / issAgencyNo
Field nameFull field nameType
issAgencyNocitns.issAgency.issAgencyNointeger
citns / issAgency / isUWSystem
Field nameFull field nameType
isUWSystemcitns.issAgency.isUWSystemboolean
citns / issAgency / isBookingAgency
Field nameFull field nameType
isBookingAgencycitns.issAgency.isBookingAgencyboolean
citns / plntfAgency
Field nameFull field nameType
plntfAgencycitns.plntfAgencyrecord
citns / plntfAgency / plntfAgencyNo
Field nameFull field nameType
plntfAgencyNocitns.plntfAgency.plntfAgencyNointeger
citns / plntfAgency / plntfAgencyType
Field nameFull field nameType
plntfAgencyTypecitns.plntfAgency.plntfAgencyTypestring
citns / plntfAgency / countyNo
Field nameFull field nameType
countyNocitns.plntfAgency.countyNointeger
citns / plntfAgency / name
Field nameFull field nameType
namecitns.plntfAgency.namestring
citns / plntfAgency / addr
Field nameFull field nameType
addrcitns.plntfAgency.addrrecord
citns / plntfAgency / addr / streetLine1
Field nameFull field nameType
streetLine1citns.plntfAgency.addr.streetLine1string
citns / plntfAgency / addr / streetLine2
Field nameFull field nameType
streetLine2citns.plntfAgency.addr.streetLine2string
citns / plntfAgency / addr / city
Field nameFull field nameType
citycitns.plntfAgency.addr.citystring
citns / plntfAgency / addr / state
Field nameFull field nameType
statecitns.plntfAgency.addr.statestring
citns / plntfAgency / addr / zip
Field nameFull field nameType
zipcitns.plntfAgency.addr.zipstring
citns / plntfAgency / addr / country
Field nameFull field nameType
countrycitns.plntfAgency.addr.countrystring
citns / plntfAgency / isMandatoryAppear
Field nameFull field nameType
isMandatoryAppearcitns.plntfAgency.isMandatoryAppearboolean
citns / plntfAgency / severity
Field nameFull field nameType
severitycitns.plntfAgency.severityrecord
citns / plntfAgency / severity / sevClsCode
Field nameFull field nameType
sevClsCodecitns.plntfAgency.severity.sevClsCodestring
citns / plntfAgency / severity / isActive
Field nameFull field nameType
isActivecitns.plntfAgency.severity.isActiveboolean
citns / plntfAgency / severity / descr
Field nameFull field nameType
descrcitns.plntfAgency.severity.descrstring
citns / plntfAgency / appearDate
Field nameFull field nameType
appearDatecitns.plntfAgency.appearDatetimestamp
citns / plntfAgency / vehLicYear
Field nameFull field nameType
vehLicYearcitns.plntfAgency.vehLicYearinteger
citns / plntfAgency / ordStatuteFlag
Field nameFull field nameType
ordStatuteFlagcitns.plntfAgency.ordStatuteFlagstring
civilJdgmts
Field nameFull field nameType
civilJdgmtscivilJdgmtsrecord
civilJdgmts / timeDkted
Field nameFull field nameType
timeDktedcivilJdgmts.timeDktedstring
civilJdgmts / svcDateTo
Field nameFull field nameType
svcDateTocivilJdgmts.svcDateTotimestamp
civilJdgmts / typeOfTax
Field nameFull field nameType
typeOfTaxcivilJdgmts.typeOfTaxstring
civilJdgmts / satisEventType
Field nameFull field nameType
satisEventTypecivilJdgmts.satisEventTyperecord
civilJdgmts / satisEventType / civilEventType
Field nameFull field nameType
civilEventTypecivilJdgmts.satisEventType.civilEventTypestring
civilJdgmts / satisEventType / isActive
Field nameFull field nameType
isActivecivilJdgmts.satisEventType.isActiveboolean
civilJdgmts / satisEventType / descr
Field nameFull field nameType
descrcivilJdgmts.satisEventType.descrstring
civilJdgmts / dbtr
Field nameFull field nameType
dbtrcivilJdgmts.dbtrrecord
civilJdgmts / dbtr / first
Field nameFull field nameType
firstcivilJdgmts.dbtr.firststring
civilJdgmts / dbtr / middle
Field nameFull field nameType
middlecivilJdgmts.dbtr.middlestring
civilJdgmts / dbtr / last
Field nameFull field nameType
lastcivilJdgmts.dbtr.laststring
civilJdgmts / dbtr / suffix
Field nameFull field nameType
suffixcivilJdgmts.dbtr.suffixstring
civilJdgmts / jdgmtDate
Field nameFull field nameType
jdgmtDatecivilJdgmts.jdgmtDatetimestamp
civilJdgmts / fullSatisDate
Field nameFull field nameType
fullSatisDatecivilJdgmts.fullSatisDatetimestamp
civilJdgmts / civilJdgmtSeqNo
Field nameFull field nameType
civilJdgmtSeqNocivilJdgmts.civilJdgmtSeqNointeger
civilJdgmts / totAmt
Field nameFull field nameType
totAmtcivilJdgmts.totAmtstring
civilJdgmts / satisfaction
Field nameFull field nameType
satisfactioncivilJdgmts.satisfactionstring
civilJdgmts / dateDkted
Field nameFull field nameType
dateDktedcivilJdgmts.dateDktedtimestamp
civilJdgmts / parties
Field nameFull field nameType
partiescivilJdgmts.partiesrecord
civilJdgmts / parties / jdgmtPartyStatus
Field nameFull field nameType
jdgmtPartyStatuscivilJdgmts.parties.jdgmtPartyStatusstring
civilJdgmts / parties / fingerPrintId
Field nameFull field nameType
fingerPrintIdcivilJdgmts.parties.fingerPrintIdstring
civilJdgmts / parties / addr
Field nameFull field nameType
addrcivilJdgmts.parties.addrrecord
civilJdgmts / parties / addr / streetLine1
Field nameFull field nameType
streetLine1civilJdgmts.parties.addr.streetLine1string
civilJdgmts / parties / addr / streetLine2
Field nameFull field nameType
streetLine2civilJdgmts.parties.addr.streetLine2string
civilJdgmts / parties / addr / city
Field nameFull field nameType
citycivilJdgmts.parties.addr.citystring
civilJdgmts / parties / addr / state
Field nameFull field nameType
statecivilJdgmts.parties.addr.statestring
civilJdgmts / parties / addr / zip
Field nameFull field nameType
zipcivilJdgmts.parties.addr.zipstring
civilJdgmts / parties / addr / country
Field nameFull field nameType
countrycivilJdgmts.parties.addr.countrystring
civilJdgmts / parties / isReleased
Field nameFull field nameType
isReleasedcivilJdgmts.parties.isReleasedboolean
civilJdgmts / parties / partyType
Field nameFull field nameType
partyTypecivilJdgmts.parties.partyTyperecord
civilJdgmts / parties / partyType / dbtrCrdtr
Field nameFull field nameType
dbtrCrdtrcivilJdgmts.parties.partyType.dbtrCrdtrstring
civilJdgmts / parties / partyType / jdgmtPartyType
Field nameFull field nameType
jdgmtPartyTypecivilJdgmts.parties.partyType.jdgmtPartyTypestring
civilJdgmts / parties / partyType / isActive
Field nameFull field nameType
isActivecivilJdgmts.parties.partyType.isActiveboolean
civilJdgmts / parties / partyType / descr
Field nameFull field nameType
descrcivilJdgmts.parties.partyType.descrstring
civilJdgmts / parties / name
Field nameFull field nameType
namecivilJdgmts.parties.namerecord
civilJdgmts / parties / name / first
Field nameFull field nameType
firstcivilJdgmts.parties.name.firststring
civilJdgmts / parties / name / middle
Field nameFull field nameType
middlecivilJdgmts.parties.name.middlestring
civilJdgmts / parties / name / last
Field nameFull field nameType
lastcivilJdgmts.parties.name.laststring
civilJdgmts / parties / name / suffix
Field nameFull field nameType
suffixcivilJdgmts.parties.name.suffixstring
civilJdgmts / parties / attyName
Field nameFull field nameType
attyNamecivilJdgmts.parties.attyNamerecord
civilJdgmts / parties / attyName / first
Field nameFull field nameType
firstcivilJdgmts.parties.attyName.firststring
civilJdgmts / parties / attyName / middle
Field nameFull field nameType
middlecivilJdgmts.parties.attyName.middlestring
civilJdgmts / parties / attyName / last
Field nameFull field nameType
lastcivilJdgmts.parties.attyName.laststring
civilJdgmts / parties / attyName / suffix
Field nameFull field nameType
suffixcivilJdgmts.parties.attyName.suffixstring
civilJdgmts / hasMultipleDbtrs
Field nameFull field nameType
hasMultipleDbtrscivilJdgmts.hasMultipleDbtrsboolean
civilJdgmts / svcDateFrom
Field nameFull field nameType
svcDateFromcivilJdgmts.svcDateFromtimestamp
civilJdgmts / dorWarrantNo
Field nameFull field nameType
dorWarrantNocivilJdgmts.dorWarrantNostring
civilJdgmts / lienType
Field nameFull field nameType
lienTypecivilJdgmts.lienTyperecord
civilJdgmts / lienType / isActive
Field nameFull field nameType
isActivecivilJdgmts.lienType.isActiveboolean
civilJdgmts / lienType / descr
Field nameFull field nameType
descrcivilJdgmts.lienType.descrstring
civilJdgmts / lienType / jdgmtLienType
Field nameFull field nameType
jdgmtLienTypecivilJdgmts.lienType.jdgmtLienTypestring
civilJdgmts / monies
Field nameFull field nameType
moniescivilJdgmts.moniesrecord
civilJdgmts / monies / moneyCode
Field nameFull field nameType
moneyCodecivilJdgmts.monies.moneyCoderecord
civilJdgmts / monies / moneyCode / civilMoneyCode
Field nameFull field nameType
civilMoneyCodecivilJdgmts.monies.moneyCode.civilMoneyCodestring
civilJdgmts / monies / moneyCode / isActive
Field nameFull field nameType
isActivecivilJdgmts.monies.moneyCode.isActiveboolean
civilJdgmts / monies / moneyCode / descr
Field nameFull field nameType
descrcivilJdgmts.monies.moneyCode.descrstring
civilJdgmts / monies / amt
Field nameFull field nameType
amtcivilJdgmts.monies.amtstring
civilJdgmts / propertyDescr
Field nameFull field nameType
propertyDescrcivilJdgmts.propertyDescrstring
civilJdgmts / events
Field nameFull field nameType
eventscivilJdgmts.eventsrecord
civilJdgmts / events / date
Field nameFull field nameType
datecivilJdgmts.events.datetimestamp
civilJdgmts / events / eventType
Field nameFull field nameType
eventTypecivilJdgmts.events.eventTyperecord
civilJdgmts / events / eventType / civilEventType
Field nameFull field nameType
civilEventTypecivilJdgmts.events.eventType.civilEventTypestring
civilJdgmts / events / eventType / isActive
Field nameFull field nameType
isActivecivilJdgmts.events.eventType.isActiveboolean
civilJdgmts / events / eventType / descr
Field nameFull field nameType
descrcivilJdgmts.events.eventType.descrstring
civilJdgmts / events / satisfactionAmt
Field nameFull field nameType
satisfactionAmtcivilJdgmts.events.satisfactionAmttimestamp
courtRecord
Field nameFull field nameType
courtRecordcourtRecordrecord
courtRecord / eventDate
Field nameFull field nameType
eventDatecourtRecord.eventDatetimestamp
courtRecord / histSeqNo
Field nameFull field nameType
histSeqNocourtRecord.histSeqNointeger
courtRecord / tag
Field nameFull field nameType
tagcourtRecord.tagstring
courtRecord / countyNo
Field nameFull field nameType
countyNocourtRecord.countyNointeger
courtRecord / caseNo
Field nameFull field nameType
caseNocourtRecord.caseNostring
courtRecord / eventType
Field nameFull field nameType
eventTypecourtRecord.eventTyperecord
courtRecord / eventType / eventType
Field nameFull field nameType
eventTypecourtRecord.eventType.eventTypestring
courtRecord / eventType / descr
Field nameFull field nameType
descrcourtRecord.eventType.descrstring
courtRecord / eventType / isActive
Field nameFull field nameType
isActivecourtRecord.eventType.isActiveboolean
courtRecord / descr
Field nameFull field nameType
descrcourtRecord.descrstring
courtRecord / ctofc
Field nameFull field nameType
ctofccourtRecord.ctofcrecord
courtRecord / ctofc / first
Field nameFull field nameType
firstcourtRecord.ctofc.firststring
courtRecord / ctofc / middle
Field nameFull field nameType
middlecourtRecord.ctofc.middlestring
courtRecord / ctofc / last
Field nameFull field nameType
lastcourtRecord.ctofc.laststring
courtRecord / ctofc / suffix
Field nameFull field nameType
suffixcourtRecord.ctofc.suffixstring
courtRecord / sealCtofc
Field nameFull field nameType
sealCtofccourtRecord.sealCtofcrecord
courtRecord / sealCtofc / first
Field nameFull field nameType
firstcourtRecord.sealCtofc.firststring
courtRecord / sealCtofc / middle
Field nameFull field nameType
middlecourtRecord.sealCtofc.middlestring
courtRecord / sealCtofc / last
Field nameFull field nameType
lastcourtRecord.sealCtofc.laststring
courtRecord / sealCtofc / suffix
Field nameFull field nameType
suffixcourtRecord.sealCtofc.suffixstring
courtRecord / courtRptr
Field nameFull field nameType
courtRptrcourtRecord.courtRptrrecord
courtRecord / courtRptr / first
Field nameFull field nameType
firstcourtRecord.courtRptr.firststring
courtRecord / courtRptr / middle
Field nameFull field nameType
middlecourtRecord.courtRptr.middlestring
courtRecord / courtRptr / last
Field nameFull field nameType
lastcourtRecord.courtRptr.laststring
courtRecord / courtRptr / suffix
Field nameFull field nameType
suffixcourtRecord.courtRptr.suffixstring
courtRecord / sealCtofcTypeCodeDescr
Field nameFull field nameType
sealCtofcTypeCodeDescrcourtRecord.sealCtofcTypeCodeDescrstring
courtRecord / dktTxt
Field nameFull field nameType
dktTxtcourtRecord.dktTxtstring
courtRecord / eventAmt
Field nameFull field nameType
eventAmtcourtRecord.eventAmtstring
courtRecord / isMoneyEnabled
Field nameFull field nameType
isMoneyEnabledcourtRecord.isMoneyEnabledboolean
courtRecord / isPetitionerSeal
Field nameFull field nameType
isPetitionerSealcourtRecord.isPetitionerSealboolean
courtRecord / parties
Field nameFull field nameType
partiescourtRecord.partiesrecord
courtRecord / parties / partyName
Field nameFull field nameType
partyNamecourtRecord.parties.partyNamerecord
courtRecord / parties / partyName / first
Field nameFull field nameType
firstcourtRecord.parties.partyName.firststring
courtRecord / parties / partyName / middle
Field nameFull field nameType
middlecourtRecord.parties.partyName.middlestring
courtRecord / parties / partyName / last
Field nameFull field nameType
lastcourtRecord.parties.partyName.laststring
courtRecord / parties / partyName / suffix
Field nameFull field nameType
suffixcourtRecord.parties.partyName.suffixstring
courtRecord / parties / isAddrSealed
Field nameFull field nameType
isAddrSealedcourtRecord.parties.isAddrSealedboolean
courtRecord / parties / isSeal
Field nameFull field nameType
isSealcourtRecord.parties.isSealboolean
dispoHist
Field nameFull field nameType
dispoHistdispoHistrecord
dispoHist / dispEvent
Field nameFull field nameType
dispEventdispoHist.dispEventrecord
dispoHist / dispEvent / eventType
Field nameFull field nameType
eventTypedispoHist.dispEvent.eventTypestring
dispoHist / dispEvent / isActive
Field nameFull field nameType
isActivedispoHist.dispEvent.isActiveboolean
dispoHist / dispEvent / descr
Field nameFull field nameType
descrdispoHist.dispEvent.descrstring
dispoHist / dispCtofcNo
Field nameFull field nameType
dispCtofcNodispoHist.dispCtofcNostring
dispoHist / dispoCode
Field nameFull field nameType
dispoCodedispoHist.dispoCodestring
dispoHist / wcisClass
Field nameFull field nameType
wcisClassdispoHist.wcisClassrecord
dispoHist / wcisClass / caseType
Field nameFull field nameType
caseTypedispoHist.wcisClass.caseTypestring
dispoHist / wcisClass / wcisClsCode
Field nameFull field nameType
wcisClsCodedispoHist.wcisClass.wcisClsCodestring
dispoHist / wcisClass / descr
Field nameFull field nameType
descrdispoHist.wcisClass.descrstring
dispo
Field nameFull field nameType
dispodisporecord
dispo / dispCtofcNo
Field nameFull field nameType
dispCtofcNodispo.dispCtofcNostring
dispo / dispoCode
Field nameFull field nameType
dispoCodedispo.dispoCodestring
dispo / dispEvent
Field nameFull field nameType
dispEventdispo.dispEventrecord
dispo / dispEvent / eventType
Field nameFull field nameType
eventTypedispo.dispEvent.eventTypestring
dispo / dispEvent / isActive
Field nameFull field nameType
isActivedispo.dispEvent.isActiveboolean
dispo / dispEvent / descr
Field nameFull field nameType
descrdispo.dispEvent.descrstring
dispo / wcisClass
Field nameFull field nameType
wcisClassdispo.wcisClassrecord
dispo / wcisClass / caseType
Field nameFull field nameType
caseTypedispo.wcisClass.caseTypestring
dispo / wcisClass / wcisClsCode
Field nameFull field nameType
wcisClsCodedispo.wcisClass.wcisClsCodestring
dispo / wcisClass / descr
Field nameFull field nameType
descrdispo.wcisClass.descrstring
issuingAgencyNo
Field nameFull field nameType
issuingAgencyNoissuingAgencyNointeger
oldCaseNo
Field nameFull field nameType
oldCaseNooldCaseNostring

Loading the data

This data was generated by querying CCAP's API for each date in the dataset's range as the filing date for each county in Wisconsin.

How this data was loaded into the database:

There are two components: 1) the database structure file and 2) the new-line delimited JSON files.

1. Schema.json: this file tells the database the field names and data types and their heirarchy.

2. ####_allcasedetails.json: these files contain all of the case details for the year (including a few patch files) with each case on a new line.

If something happens to the table it is a fairly quick and easy process to reload the data if needed. Create a new table for the first dataset and append each yearly dataset onto the first year's table. Uploading the same schema.json file for each.

As of the initial load, all datasets can be loaded without any errors. If there is an error, that means there is a field in one of the case details that has not been seen before and is therefore not in the schema.json file. The database will continute loading all of the data in the file except for that one attribute in that one case.

The data folder contains the following case types: CV, CM, CF, CT.

The data2 folder contains the following case types: HL, CI, SC.

Edit this page

Back to top