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 name | Full field name | Type |
---|
county | county | record |
county / countyNo
Field name | Full field name | Type |
---|
countyNo | county.countyNo | integer |
County number
county / countyName
Field name | Full field name | Type |
---|
countyName | county.countyName | string |
County name
county / districtNo
Field name | Full field name | Type |
---|
districtNo | county.districtNo | integer |
caseNo
Field name | Full field name | Type |
---|
caseNo | caseNo | string |
caption
Field name | Full field name | Type |
---|
caption | caption | string |
status
Field name | Full field name | Type |
---|
status | status | record |
status / statusCode
Field name | Full field name | Type |
---|
statusCode | status.statusCode | string |
status / caseOrParty
Field name | Full field name | Type |
---|
caseOrParty | status.caseOrParty | string |
status / descr
Field name | Full field name | Type |
---|
descr | status.descr | string |
status / isActive
Field name | Full field name | Type |
---|
isActive | status.isActive | boolean |
type
Field name | Full field name | Type |
---|
type | type | record |
type / caseType
Field name | Full field name | Type |
---|
caseType | type.caseType | string |
type / descr
Field name | Full field name | Type |
---|
descr | type.descr | string |
type / isActive
Field name | Full field name | Type |
---|
isActive | type.isActive | boolean |
type / isAllowCharges
Field name | Full field name | Type |
---|
isAllowCharges | type.isAllowCharges | boolean |
type / isRestricted
Field name | Full field name | Type |
---|
isRestricted | type.isRestricted | boolean |
isPardoned
Field name | Full field name | Type |
---|
isPardoned | isPardoned | boolean |
isConverted
Field name | Full field name | Type |
---|
isConverted | isConverted | boolean |
isRemandFromAppeal
Field name | Full field name | Type |
---|
isRemandFromAppeal | isRemandFromAppeal | boolean |
isPartySeal
Field name | Full field name | Type |
---|
isPartySeal | isPartySeal | boolean |
isPetitionerSeal
Field name | Full field name | Type |
---|
isPetitionerSeal | isPetitionerSeal | boolean |
isSeal
Field name | Full field name | Type |
---|
isSeal | isSeal | boolean |
prosecutingAgency
Field name | Full field name | Type |
---|
prosecutingAgency | prosecutingAgency | record |
prosecutingAgency / countyNo
Field name | Full field name | Type |
---|
countyNo | prosecutingAgency.countyNo | integer |
prosecutingAgency / prosAgencyNo
Field name | Full field name | Type |
---|
prosAgencyNo | prosecutingAgency.prosAgencyNo | integer |
prosecutingAgency / name
Field name | Full field name | Type |
---|
name | prosecutingAgency.name | string |
prosecutingAttorneyName
Field name | Full field name | Type |
---|
prosecutingAttorneyName | prosecutingAttorneyName | record |
prosecutingAttorneyName / first
Field name | Full field name | Type |
---|
first | prosecutingAttorneyName.first | string |
prosecutingAttorneyName / middle
Field name | Full field name | Type |
---|
middle | prosecutingAttorneyName.middle | string |
prosecutingAttorneyName / last
Field name | Full field name | Type |
---|
last | prosecutingAttorneyName.last | string |
prosecutingAttorneyName / suffix
Field name | Full field name | Type |
---|
suffix | prosecutingAttorneyName.suffix | string |
wcisClass
Field name | Full field name | Type |
---|
wcisClass | wcisClass | record |
wcisClass / caseType
Field name | Full field name | Type |
---|
caseType | wcisClass.caseType | string |
wcisClass / wcisClsCode
Field name | Full field name | Type |
---|
wcisClsCode | wcisClass.wcisClsCode | string |
wcisClass / descr
Field name | Full field name | Type |
---|
descr | wcisClass.descr | string |
responsibleOfficialName
Field name | Full field name | Type |
---|
responsibleOfficialName | responsibleOfficialName | record |
responsibleOfficialName / first
Field name | Full field name | Type |
---|
first | responsibleOfficialName.first | string |
responsibleOfficialName / middle
Field name | Full field name | Type |
---|
middle | responsibleOfficialName.middle | string |
responsibleOfficialName / last
Field name | Full field name | Type |
---|
last | responsibleOfficialName.last | string |
responsibleOfficialName / suffix
Field name | Full field name | Type |
---|
suffix | responsibleOfficialName.suffix | string |
charges
Field name | Full field name | Type |
---|
charges | charges | record |
charges / chargeNo
Field name | Full field name | Type |
---|
chargeNo | charges.chargeNo | integer |
charges / statuteCite
Field name | Full field name | Type |
---|
statuteCite | charges.statuteCite | string |
charges / severity
Field name | Full field name | Type |
---|
severity | charges.severity | record |
charges / severity / sevClsCode
Field name | Full field name | Type |
---|
sevClsCode | charges.severity.sevClsCode | string |
charges / severity / descr
Field name | Full field name | Type |
---|
descr | charges.severity.descr | string |
charges / severity / isActive
Field name | Full field name | Type |
---|
isActive | charges.severity.isActive | boolean |
charges / descr
Field name | Full field name | Type |
---|
descr | charges.descr | string |
charges / offenseDate
Field name | Full field name | Type |
---|
offenseDate | charges.offenseDate | timestamp |
charges / plea
Field name | Full field name | Type |
---|
plea | charges.plea | record |
charges / plea / pleaCode
Field name | Full field name | Type |
---|
pleaCode | charges.plea.pleaCode | string |
charges / plea / descr
Field name | Full field name | Type |
---|
descr | charges.plea.descr | string |
charges / plea / isActive
Field name | Full field name | Type |
---|
isActive | charges.plea.isActive | boolean |
charges / pleaDate
Field name | Full field name | Type |
---|
pleaDate | charges.pleaDate | timestamp |
charges / chargeSeqNo
Field name | Full field name | Type |
---|
chargeSeqNo | charges.chargeSeqNo | integer |
charges / reopEvent
Field name | Full field name | Type |
---|
reopEvent | charges.reopEvent | record |
charges / reopEvent / eventType
Field name | Full field name | Type |
---|
eventType | charges.reopEvent.eventType | string |
charges / reopEvent / eventDate
Field name | Full field name | Type |
---|
eventDate | charges.reopEvent.eventDate | timestamp |
charges / reopEvent / descr
Field name | Full field name | Type |
---|
descr | charges.reopEvent.descr | string |
charges / chargeModifiers
Field name | Full field name | Type |
---|
chargeModifiers | charges.chargeModifiers | record |
charges / chargeModifiers / modSeqNo
Field name | Full field name | Type |
---|
modSeqNo | charges.chargeModifiers.modSeqNo | integer |
charges / chargeModifiers / statuteCite
Field name | Full field name | Type |
---|
statuteCite | charges.chargeModifiers.statuteCite | string |
charges / chargeModifiers / descr
Field name | Full field name | Type |
---|
descr | charges.chargeModifiers.descr | string |
charges / modifiedSeverity
Field name | Full field name | Type |
---|
modifiedSeverity | charges.modifiedSeverity | record |
charges / modifiedSeverity / sevClsCode
Field name | Full field name | Type |
---|
sevClsCode | charges.modifiedSeverity.sevClsCode | string |
charges / modifiedSeverity / isActive
Field name | Full field name | Type |
---|
isActive | charges.modifiedSeverity.isActive | boolean |
charges / modifiedSeverity / descr
Field name | Full field name | Type |
---|
descr | charges.modifiedSeverity.descr | string |
charges / jdgmts
Field name | Full field name | Type |
---|
jdgmts | charges.jdgmts | record |
charges / jdgmts / jdgmtSeqNo
Field name | Full field name | Type |
---|
jdgmtSeqNo | charges.jdgmts.jdgmtSeqNo | integer |
charges / jdgmts / dispoTxt
Field name | Full field name | Type |
---|
dispoTxt | charges.jdgmts.dispoTxt | string |
charges / jdgmts / prob
Field name | Full field name | Type |
---|
prob | charges.jdgmts.prob | record |
charges / jdgmts / prob / len1
Field name | Full field name | Type |
---|
len1 | charges.jdgmts.prob.len1 | integer |
charges / jdgmts / prob / len2
Field name | Full field name | Type |
---|
len2 | charges.jdgmts.prob.len2 | integer |
charges / jdgmts / prob / isForJdgmt
Field name | Full field name | Type |
---|
isForJdgmt | charges.jdgmts.prob.isForJdgmt | boolean |
charges / jdgmts / prob / pd1
Field name | Full field name | Type |
---|
pd1 | charges.jdgmts.prob.pd1 | record |
charges / jdgmts / prob / pd1 / isActive
Field name | Full field name | Type |
---|
isActive | charges.jdgmts.prob.pd1.isActive | boolean |
charges / jdgmts / prob / pd1 / pdCode
Field name | Full field name | Type |
---|
pdCode | charges.jdgmts.prob.pd1.pdCode | string |
charges / jdgmts / prob / pd1 / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.prob.pd1.descr | string |
charges / jdgmts / prob / pd2
Field name | Full field name | Type |
---|
pd2 | charges.jdgmts.prob.pd2 | record |
charges / jdgmts / prob / pd2 / isActive
Field name | Full field name | Type |
---|
isActive | charges.jdgmts.prob.pd2.isActive | boolean |
charges / jdgmts / prob / pd2 / pdCode
Field name | Full field name | Type |
---|
pdCode | charges.jdgmts.prob.pd2.pdCode | string |
charges / jdgmts / prob / pd2 / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.prob.pd2.descr | string |
charges / jdgmts / prob / superAgency
Field name | Full field name | Type |
---|
superAgency | charges.jdgmts.prob.superAgency | record |
charges / jdgmts / prob / superAgency / isActive
Field name | Full field name | Type |
---|
isActive | charges.jdgmts.prob.superAgency.isActive | boolean |
charges / jdgmts / prob / superAgency / countyNo
Field name | Full field name | Type |
---|
countyNo | charges.jdgmts.prob.superAgency.countyNo | integer |
charges / jdgmts / prob / superAgency / superAgencyNo
Field name | Full field name | Type |
---|
superAgencyNo | charges.jdgmts.prob.superAgency.superAgencyNo | string |
charges / jdgmts / prob / superAgency / name
Field name | Full field name | Type |
---|
name | charges.jdgmts.prob.superAgency.name | string |
charges / jdgmts / prob / jdgmtDispoDate
Field name | Full field name | Type |
---|
jdgmtDispoDate | charges.jdgmts.prob.jdgmtDispoDate | timestamp |
charges / jdgmts / orderDate
Field name | Full field name | Type |
---|
orderDate | charges.jdgmts.orderDate | timestamp |
charges / jdgmts / dispoCtofcName
Field name | Full field name | Type |
---|
dispoCtofcName | charges.jdgmts.dispoCtofcName | record |
charges / jdgmts / dispoCtofcName / first
Field name | Full field name | Type |
---|
first | charges.jdgmts.dispoCtofcName.first | string |
charges / jdgmts / dispoCtofcName / middle
Field name | Full field name | Type |
---|
middle | charges.jdgmts.dispoCtofcName.middle | string |
charges / jdgmts / dispoCtofcName / last
Field name | Full field name | Type |
---|
last | charges.jdgmts.dispoCtofcName.last | string |
charges / jdgmts / dispoCtofcName / suffix
Field name | Full field name | Type |
---|
suffix | charges.jdgmts.dispoCtofcName.suffix | string |
charges / jdgmts / jdgmtDispoDate
Field name | Full field name | Type |
---|
jdgmtDispoDate | charges.jdgmts.jdgmtDispoDate | timestamp |
charges / jdgmts / isJOC
Field name | Full field name | Type |
---|
isJOC | charges.jdgmts.isJOC | boolean |
charges / jdgmts / isModified
Field name | Full field name | Type |
---|
isModified | charges.jdgmts.isModified | boolean |
charges / jdgmts / isProbOrdered
Field name | Full field name | Type |
---|
isProbOrdered | charges.jdgmts.isProbOrdered | boolean |
charges / jdgmts / dispo
Field name | Full field name | Type |
---|
dispo | charges.jdgmts.dispo | record |
charges / jdgmts / dispo / dispoCode
Field name | Full field name | Type |
---|
dispoCode | charges.jdgmts.dispo.dispoCode | string |
charges / jdgmts / dispo / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.dispo.descr | string |
charges / jdgmts / dispo / isActive
Field name | Full field name | Type |
---|
isActive | charges.jdgmts.dispo.isActive | boolean |
charges / jdgmts / supervisions
Field name | Full field name | Type |
---|
supervisions | charges.jdgmts.supervisions | record |
charges / jdgmts / supervisions / orderSeqNo
Field name | Full field name | Type |
---|
orderSeqNo | charges.jdgmts.supervisions.orderSeqNo | integer |
charges / jdgmts / supervisions / sentenceCode
Field name | Full field name | Type |
---|
sentenceCode | charges.jdgmts.supervisions.sentenceCode | record |
charges / jdgmts / supervisions / sentenceCode / sentCode
Field name | Full field name | Type |
---|
sentCode | charges.jdgmts.supervisions.sentenceCode.sentCode | string |
charges / jdgmts / supervisions / sentenceCode / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.supervisions.sentenceCode.descr | string |
charges / jdgmts / supervisions / sentenceCode / isActive
Field name | Full field name | Type |
---|
isActive | charges.jdgmts.supervisions.sentenceCode.isActive | boolean |
charges / jdgmts / supervisions / sentenceCode / wcisSentCode
Field name | Full field name | Type |
---|
wcisSentCode | charges.jdgmts.supervisions.sentenceCode.wcisSentCode | string |
charges / jdgmts / supervisions / pd1
Field name | Full field name | Type |
---|
pd1 | charges.jdgmts.supervisions.pd1 | record |
charges / jdgmts / supervisions / pd1 / isActive
Field name | Full field name | Type |
---|
isActive | charges.jdgmts.supervisions.pd1.isActive | boolean |
charges / jdgmts / supervisions / pd1 / pdCode
Field name | Full field name | Type |
---|
pdCode | charges.jdgmts.supervisions.pd1.pdCode | string |
charges / jdgmts / supervisions / pd1 / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.supervisions.pd1.descr | string |
charges / jdgmts / supervisions / pd2
Field name | Full field name | Type |
---|
pd2 | charges.jdgmts.supervisions.pd2 | record |
charges / jdgmts / supervisions / pd2 / isActive
Field name | Full field name | Type |
---|
isActive | charges.jdgmts.supervisions.pd2.isActive | boolean |
charges / jdgmts / supervisions / pd2 / pdCode
Field name | Full field name | Type |
---|
pdCode | charges.jdgmts.supervisions.pd2.pdCode | string |
charges / jdgmts / supervisions / pd2 / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.supervisions.pd2.descr | string |
charges / jdgmts / supervisions / sentDate
Field name | Full field name | Type |
---|
sentDate | charges.jdgmts.supervisions.sentDate | timestamp |
charges / jdgmts / supervisions / beginDate
Field name | Full field name | Type |
---|
beginDate | charges.jdgmts.supervisions.beginDate | timestamp |
charges / jdgmts / supervisions / len1
Field name | Full field name | Type |
---|
len1 | charges.jdgmts.supervisions.len1 | integer |
charges / jdgmts / supervisions / len2
Field name | Full field name | Type |
---|
len2 | charges.jdgmts.supervisions.len2 | integer |
charges / jdgmts / supervisions / wWhat
Field name | Full field name | Type |
---|
wWhat | charges.jdgmts.supervisions.wWhat | string |
charges / jdgmts / supervisions / concurConsec
Field name | Full field name | Type |
---|
concurConsec | charges.jdgmts.supervisions.concurConsec | record |
charges / jdgmts / supervisions / concurConsec / concurConsecCode
Field name | Full field name | Type |
---|
concurConsecCode | charges.jdgmts.supervisions.concurConsec.concurConsecCode | string |
charges / jdgmts / supervisions / superTimeConds
Field name | Full field name | Type |
---|
superTimeConds | charges.jdgmts.supervisions.superTimeConds | record |
charges / jdgmts / supervisions / superTimeConds / wWhat
Field name | Full field name | Type |
---|
wWhat | charges.jdgmts.supervisions.superTimeConds.wWhat | string |
charges / jdgmts / supervisions / superTimeConds / condPd1
Field name | Full field name | Type |
---|
condPd1 | charges.jdgmts.supervisions.superTimeConds.condPd1 | record |
charges / jdgmts / supervisions / superTimeConds / condPd1 / isActive
Field name | Full field name | Type |
---|
isActive | charges.jdgmts.supervisions.superTimeConds.condPd1.isActive | boolean |
charges / jdgmts / supervisions / superTimeConds / condPd1 / pdCode
Field name | Full field name | Type |
---|
pdCode | charges.jdgmts.supervisions.superTimeConds.condPd1.pdCode | string |
charges / jdgmts / supervisions / superTimeConds / condPd1 / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.supervisions.superTimeConds.condPd1.descr | string |
charges / jdgmts / supervisions / superTimeConds / condPd2
Field name | Full field name | Type |
---|
condPd2 | charges.jdgmts.supervisions.superTimeConds.condPd2 | record |
charges / jdgmts / supervisions / superTimeConds / condPd2 / isActive
Field name | Full field name | Type |
---|
isActive | charges.jdgmts.supervisions.superTimeConds.condPd2.isActive | boolean |
charges / jdgmts / supervisions / superTimeConds / condPd2 / pdCode
Field name | Full field name | Type |
---|
pdCode | charges.jdgmts.supervisions.superTimeConds.condPd2.pdCode | string |
charges / jdgmts / supervisions / superTimeConds / condPd2 / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.supervisions.superTimeConds.condPd2.descr | string |
charges / jdgmts / supervisions / superTimeConds / condLen1
Field name | Full field name | Type |
---|
condLen1 | charges.jdgmts.supervisions.superTimeConds.condLen1 | integer |
charges / jdgmts / supervisions / superTimeConds / condLen2
Field name | Full field name | Type |
---|
condLen2 | charges.jdgmts.supervisions.superTimeConds.condLen2 | integer |
charges / jdgmts / supervisions / superTimeConds / condSeqNo
Field name | Full field name | Type |
---|
condSeqNo | charges.jdgmts.supervisions.superTimeConds.condSeqNo | integer |
charges / jdgmts / supervisions / superTimeConds / condition
Field name | Full field name | Type |
---|
condition | charges.jdgmts.supervisions.superTimeConds.condition | record |
charges / jdgmts / supervisions / superTimeConds / condition / wcisCondType
Field name | Full field name | Type |
---|
wcisCondType | charges.jdgmts.supervisions.superTimeConds.condition.wcisCondType | string |
charges / jdgmts / supervisions / superTimeConds / condition / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.supervisions.superTimeConds.condition.descr | string |
charges / jdgmts / supervisions / superTimeConds / condition / groupedType
Field name | Full field name | Type |
---|
groupedType | charges.jdgmts.supervisions.superTimeConds.condition.groupedType | string |
charges / jdgmts / supervisions / superTimeConds / condition / isMoreThanOne
Field name | Full field name | Type |
---|
isMoreThanOne | charges.jdgmts.supervisions.superTimeConds.condition.isMoreThanOne | boolean |
charges / jdgmts / supervisions / superTimeConds / condition / isJuvCrim
Field name | Full field name | Type |
---|
isJuvCrim | charges.jdgmts.supervisions.superTimeConds.condition.isJuvCrim | boolean |
charges / jdgmts / supervisions / superTimeConds / condition / condCode
Field name | Full field name | Type |
---|
condCode | charges.jdgmts.supervisions.superTimeConds.condition.condCode | string |
charges / jdgmts / supervisions / superTimeConds / concurConsec
Field name | Full field name | Type |
---|
concurConsec | charges.jdgmts.supervisions.superTimeConds.concurConsec | record |
charges / jdgmts / supervisions / superTimeConds / concurConsec / concurConsecCode
Field name | Full field name | Type |
---|
concurConsecCode | charges.jdgmts.supervisions.superTimeConds.concurConsec.concurConsecCode | string |
charges / jdgmts / supervisions / superMiscConds
Field name | Full field name | Type |
---|
superMiscConds | charges.jdgmts.supervisions.superMiscConds | record |
charges / jdgmts / supervisions / superMiscConds / condSeqNo
Field name | Full field name | Type |
---|
condSeqNo | charges.jdgmts.supervisions.superMiscConds.condSeqNo | integer |
charges / jdgmts / supervisions / superMiscConds / condition
Field name | Full field name | Type |
---|
condition | charges.jdgmts.supervisions.superMiscConds.condition | record |
charges / jdgmts / supervisions / superMiscConds / condition / wcisCondType
Field name | Full field name | Type |
---|
wcisCondType | charges.jdgmts.supervisions.superMiscConds.condition.wcisCondType | string |
charges / jdgmts / supervisions / superMiscConds / condition / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.supervisions.superMiscConds.condition.descr | string |
charges / jdgmts / supervisions / superMiscConds / condition / groupedType
Field name | Full field name | Type |
---|
groupedType | charges.jdgmts.supervisions.superMiscConds.condition.groupedType | string |
charges / jdgmts / supervisions / superMiscConds / condition / isMoreThanOne
Field name | Full field name | Type |
---|
isMoreThanOne | charges.jdgmts.supervisions.superMiscConds.condition.isMoreThanOne | boolean |
charges / jdgmts / supervisions / superMiscConds / condition / isJuvCrim
Field name | Full field name | Type |
---|
isJuvCrim | charges.jdgmts.supervisions.superMiscConds.condition.isJuvCrim | boolean |
charges / jdgmts / supervisions / superMiscConds / condition / condCode
Field name | Full field name | Type |
---|
condCode | charges.jdgmts.supervisions.superMiscConds.condition.condCode | string |
charges / jdgmts / supervisions / superMiscConds / condTxt
Field name | Full field name | Type |
---|
condTxt | charges.jdgmts.supervisions.superMiscConds.condTxt | string |
charges / jdgmts / timeConds
Field name | Full field name | Type |
---|
timeConds | charges.jdgmts.timeConds | record |
charges / jdgmts / timeConds / wWhat
Field name | Full field name | Type |
---|
wWhat | charges.jdgmts.timeConds.wWhat | string |
charges / jdgmts / timeConds / concurConsec
Field name | Full field name | Type |
---|
concurConsec | charges.jdgmts.timeConds.concurConsec | record |
charges / jdgmts / timeConds / concurConsec / concurConsecCode
Field name | Full field name | Type |
---|
concurConsecCode | charges.jdgmts.timeConds.concurConsec.concurConsecCode | string |
charges / jdgmts / timeConds / condLen1
Field name | Full field name | Type |
---|
condLen1 | charges.jdgmts.timeConds.condLen1 | integer |
charges / jdgmts / timeConds / condLen2
Field name | Full field name | Type |
---|
condLen2 | charges.jdgmts.timeConds.condLen2 | integer |
charges / jdgmts / timeConds / condSeqNo
Field name | Full field name | Type |
---|
condSeqNo | charges.jdgmts.timeConds.condSeqNo | integer |
charges / jdgmts / timeConds / condPd1
Field name | Full field name | Type |
---|
condPd1 | charges.jdgmts.timeConds.condPd1 | record |
charges / jdgmts / timeConds / condPd1 / isActive
Field name | Full field name | Type |
---|
isActive | charges.jdgmts.timeConds.condPd1.isActive | boolean |
charges / jdgmts / timeConds / condPd1 / pdCode
Field name | Full field name | Type |
---|
pdCode | charges.jdgmts.timeConds.condPd1.pdCode | string |
charges / jdgmts / timeConds / condPd1 / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.timeConds.condPd1.descr | string |
charges / jdgmts / timeConds / condPd2
Field name | Full field name | Type |
---|
condPd2 | charges.jdgmts.timeConds.condPd2 | record |
charges / jdgmts / timeConds / condPd2 / isActive
Field name | Full field name | Type |
---|
isActive | charges.jdgmts.timeConds.condPd2.isActive | boolean |
charges / jdgmts / timeConds / condPd2 / pdCode
Field name | Full field name | Type |
---|
pdCode | charges.jdgmts.timeConds.condPd2.pdCode | string |
charges / jdgmts / timeConds / condPd2 / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.timeConds.condPd2.descr | string |
charges / jdgmts / timeConds / condition
Field name | Full field name | Type |
---|
condition | charges.jdgmts.timeConds.condition | record |
charges / jdgmts / timeConds / condition / wcisCondType
Field name | Full field name | Type |
---|
wcisCondType | charges.jdgmts.timeConds.condition.wcisCondType | string |
charges / jdgmts / timeConds / condition / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.timeConds.condition.descr | string |
charges / jdgmts / timeConds / condition / groupedType
Field name | Full field name | Type |
---|
groupedType | charges.jdgmts.timeConds.condition.groupedType | string |
charges / jdgmts / timeConds / condition / isMoreThanOne
Field name | Full field name | Type |
---|
isMoreThanOne | charges.jdgmts.timeConds.condition.isMoreThanOne | boolean |
charges / jdgmts / timeConds / condition / isJuvCrim
Field name | Full field name | Type |
---|
isJuvCrim | charges.jdgmts.timeConds.condition.isJuvCrim | boolean |
charges / jdgmts / timeConds / condition / condCode
Field name | Full field name | Type |
---|
condCode | charges.jdgmts.timeConds.condition.condCode | string |
charges / jdgmts / miscConds
Field name | Full field name | Type |
---|
miscConds | charges.jdgmts.miscConds | record |
charges / jdgmts / miscConds / condSeqNo
Field name | Full field name | Type |
---|
condSeqNo | charges.jdgmts.miscConds.condSeqNo | integer |
charges / jdgmts / miscConds / condition
Field name | Full field name | Type |
---|
condition | charges.jdgmts.miscConds.condition | record |
charges / jdgmts / miscConds / condition / wcisCondType
Field name | Full field name | Type |
---|
wcisCondType | charges.jdgmts.miscConds.condition.wcisCondType | string |
charges / jdgmts / miscConds / condition / descr
Field name | Full field name | Type |
---|
descr | charges.jdgmts.miscConds.condition.descr | string |
charges / jdgmts / miscConds / condition / groupedType
Field name | Full field name | Type |
---|
groupedType | charges.jdgmts.miscConds.condition.groupedType | string |
charges / jdgmts / miscConds / condition / isMoreThanOne
Field name | Full field name | Type |
---|
isMoreThanOne | charges.jdgmts.miscConds.condition.isMoreThanOne | boolean |
charges / jdgmts / miscConds / condition / isJuvCrim
Field name | Full field name | Type |
---|
isJuvCrim | charges.jdgmts.miscConds.condition.isJuvCrim | boolean |
charges / jdgmts / miscConds / condition / condCode
Field name | Full field name | Type |
---|
condCode | charges.jdgmts.miscConds.condition.condCode | string |
charges / jdgmts / miscConds / condTxt
Field name | Full field name | Type |
---|
condTxt | charges.jdgmts.miscConds.condTxt | string |
historicalCharges
Field name | Full field name | Type |
---|
historicalCharges | historicalCharges | record |
historicalCharges / chargeNo
Field name | Full field name | Type |
---|
chargeNo | historicalCharges.chargeNo | integer |
historicalCharges / statuteCite
Field name | Full field name | Type |
---|
statuteCite | historicalCharges.statuteCite | string |
historicalCharges / reopEvent
Field name | Full field name | Type |
---|
reopEvent | historicalCharges.reopEvent | record |
historicalCharges / reopEvent / eventType
Field name | Full field name | Type |
---|
eventType | historicalCharges.reopEvent.eventType | string |
historicalCharges / reopEvent / eventDate
Field name | Full field name | Type |
---|
eventDate | historicalCharges.reopEvent.eventDate | timestamp |
historicalCharges / reopEvent / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.reopEvent.descr | string |
historicalCharges / severity
Field name | Full field name | Type |
---|
severity | historicalCharges.severity | record |
historicalCharges / severity / sevClsCode
Field name | Full field name | Type |
---|
sevClsCode | historicalCharges.severity.sevClsCode | string |
historicalCharges / severity / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.severity.descr | string |
historicalCharges / severity / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.severity.isActive | boolean |
historicalCharges / modifiedSeverity
Field name | Full field name | Type |
---|
modifiedSeverity | historicalCharges.modifiedSeverity | record |
historicalCharges / modifiedSeverity / sevClsCode
Field name | Full field name | Type |
---|
sevClsCode | historicalCharges.modifiedSeverity.sevClsCode | string |
historicalCharges / modifiedSeverity / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.modifiedSeverity.isActive | boolean |
historicalCharges / modifiedSeverity / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.modifiedSeverity.descr | string |
historicalCharges / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.descr | string |
historicalCharges / offenseDate
Field name | Full field name | Type |
---|
offenseDate | historicalCharges.offenseDate | timestamp |
historicalCharges / pleaDate
Field name | Full field name | Type |
---|
pleaDate | historicalCharges.pleaDate | timestamp |
historicalCharges / chargeSeqNo
Field name | Full field name | Type |
---|
chargeSeqNo | historicalCharges.chargeSeqNo | integer |
historicalCharges / chargeModifiers
Field name | Full field name | Type |
---|
chargeModifiers | historicalCharges.chargeModifiers | record |
historicalCharges / chargeModifiers / modSeqNo
Field name | Full field name | Type |
---|
modSeqNo | historicalCharges.chargeModifiers.modSeqNo | integer |
historicalCharges / chargeModifiers / statuteCite
Field name | Full field name | Type |
---|
statuteCite | historicalCharges.chargeModifiers.statuteCite | string |
historicalCharges / chargeModifiers / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.chargeModifiers.descr | string |
historicalCharges / plea
Field name | Full field name | Type |
---|
plea | historicalCharges.plea | record |
historicalCharges / plea / pleaCode
Field name | Full field name | Type |
---|
pleaCode | historicalCharges.plea.pleaCode | string |
historicalCharges / plea / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.plea.descr | string |
historicalCharges / plea / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.plea.isActive | boolean |
historicalCharges / jdgmts
Field name | Full field name | Type |
---|
jdgmts | historicalCharges.jdgmts | record |
historicalCharges / jdgmts / jdgmtSeqNo
Field name | Full field name | Type |
---|
jdgmtSeqNo | historicalCharges.jdgmts.jdgmtSeqNo | integer |
historicalCharges / jdgmts / orderDate
Field name | Full field name | Type |
---|
orderDate | historicalCharges.jdgmts.orderDate | timestamp |
historicalCharges / jdgmts / dispoCtofcName
Field name | Full field name | Type |
---|
dispoCtofcName | historicalCharges.jdgmts.dispoCtofcName | record |
historicalCharges / jdgmts / dispoCtofcName / first
Field name | Full field name | Type |
---|
first | historicalCharges.jdgmts.dispoCtofcName.first | string |
historicalCharges / jdgmts / dispoCtofcName / middle
Field name | Full field name | Type |
---|
middle | historicalCharges.jdgmts.dispoCtofcName.middle | string |
historicalCharges / jdgmts / dispoCtofcName / last
Field name | Full field name | Type |
---|
last | historicalCharges.jdgmts.dispoCtofcName.last | string |
historicalCharges / jdgmts / dispoCtofcName / suffix
Field name | Full field name | Type |
---|
suffix | historicalCharges.jdgmts.dispoCtofcName.suffix | string |
historicalCharges / jdgmts / prob
Field name | Full field name | Type |
---|
prob | historicalCharges.jdgmts.prob | record |
historicalCharges / jdgmts / prob / len1
Field name | Full field name | Type |
---|
len1 | historicalCharges.jdgmts.prob.len1 | integer |
historicalCharges / jdgmts / prob / len2
Field name | Full field name | Type |
---|
len2 | historicalCharges.jdgmts.prob.len2 | integer |
historicalCharges / jdgmts / prob / isForJdgmt
Field name | Full field name | Type |
---|
isForJdgmt | historicalCharges.jdgmts.prob.isForJdgmt | boolean |
historicalCharges / jdgmts / prob / pd1
Field name | Full field name | Type |
---|
pd1 | historicalCharges.jdgmts.prob.pd1 | record |
historicalCharges / jdgmts / prob / pd1 / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.jdgmts.prob.pd1.isActive | boolean |
historicalCharges / jdgmts / prob / pd1 / pdCode
Field name | Full field name | Type |
---|
pdCode | historicalCharges.jdgmts.prob.pd1.pdCode | string |
historicalCharges / jdgmts / prob / pd1 / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.prob.pd1.descr | string |
historicalCharges / jdgmts / prob / pd2
Field name | Full field name | Type |
---|
pd2 | historicalCharges.jdgmts.prob.pd2 | record |
historicalCharges / jdgmts / prob / pd2 / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.jdgmts.prob.pd2.isActive | boolean |
historicalCharges / jdgmts / prob / pd2 / pdCode
Field name | Full field name | Type |
---|
pdCode | historicalCharges.jdgmts.prob.pd2.pdCode | string |
historicalCharges / jdgmts / prob / pd2 / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.prob.pd2.descr | string |
historicalCharges / jdgmts / prob / superAgency
Field name | Full field name | Type |
---|
superAgency | historicalCharges.jdgmts.prob.superAgency | record |
historicalCharges / jdgmts / prob / superAgency / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.jdgmts.prob.superAgency.isActive | boolean |
historicalCharges / jdgmts / prob / superAgency / countyNo
Field name | Full field name | Type |
---|
countyNo | historicalCharges.jdgmts.prob.superAgency.countyNo | integer |
historicalCharges / jdgmts / prob / superAgency / superAgencyNo
Field name | Full field name | Type |
---|
superAgencyNo | historicalCharges.jdgmts.prob.superAgency.superAgencyNo | string |
historicalCharges / jdgmts / prob / superAgency / name
Field name | Full field name | Type |
---|
name | historicalCharges.jdgmts.prob.superAgency.name | string |
historicalCharges / jdgmts / prob / jdgmtDispoDate
Field name | Full field name | Type |
---|
jdgmtDispoDate | historicalCharges.jdgmts.prob.jdgmtDispoDate | timestamp |
historicalCharges / jdgmts / jdgmtDispoDate
Field name | Full field name | Type |
---|
jdgmtDispoDate | historicalCharges.jdgmts.jdgmtDispoDate | timestamp |
historicalCharges / jdgmts / isJOC
Field name | Full field name | Type |
---|
isJOC | historicalCharges.jdgmts.isJOC | boolean |
historicalCharges / jdgmts / dispoTxt
Field name | Full field name | Type |
---|
dispoTxt | historicalCharges.jdgmts.dispoTxt | string |
historicalCharges / jdgmts / isModified
Field name | Full field name | Type |
---|
isModified | historicalCharges.jdgmts.isModified | boolean |
historicalCharges / jdgmts / isProbOrdered
Field name | Full field name | Type |
---|
isProbOrdered | historicalCharges.jdgmts.isProbOrdered | boolean |
historicalCharges / jdgmts / dispo
Field name | Full field name | Type |
---|
dispo | historicalCharges.jdgmts.dispo | record |
historicalCharges / jdgmts / dispo / dispoCode
Field name | Full field name | Type |
---|
dispoCode | historicalCharges.jdgmts.dispo.dispoCode | string |
historicalCharges / jdgmts / dispo / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.dispo.descr | string |
historicalCharges / jdgmts / dispo / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.jdgmts.dispo.isActive | boolean |
historicalCharges / jdgmts / supervisions
Field name | Full field name | Type |
---|
supervisions | historicalCharges.jdgmts.supervisions | record |
historicalCharges / jdgmts / supervisions / orderSeqNo
Field name | Full field name | Type |
---|
orderSeqNo | historicalCharges.jdgmts.supervisions.orderSeqNo | integer |
historicalCharges / jdgmts / supervisions / len1
Field name | Full field name | Type |
---|
len1 | historicalCharges.jdgmts.supervisions.len1 | integer |
historicalCharges / jdgmts / supervisions / len2
Field name | Full field name | Type |
---|
len2 | historicalCharges.jdgmts.supervisions.len2 | integer |
historicalCharges / jdgmts / supervisions / sentenceCode
Field name | Full field name | Type |
---|
sentenceCode | historicalCharges.jdgmts.supervisions.sentenceCode | record |
historicalCharges / jdgmts / supervisions / sentenceCode / sentCode
Field name | Full field name | Type |
---|
sentCode | historicalCharges.jdgmts.supervisions.sentenceCode.sentCode | string |
historicalCharges / jdgmts / supervisions / sentenceCode / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.supervisions.sentenceCode.descr | string |
historicalCharges / jdgmts / supervisions / sentenceCode / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.jdgmts.supervisions.sentenceCode.isActive | boolean |
historicalCharges / jdgmts / supervisions / sentenceCode / wcisSentCode
Field name | Full field name | Type |
---|
wcisSentCode | historicalCharges.jdgmts.supervisions.sentenceCode.wcisSentCode | string |
historicalCharges / jdgmts / supervisions / pd1
Field name | Full field name | Type |
---|
pd1 | historicalCharges.jdgmts.supervisions.pd1 | record |
historicalCharges / jdgmts / supervisions / pd1 / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.jdgmts.supervisions.pd1.isActive | boolean |
historicalCharges / jdgmts / supervisions / pd1 / pdCode
Field name | Full field name | Type |
---|
pdCode | historicalCharges.jdgmts.supervisions.pd1.pdCode | string |
historicalCharges / jdgmts / supervisions / pd1 / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.supervisions.pd1.descr | string |
historicalCharges / jdgmts / supervisions / pd2
Field name | Full field name | Type |
---|
pd2 | historicalCharges.jdgmts.supervisions.pd2 | record |
historicalCharges / jdgmts / supervisions / pd2 / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.jdgmts.supervisions.pd2.isActive | boolean |
historicalCharges / jdgmts / supervisions / pd2 / pdCode
Field name | Full field name | Type |
---|
pdCode | historicalCharges.jdgmts.supervisions.pd2.pdCode | string |
historicalCharges / jdgmts / supervisions / pd2 / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.supervisions.pd2.descr | string |
historicalCharges / jdgmts / supervisions / sentDate
Field name | Full field name | Type |
---|
sentDate | historicalCharges.jdgmts.supervisions.sentDate | timestamp |
historicalCharges / jdgmts / supervisions / beginDate
Field name | Full field name | Type |
---|
beginDate | historicalCharges.jdgmts.supervisions.beginDate | timestamp |
historicalCharges / jdgmts / supervisions / wWhat
Field name | Full field name | Type |
---|
wWhat | historicalCharges.jdgmts.supervisions.wWhat | string |
historicalCharges / jdgmts / supervisions / concurConsec
Field name | Full field name | Type |
---|
concurConsec | historicalCharges.jdgmts.supervisions.concurConsec | record |
historicalCharges / jdgmts / supervisions / concurConsec / concurConsecCode
Field name | Full field name | Type |
---|
concurConsecCode | historicalCharges.jdgmts.supervisions.concurConsec.concurConsecCode | string |
historicalCharges / jdgmts / supervisions / superTimeConds
Field name | Full field name | Type |
---|
superTimeConds | historicalCharges.jdgmts.supervisions.superTimeConds | record |
historicalCharges / jdgmts / supervisions / superTimeConds / wWhat
Field name | Full field name | Type |
---|
wWhat | historicalCharges.jdgmts.supervisions.superTimeConds.wWhat | string |
historicalCharges / jdgmts / supervisions / superTimeConds / condPd1
Field name | Full field name | Type |
---|
condPd1 | historicalCharges.jdgmts.supervisions.superTimeConds.condPd1 | record |
historicalCharges / jdgmts / supervisions / superTimeConds / condPd1 / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.jdgmts.supervisions.superTimeConds.condPd1.isActive | boolean |
historicalCharges / jdgmts / supervisions / superTimeConds / condPd1 / pdCode
Field name | Full field name | Type |
---|
pdCode | historicalCharges.jdgmts.supervisions.superTimeConds.condPd1.pdCode | string |
historicalCharges / jdgmts / supervisions / superTimeConds / condPd1 / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.supervisions.superTimeConds.condPd1.descr | string |
historicalCharges / jdgmts / supervisions / superTimeConds / condPd2
Field name | Full field name | Type |
---|
condPd2 | historicalCharges.jdgmts.supervisions.superTimeConds.condPd2 | record |
historicalCharges / jdgmts / supervisions / superTimeConds / condPd2 / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.jdgmts.supervisions.superTimeConds.condPd2.isActive | boolean |
historicalCharges / jdgmts / supervisions / superTimeConds / condPd2 / pdCode
Field name | Full field name | Type |
---|
pdCode | historicalCharges.jdgmts.supervisions.superTimeConds.condPd2.pdCode | string |
historicalCharges / jdgmts / supervisions / superTimeConds / condPd2 / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.supervisions.superTimeConds.condPd2.descr | string |
historicalCharges / jdgmts / supervisions / superTimeConds / condLen1
Field name | Full field name | Type |
---|
condLen1 | historicalCharges.jdgmts.supervisions.superTimeConds.condLen1 | integer |
historicalCharges / jdgmts / supervisions / superTimeConds / condLen2
Field name | Full field name | Type |
---|
condLen2 | historicalCharges.jdgmts.supervisions.superTimeConds.condLen2 | integer |
historicalCharges / jdgmts / supervisions / superTimeConds / condSeqNo
Field name | Full field name | Type |
---|
condSeqNo | historicalCharges.jdgmts.supervisions.superTimeConds.condSeqNo | integer |
historicalCharges / jdgmts / supervisions / superTimeConds / condition
Field name | Full field name | Type |
---|
condition | historicalCharges.jdgmts.supervisions.superTimeConds.condition | record |
historicalCharges / jdgmts / supervisions / superTimeConds / condition / wcisCondType
Field name | Full field name | Type |
---|
wcisCondType | historicalCharges.jdgmts.supervisions.superTimeConds.condition.wcisCondType | string |
historicalCharges / jdgmts / supervisions / superTimeConds / condition / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.supervisions.superTimeConds.condition.descr | string |
historicalCharges / jdgmts / supervisions / superTimeConds / condition / groupedType
Field name | Full field name | Type |
---|
groupedType | historicalCharges.jdgmts.supervisions.superTimeConds.condition.groupedType | string |
historicalCharges / jdgmts / supervisions / superTimeConds / condition / isMoreThanOne
Field name | Full field name | Type |
---|
isMoreThanOne | historicalCharges.jdgmts.supervisions.superTimeConds.condition.isMoreThanOne | boolean |
historicalCharges / jdgmts / supervisions / superTimeConds / condition / isJuvCrim
Field name | Full field name | Type |
---|
isJuvCrim | historicalCharges.jdgmts.supervisions.superTimeConds.condition.isJuvCrim | boolean |
historicalCharges / jdgmts / supervisions / superTimeConds / condition / condCode
Field name | Full field name | Type |
---|
condCode | historicalCharges.jdgmts.supervisions.superTimeConds.condition.condCode | string |
historicalCharges / jdgmts / supervisions / superTimeConds / concurConsec
Field name | Full field name | Type |
---|
concurConsec | historicalCharges.jdgmts.supervisions.superTimeConds.concurConsec | record |
historicalCharges / jdgmts / supervisions / superTimeConds / concurConsec / concurConsecCode
Field name | Full field name | Type |
---|
concurConsecCode | historicalCharges.jdgmts.supervisions.superTimeConds.concurConsec.concurConsecCode | string |
historicalCharges / jdgmts / supervisions / superMiscConds
Field name | Full field name | Type |
---|
superMiscConds | historicalCharges.jdgmts.supervisions.superMiscConds | record |
historicalCharges / jdgmts / supervisions / superMiscConds / condSeqNo
Field name | Full field name | Type |
---|
condSeqNo | historicalCharges.jdgmts.supervisions.superMiscConds.condSeqNo | integer |
historicalCharges / jdgmts / supervisions / superMiscConds / condition
Field name | Full field name | Type |
---|
condition | historicalCharges.jdgmts.supervisions.superMiscConds.condition | record |
historicalCharges / jdgmts / supervisions / superMiscConds / condition / wcisCondType
Field name | Full field name | Type |
---|
wcisCondType | historicalCharges.jdgmts.supervisions.superMiscConds.condition.wcisCondType | string |
historicalCharges / jdgmts / supervisions / superMiscConds / condition / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.supervisions.superMiscConds.condition.descr | string |
historicalCharges / jdgmts / supervisions / superMiscConds / condition / groupedType
Field name | Full field name | Type |
---|
groupedType | historicalCharges.jdgmts.supervisions.superMiscConds.condition.groupedType | string |
historicalCharges / jdgmts / supervisions / superMiscConds / condition / isMoreThanOne
Field name | Full field name | Type |
---|
isMoreThanOne | historicalCharges.jdgmts.supervisions.superMiscConds.condition.isMoreThanOne | boolean |
historicalCharges / jdgmts / supervisions / superMiscConds / condition / isJuvCrim
Field name | Full field name | Type |
---|
isJuvCrim | historicalCharges.jdgmts.supervisions.superMiscConds.condition.isJuvCrim | boolean |
historicalCharges / jdgmts / supervisions / superMiscConds / condition / condCode
Field name | Full field name | Type |
---|
condCode | historicalCharges.jdgmts.supervisions.superMiscConds.condition.condCode | string |
historicalCharges / jdgmts / supervisions / superMiscConds / condTxt
Field name | Full field name | Type |
---|
condTxt | historicalCharges.jdgmts.supervisions.superMiscConds.condTxt | string |
historicalCharges / jdgmts / timeConds
Field name | Full field name | Type |
---|
timeConds | historicalCharges.jdgmts.timeConds | record |
historicalCharges / jdgmts / timeConds / wWhat
Field name | Full field name | Type |
---|
wWhat | historicalCharges.jdgmts.timeConds.wWhat | string |
historicalCharges / jdgmts / timeConds / concurConsec
Field name | Full field name | Type |
---|
concurConsec | historicalCharges.jdgmts.timeConds.concurConsec | record |
historicalCharges / jdgmts / timeConds / concurConsec / concurConsecCode
Field name | Full field name | Type |
---|
concurConsecCode | historicalCharges.jdgmts.timeConds.concurConsec.concurConsecCode | string |
historicalCharges / jdgmts / timeConds / condLen1
Field name | Full field name | Type |
---|
condLen1 | historicalCharges.jdgmts.timeConds.condLen1 | integer |
historicalCharges / jdgmts / timeConds / condLen2
Field name | Full field name | Type |
---|
condLen2 | historicalCharges.jdgmts.timeConds.condLen2 | integer |
historicalCharges / jdgmts / timeConds / condSeqNo
Field name | Full field name | Type |
---|
condSeqNo | historicalCharges.jdgmts.timeConds.condSeqNo | integer |
historicalCharges / jdgmts / timeConds / condPd1
Field name | Full field name | Type |
---|
condPd1 | historicalCharges.jdgmts.timeConds.condPd1 | record |
historicalCharges / jdgmts / timeConds / condPd1 / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.jdgmts.timeConds.condPd1.isActive | boolean |
historicalCharges / jdgmts / timeConds / condPd1 / pdCode
Field name | Full field name | Type |
---|
pdCode | historicalCharges.jdgmts.timeConds.condPd1.pdCode | string |
historicalCharges / jdgmts / timeConds / condPd1 / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.timeConds.condPd1.descr | string |
historicalCharges / jdgmts / timeConds / condPd2
Field name | Full field name | Type |
---|
condPd2 | historicalCharges.jdgmts.timeConds.condPd2 | record |
historicalCharges / jdgmts / timeConds / condPd2 / isActive
Field name | Full field name | Type |
---|
isActive | historicalCharges.jdgmts.timeConds.condPd2.isActive | boolean |
historicalCharges / jdgmts / timeConds / condPd2 / pdCode
Field name | Full field name | Type |
---|
pdCode | historicalCharges.jdgmts.timeConds.condPd2.pdCode | string |
historicalCharges / jdgmts / timeConds / condPd2 / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.timeConds.condPd2.descr | string |
historicalCharges / jdgmts / timeConds / condition
Field name | Full field name | Type |
---|
condition | historicalCharges.jdgmts.timeConds.condition | record |
historicalCharges / jdgmts / timeConds / condition / wcisCondType
Field name | Full field name | Type |
---|
wcisCondType | historicalCharges.jdgmts.timeConds.condition.wcisCondType | string |
historicalCharges / jdgmts / timeConds / condition / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.timeConds.condition.descr | string |
historicalCharges / jdgmts / timeConds / condition / groupedType
Field name | Full field name | Type |
---|
groupedType | historicalCharges.jdgmts.timeConds.condition.groupedType | string |
historicalCharges / jdgmts / timeConds / condition / isMoreThanOne
Field name | Full field name | Type |
---|
isMoreThanOne | historicalCharges.jdgmts.timeConds.condition.isMoreThanOne | boolean |
historicalCharges / jdgmts / timeConds / condition / isJuvCrim
Field name | Full field name | Type |
---|
isJuvCrim | historicalCharges.jdgmts.timeConds.condition.isJuvCrim | boolean |
historicalCharges / jdgmts / timeConds / condition / condCode
Field name | Full field name | Type |
---|
condCode | historicalCharges.jdgmts.timeConds.condition.condCode | string |
historicalCharges / jdgmts / miscConds
Field name | Full field name | Type |
---|
miscConds | historicalCharges.jdgmts.miscConds | record |
historicalCharges / jdgmts / miscConds / condSeqNo
Field name | Full field name | Type |
---|
condSeqNo | historicalCharges.jdgmts.miscConds.condSeqNo | integer |
historicalCharges / jdgmts / miscConds / condition
Field name | Full field name | Type |
---|
condition | historicalCharges.jdgmts.miscConds.condition | record |
historicalCharges / jdgmts / miscConds / condition / wcisCondType
Field name | Full field name | Type |
---|
wcisCondType | historicalCharges.jdgmts.miscConds.condition.wcisCondType | string |
historicalCharges / jdgmts / miscConds / condition / descr
Field name | Full field name | Type |
---|
descr | historicalCharges.jdgmts.miscConds.condition.descr | string |
historicalCharges / jdgmts / miscConds / condition / groupedType
Field name | Full field name | Type |
---|
groupedType | historicalCharges.jdgmts.miscConds.condition.groupedType | string |
historicalCharges / jdgmts / miscConds / condition / isMoreThanOne
Field name | Full field name | Type |
---|
isMoreThanOne | historicalCharges.jdgmts.miscConds.condition.isMoreThanOne | boolean |
historicalCharges / jdgmts / miscConds / condition / isJuvCrim
Field name | Full field name | Type |
---|
isJuvCrim | historicalCharges.jdgmts.miscConds.condition.isJuvCrim | boolean |
historicalCharges / jdgmts / miscConds / condition / condCode
Field name | Full field name | Type |
---|
condCode | historicalCharges.jdgmts.miscConds.condition.condCode | string |
historicalCharges / jdgmts / miscConds / condTxt
Field name | Full field name | Type |
---|
condTxt | historicalCharges.jdgmts.miscConds.condTxt | string |
parties
Field name | Full field name | Type |
---|
parties | parties | record |
parties / partyNo
Field name | Full field name | Type |
---|
partyNo | parties.partyNo | integer |
parties / dob
Field name | Full field name | Type |
---|
dob | parties.dob | string |
parties / justisNo
Field name | Full field name | Type |
---|
justisNo | parties.justisNo | string |
parties / dod
Field name | Full field name | Type |
---|
dod | parties.dod | timestamp |
parties / fingerPrintId
Field name | Full field name | Type |
---|
fingerPrintId | parties.fingerPrintId | string |
parties / sex
Field name | Full field name | Type |
---|
sex | parties.sex | string |
parties / race
Field name | Full field name | Type |
---|
race | parties.race | record |
parties / race / raceCode
Field name | Full field name | Type |
---|
raceCode | parties.race.raceCode | string |
parties / race / descr
Field name | Full field name | Type |
---|
descr | parties.race.descr | string |
parties / race / isActive
Field name | Full field name | Type |
---|
isActive | parties.race.isActive | boolean |
parties / type
Field name | Full field name | Type |
---|
type | parties.type | record |
parties / type / partyType
Field name | Full field name | Type |
---|
partyType | parties.type.partyType | string |
parties / type / descr
Field name | Full field name | Type |
---|
descr | parties.type.descr | string |
parties / type / isActive
Field name | Full field name | Type |
---|
isActive | parties.type.isActive | boolean |
parties / name
Field name | Full field name | Type |
---|
name | parties.name | record |
parties / name / first
Field name | Full field name | Type |
---|
first | parties.name.first | string |
parties / name / middle
Field name | Full field name | Type |
---|
middle | parties.name.middle | string |
parties / name / last
Field name | Full field name | Type |
---|
last | parties.name.last | string |
parties / name / suffix
Field name | Full field name | Type |
---|
suffix | parties.name.suffix | string |
parties / defendantId
Field name | Full field name | Type |
---|
defendantId | parties.defendantId | string |
parties / address
Field name | Full field name | Type |
---|
address | parties.address | record |
parties / address / addr
Field name | Full field name | Type |
---|
addr | parties.address.addr | record |
parties / address / addr / streetLine1
Field name | Full field name | Type |
---|
streetLine1 | parties.address.addr.streetLine1 | string |
parties / address / addr / streetLine2
Field name | Full field name | Type |
---|
streetLine2 | parties.address.addr.streetLine2 | string |
parties / address / addr / city
Field name | Full field name | Type |
---|
city | parties.address.addr.city | string |
parties / address / addr / state
Field name | Full field name | Type |
---|
state | parties.address.addr.state | string |
parties / address / addr / zip
Field name | Full field name | Type |
---|
zip | parties.address.addr.zip | string |
parties / address / addr / country
Field name | Full field name | Type |
---|
country | parties.address.addr.country | string |
parties / address / effDate
Field name | Full field name | Type |
---|
effDate | parties.address.effDate | timestamp |
parties / status
Field name | Full field name | Type |
---|
status | parties.status | record |
parties / status / statusCode
Field name | Full field name | Type |
---|
statusCode | parties.status.statusCode | string |
parties / status / caseOrParty
Field name | Full field name | Type |
---|
caseOrParty | parties.status.caseOrParty | string |
parties / status / descr
Field name | Full field name | Type |
---|
descr | parties.status.descr | string |
parties / status / isActive
Field name | Full field name | Type |
---|
isActive | parties.status.isActive | boolean |
parties / aliases
Field name | Full field name | Type |
---|
aliases | parties.aliases | record |
parties / aliases / aliasNo
Field name | Full field name | Type |
---|
aliasNo | parties.aliases.aliasNo | integer |
parties / aliases / dob
Field name | Full field name | Type |
---|
dob | parties.aliases.dob | string |
parties / aliases / name
Field name | Full field name | Type |
---|
name | parties.aliases.name | record |
parties / aliases / name / first
Field name | Full field name | Type |
---|
first | parties.aliases.name.first | string |
parties / aliases / name / middle
Field name | Full field name | Type |
---|
middle | parties.aliases.name.middle | string |
parties / aliases / name / last
Field name | Full field name | Type |
---|
last | parties.aliases.name.last | string |
parties / aliases / name / suffix
Field name | Full field name | Type |
---|
suffix | parties.aliases.name.suffix | string |
parties / aliases / code
Field name | Full field name | Type |
---|
code | parties.aliases.code | record |
parties / aliases / code / aliasCode
Field name | Full field name | Type |
---|
aliasCode | parties.aliases.code.aliasCode | string |
parties / aliases / code / descr
Field name | Full field name | Type |
---|
descr | parties.aliases.code.descr | string |
parties / aliases / code / isActive
Field name | Full field name | Type |
---|
isActive | parties.aliases.code.isActive | boolean |
parties / attorneys
Field name | Full field name | Type |
---|
attorneys | parties.attorneys | record |
parties / attorneys / attyNo
Field name | Full field name | Type |
---|
attyNo | parties.attorneys.attyNo | integer |
parties / attorneys / name
Field name | Full field name | Type |
---|
name | parties.attorneys.name | record |
parties / attorneys / name / first
Field name | Full field name | Type |
---|
first | parties.attorneys.name.first | string |
parties / attorneys / name / middle
Field name | Full field name | Type |
---|
middle | parties.attorneys.name.middle | string |
parties / attorneys / name / last
Field name | Full field name | Type |
---|
last | parties.attorneys.name.last | string |
parties / attorneys / name / suffix
Field name | Full field name | Type |
---|
suffix | parties.attorneys.name.suffix | string |
parties / attorneys / enteredDate
Field name | Full field name | Type |
---|
enteredDate | parties.attorneys.enteredDate | timestamp |
parties / attorneys / withdrewDate
Field name | Full field name | Type |
---|
withdrewDate | parties.attorneys.withdrewDate | timestamp |
parties / attorneys / isGal
Field name | Full field name | Type |
---|
isGal | parties.attorneys.isGal | boolean |
parties / isAddrSealed
Field name | Full field name | Type |
---|
isAddrSealed | parties.isAddrSealed | boolean |
parties / isSeal
Field name | Full field name | Type |
---|
isSeal | parties.isSeal | boolean |
filingDate
Field name | Full field name | Type |
---|
filingDate | filingDate | timestamp |
daCaseNo
Field name | Full field name | Type |
---|
daCaseNo | daCaseNo | string |
branchId
Field name | Full field name | Type |
---|
branchId | branchId | string |
crossReferencedCases
Field name | Full field name | Type |
---|
crossReferencedCases | crossReferencedCases | string |
maintenance
Field name | Full field name | Type |
---|
maintenance | maintenance | record |
maintenance / isActive
Field name | Full field name | Type |
---|
isActive | maintenance.isActive | boolean |
maintenance / descr
Field name | Full field name | Type |
---|
descr | maintenance.descr | string |
maintenance / maintCode
Field name | Full field name | Type |
---|
maintCode | maintenance.maintCode | string |
caseMaints
Field name | Full field name | Type |
---|
caseMaints | caseMaints | record |
caseMaints / partyName
Field name | Full field name | Type |
---|
partyName | caseMaints.partyName | record |
caseMaints / partyName / first
Field name | Full field name | Type |
---|
first | caseMaints.partyName.first | string |
caseMaints / partyName / middle
Field name | Full field name | Type |
---|
middle | caseMaints.partyName.middle | string |
caseMaints / partyName / last
Field name | Full field name | Type |
---|
last | caseMaints.partyName.last | string |
caseMaints / partyName / suffix
Field name | Full field name | Type |
---|
suffix | caseMaints.partyName.suffix | string |
caseMaints / eventDate
Field name | Full field name | Type |
---|
eventDate | caseMaints.eventDate | timestamp |
caseMaints / maintenance
Field name | Full field name | Type |
---|
maintenance | caseMaints.maintenance | record |
caseMaints / maintenance / isActive
Field name | Full field name | Type |
---|
isActive | caseMaints.maintenance.isActive | boolean |
caseMaints / maintenance / descr
Field name | Full field name | Type |
---|
descr | caseMaints.maintenance.descr | string |
caseMaints / maintenance / maintCode
Field name | Full field name | Type |
---|
maintCode | caseMaints.maintenance.maintCode | string |
caseMaints / event
Field name | Full field name | Type |
---|
event | caseMaints.event | record |
caseMaints / event / isActive
Field name | Full field name | Type |
---|
isActive | caseMaints.event.isActive | boolean |
caseMaints / event / descr
Field name | Full field name | Type |
---|
descr | caseMaints.event.descr | string |
caseMaints / event / eventType
Field name | Full field name | Type |
---|
eventType | caseMaints.event.eventType | string |
activities
Field name | Full field name | Type |
---|
activities | activities | record |
activities / start
Field name | Full field name | Type |
---|
start | activities.start | string |
activities / ctofcName
Field name | Full field name | Type |
---|
ctofcName | activities.ctofcName | record |
activities / ctofcName / first
Field name | Full field name | Type |
---|
first | activities.ctofcName.first | string |
activities / ctofcName / middle
Field name | Full field name | Type |
---|
middle | activities.ctofcName.middle | string |
activities / ctofcName / last
Field name | Full field name | Type |
---|
last | activities.ctofcName.last | string |
activities / ctofcName / suffix
Field name | Full field name | Type |
---|
suffix | activities.ctofcName.suffix | string |
activities / isCourtType
Field name | Full field name | Type |
---|
isCourtType | activities.isCourtType | boolean |
activities / descr
Field name | Full field name | Type |
---|
descr | activities.descr | string |
activities / loc
Field name | Full field name | Type |
---|
loc | activities.loc | string |
rcvbls
Field name | Full field name | Type |
---|
rcvbls | rcvbls | record |
rcvbls / totAmtDue
Field name | Full field name | Type |
---|
totAmtDue | rcvbls.totAmtDue | string |
rcvbls / totAdjustments
Field name | Full field name | Type |
---|
totAdjustments | rcvbls.totAdjustments | string |
rcvbls / paidToDate
Field name | Full field name | Type |
---|
paidToDate | rcvbls.paidToDate | string |
rcvbls / balDue
Field name | Full field name | Type |
---|
balDue | rcvbls.balDue | string |
rcvbls / probAmt
Field name | Full field name | Type |
---|
probAmt | rcvbls.probAmt | string |
rcvbls / rcvblNo
Field name | Full field name | Type |
---|
rcvblNo | rcvbls.rcvblNo | integer |
rcvbls / rcvblType
Field name | Full field name | Type |
---|
rcvblType | rcvbls.rcvblType | string |
rcvbls / dueDate
Field name | Full field name | Type |
---|
dueDate | rcvbls.dueDate | string |
citns
Field name | Full field name | Type |
---|
citns | citns | record |
citns / statuteCite
Field name | Full field name | Type |
---|
statuteCite | citns.statuteCite | string |
citns / citnNo
Field name | Full field name | Type |
---|
citnNo | citns.citnNo | string |
citns / depositAmt
Field name | Full field name | Type |
---|
depositAmt | citns.depositAmt | string |
citns / depositType
Field name | Full field name | Type |
---|
depositType | citns.depositType | string |
citns / descr
Field name | Full field name | Type |
---|
descr | citns.descr | string |
citns / appearTime
Field name | Full field name | Type |
---|
appearTime | citns.appearTime | string |
citns / appearDate
Field name | Full field name | Type |
---|
appearDate | citns.appearDate | timestamp |
citns / balDue
Field name | Full field name | Type |
---|
balDue | citns.balDue | string |
citns / vehicleIdNo
Field name | Full field name | Type |
---|
vehicleIdNo | citns.vehicleIdNo | string |
citns / fineForfAmt
Field name | Full field name | Type |
---|
fineForfAmt | citns.fineForfAmt | string |
citns / ordStatuteFlag
Field name | Full field name | Type |
---|
ordStatuteFlag | citns.ordStatuteFlag | string |
citns / isMandatoryAppear
Field name | Full field name | Type |
---|
isMandatoryAppear | citns.isMandatoryAppear | boolean |
citns / offenseDate
Field name | Full field name | Type |
---|
offenseDate | citns.offenseDate | timestamp |
citns / vehLicState
Field name | Full field name | Type |
---|
vehLicState | citns.vehLicState | string |
citns / citnVin
Field name | Full field name | Type |
---|
citnVin | citns.citnVin | string |
citns / vehLicYear
Field name | Full field name | Type |
---|
vehLicYear | citns.vehLicYear | integer |
citns / mphOver
Field name | Full field name | Type |
---|
mphOver | citns.mphOver | integer |
citns / severity
Field name | Full field name | Type |
---|
severity | citns.severity | record |
citns / severity / sevClsCode
Field name | Full field name | Type |
---|
sevClsCode | citns.severity.sevClsCode | string |
citns / severity / isActive
Field name | Full field name | Type |
---|
isActive | citns.severity.isActive | boolean |
citns / severity / descr
Field name | Full field name | Type |
---|
descr | citns.severity.descr | string |
citns / officer
Field name | Full field name | Type |
---|
officer | citns.officer | record |
citns / officer / officerId
Field name | Full field name | Type |
---|
officerId | citns.officer.officerId | string |
citns / officer / countyNo
Field name | Full field name | Type |
---|
countyNo | citns.officer.countyNo | integer |
citns / officer / issAgencyNo
Field name | Full field name | Type |
---|
issAgencyNo | citns.officer.issAgencyNo | integer |
citns / officer / name
Field name | Full field name | Type |
---|
name | citns.officer.name | record |
citns / officer / name / first
Field name | Full field name | Type |
---|
first | citns.officer.name.first | string |
citns / officer / name / middle
Field name | Full field name | Type |
---|
middle | citns.officer.name.middle | string |
citns / officer / name / last
Field name | Full field name | Type |
---|
last | citns.officer.name.last | string |
citns / officer / name / suffix
Field name | Full field name | Type |
---|
suffix | citns.officer.name.suffix | string |
citns / officer / expDate
Field name | Full field name | Type |
---|
expDate | citns.officer.expDate | timestamp |
citns / officer / effDate
Field name | Full field name | Type |
---|
effDate | citns.officer.effDate | timestamp |
citns / issAgency
Field name | Full field name | Type |
---|
issAgency | citns.issAgency | record |
citns / issAgency / countyNo
Field name | Full field name | Type |
---|
countyNo | citns.issAgency.countyNo | integer |
citns / issAgency / name
Field name | Full field name | Type |
---|
name | citns.issAgency.name | string |
citns / issAgency / ncicAgencyId
Field name | Full field name | Type |
---|
ncicAgencyId | citns.issAgency.ncicAgencyId | string |
citns / issAgency / issAgencyNo
Field name | Full field name | Type |
---|
issAgencyNo | citns.issAgency.issAgencyNo | integer |
citns / issAgency / isUWSystem
Field name | Full field name | Type |
---|
isUWSystem | citns.issAgency.isUWSystem | boolean |
citns / issAgency / isBookingAgency
Field name | Full field name | Type |
---|
isBookingAgency | citns.issAgency.isBookingAgency | boolean |
citns / plntfAgency
Field name | Full field name | Type |
---|
plntfAgency | citns.plntfAgency | record |
citns / plntfAgency / plntfAgencyNo
Field name | Full field name | Type |
---|
plntfAgencyNo | citns.plntfAgency.plntfAgencyNo | integer |
citns / plntfAgency / plntfAgencyType
Field name | Full field name | Type |
---|
plntfAgencyType | citns.plntfAgency.plntfAgencyType | string |
citns / plntfAgency / countyNo
Field name | Full field name | Type |
---|
countyNo | citns.plntfAgency.countyNo | integer |
citns / plntfAgency / name
Field name | Full field name | Type |
---|
name | citns.plntfAgency.name | string |
citns / plntfAgency / addr
Field name | Full field name | Type |
---|
addr | citns.plntfAgency.addr | record |
citns / plntfAgency / addr / streetLine1
Field name | Full field name | Type |
---|
streetLine1 | citns.plntfAgency.addr.streetLine1 | string |
citns / plntfAgency / addr / streetLine2
Field name | Full field name | Type |
---|
streetLine2 | citns.plntfAgency.addr.streetLine2 | string |
citns / plntfAgency / addr / city
Field name | Full field name | Type |
---|
city | citns.plntfAgency.addr.city | string |
citns / plntfAgency / addr / state
Field name | Full field name | Type |
---|
state | citns.plntfAgency.addr.state | string |
citns / plntfAgency / addr / zip
Field name | Full field name | Type |
---|
zip | citns.plntfAgency.addr.zip | string |
citns / plntfAgency / addr / country
Field name | Full field name | Type |
---|
country | citns.plntfAgency.addr.country | string |
citns / plntfAgency / isMandatoryAppear
Field name | Full field name | Type |
---|
isMandatoryAppear | citns.plntfAgency.isMandatoryAppear | boolean |
citns / plntfAgency / severity
Field name | Full field name | Type |
---|
severity | citns.plntfAgency.severity | record |
citns / plntfAgency / severity / sevClsCode
Field name | Full field name | Type |
---|
sevClsCode | citns.plntfAgency.severity.sevClsCode | string |
citns / plntfAgency / severity / isActive
Field name | Full field name | Type |
---|
isActive | citns.plntfAgency.severity.isActive | boolean |
citns / plntfAgency / severity / descr
Field name | Full field name | Type |
---|
descr | citns.plntfAgency.severity.descr | string |
citns / plntfAgency / appearDate
Field name | Full field name | Type |
---|
appearDate | citns.plntfAgency.appearDate | timestamp |
citns / plntfAgency / vehLicYear
Field name | Full field name | Type |
---|
vehLicYear | citns.plntfAgency.vehLicYear | integer |
citns / plntfAgency / ordStatuteFlag
Field name | Full field name | Type |
---|
ordStatuteFlag | citns.plntfAgency.ordStatuteFlag | string |
civilJdgmts
Field name | Full field name | Type |
---|
civilJdgmts | civilJdgmts | record |
civilJdgmts / timeDkted
Field name | Full field name | Type |
---|
timeDkted | civilJdgmts.timeDkted | string |
civilJdgmts / svcDateTo
Field name | Full field name | Type |
---|
svcDateTo | civilJdgmts.svcDateTo | timestamp |
civilJdgmts / typeOfTax
Field name | Full field name | Type |
---|
typeOfTax | civilJdgmts.typeOfTax | string |
civilJdgmts / satisEventType
Field name | Full field name | Type |
---|
satisEventType | civilJdgmts.satisEventType | record |
civilJdgmts / satisEventType / civilEventType
Field name | Full field name | Type |
---|
civilEventType | civilJdgmts.satisEventType.civilEventType | string |
civilJdgmts / satisEventType / isActive
Field name | Full field name | Type |
---|
isActive | civilJdgmts.satisEventType.isActive | boolean |
civilJdgmts / satisEventType / descr
Field name | Full field name | Type |
---|
descr | civilJdgmts.satisEventType.descr | string |
civilJdgmts / dbtr
Field name | Full field name | Type |
---|
dbtr | civilJdgmts.dbtr | record |
civilJdgmts / dbtr / first
Field name | Full field name | Type |
---|
first | civilJdgmts.dbtr.first | string |
civilJdgmts / dbtr / middle
Field name | Full field name | Type |
---|
middle | civilJdgmts.dbtr.middle | string |
civilJdgmts / dbtr / last
Field name | Full field name | Type |
---|
last | civilJdgmts.dbtr.last | string |
civilJdgmts / dbtr / suffix
Field name | Full field name | Type |
---|
suffix | civilJdgmts.dbtr.suffix | string |
civilJdgmts / jdgmtDate
Field name | Full field name | Type |
---|
jdgmtDate | civilJdgmts.jdgmtDate | timestamp |
civilJdgmts / fullSatisDate
Field name | Full field name | Type |
---|
fullSatisDate | civilJdgmts.fullSatisDate | timestamp |
civilJdgmts / civilJdgmtSeqNo
Field name | Full field name | Type |
---|
civilJdgmtSeqNo | civilJdgmts.civilJdgmtSeqNo | integer |
civilJdgmts / totAmt
Field name | Full field name | Type |
---|
totAmt | civilJdgmts.totAmt | string |
civilJdgmts / satisfaction
Field name | Full field name | Type |
---|
satisfaction | civilJdgmts.satisfaction | string |
civilJdgmts / dateDkted
Field name | Full field name | Type |
---|
dateDkted | civilJdgmts.dateDkted | timestamp |
civilJdgmts / parties
Field name | Full field name | Type |
---|
parties | civilJdgmts.parties | record |
civilJdgmts / parties / jdgmtPartyStatus
Field name | Full field name | Type |
---|
jdgmtPartyStatus | civilJdgmts.parties.jdgmtPartyStatus | string |
civilJdgmts / parties / fingerPrintId
Field name | Full field name | Type |
---|
fingerPrintId | civilJdgmts.parties.fingerPrintId | string |
civilJdgmts / parties / addr
Field name | Full field name | Type |
---|
addr | civilJdgmts.parties.addr | record |
civilJdgmts / parties / addr / streetLine1
Field name | Full field name | Type |
---|
streetLine1 | civilJdgmts.parties.addr.streetLine1 | string |
civilJdgmts / parties / addr / streetLine2
Field name | Full field name | Type |
---|
streetLine2 | civilJdgmts.parties.addr.streetLine2 | string |
civilJdgmts / parties / addr / city
Field name | Full field name | Type |
---|
city | civilJdgmts.parties.addr.city | string |
civilJdgmts / parties / addr / state
Field name | Full field name | Type |
---|
state | civilJdgmts.parties.addr.state | string |
civilJdgmts / parties / addr / zip
Field name | Full field name | Type |
---|
zip | civilJdgmts.parties.addr.zip | string |
civilJdgmts / parties / addr / country
Field name | Full field name | Type |
---|
country | civilJdgmts.parties.addr.country | string |
civilJdgmts / parties / isReleased
Field name | Full field name | Type |
---|
isReleased | civilJdgmts.parties.isReleased | boolean |
civilJdgmts / parties / partyType
Field name | Full field name | Type |
---|
partyType | civilJdgmts.parties.partyType | record |
civilJdgmts / parties / partyType / dbtrCrdtr
Field name | Full field name | Type |
---|
dbtrCrdtr | civilJdgmts.parties.partyType.dbtrCrdtr | string |
civilJdgmts / parties / partyType / jdgmtPartyType
Field name | Full field name | Type |
---|
jdgmtPartyType | civilJdgmts.parties.partyType.jdgmtPartyType | string |
civilJdgmts / parties / partyType / isActive
Field name | Full field name | Type |
---|
isActive | civilJdgmts.parties.partyType.isActive | boolean |
civilJdgmts / parties / partyType / descr
Field name | Full field name | Type |
---|
descr | civilJdgmts.parties.partyType.descr | string |
civilJdgmts / parties / name
Field name | Full field name | Type |
---|
name | civilJdgmts.parties.name | record |
civilJdgmts / parties / name / first
Field name | Full field name | Type |
---|
first | civilJdgmts.parties.name.first | string |
civilJdgmts / parties / name / middle
Field name | Full field name | Type |
---|
middle | civilJdgmts.parties.name.middle | string |
civilJdgmts / parties / name / last
Field name | Full field name | Type |
---|
last | civilJdgmts.parties.name.last | string |
civilJdgmts / parties / name / suffix
Field name | Full field name | Type |
---|
suffix | civilJdgmts.parties.name.suffix | string |
civilJdgmts / parties / attyName
Field name | Full field name | Type |
---|
attyName | civilJdgmts.parties.attyName | record |
civilJdgmts / parties / attyName / first
Field name | Full field name | Type |
---|
first | civilJdgmts.parties.attyName.first | string |
civilJdgmts / parties / attyName / middle
Field name | Full field name | Type |
---|
middle | civilJdgmts.parties.attyName.middle | string |
civilJdgmts / parties / attyName / last
Field name | Full field name | Type |
---|
last | civilJdgmts.parties.attyName.last | string |
civilJdgmts / parties / attyName / suffix
Field name | Full field name | Type |
---|
suffix | civilJdgmts.parties.attyName.suffix | string |
civilJdgmts / hasMultipleDbtrs
Field name | Full field name | Type |
---|
hasMultipleDbtrs | civilJdgmts.hasMultipleDbtrs | boolean |
civilJdgmts / svcDateFrom
Field name | Full field name | Type |
---|
svcDateFrom | civilJdgmts.svcDateFrom | timestamp |
civilJdgmts / dorWarrantNo
Field name | Full field name | Type |
---|
dorWarrantNo | civilJdgmts.dorWarrantNo | string |
civilJdgmts / lienType
Field name | Full field name | Type |
---|
lienType | civilJdgmts.lienType | record |
civilJdgmts / lienType / isActive
Field name | Full field name | Type |
---|
isActive | civilJdgmts.lienType.isActive | boolean |
civilJdgmts / lienType / descr
Field name | Full field name | Type |
---|
descr | civilJdgmts.lienType.descr | string |
civilJdgmts / lienType / jdgmtLienType
Field name | Full field name | Type |
---|
jdgmtLienType | civilJdgmts.lienType.jdgmtLienType | string |
civilJdgmts / monies
Field name | Full field name | Type |
---|
monies | civilJdgmts.monies | record |
civilJdgmts / monies / moneyCode
Field name | Full field name | Type |
---|
moneyCode | civilJdgmts.monies.moneyCode | record |
civilJdgmts / monies / moneyCode / civilMoneyCode
Field name | Full field name | Type |
---|
civilMoneyCode | civilJdgmts.monies.moneyCode.civilMoneyCode | string |
civilJdgmts / monies / moneyCode / isActive
Field name | Full field name | Type |
---|
isActive | civilJdgmts.monies.moneyCode.isActive | boolean |
civilJdgmts / monies / moneyCode / descr
Field name | Full field name | Type |
---|
descr | civilJdgmts.monies.moneyCode.descr | string |
civilJdgmts / monies / amt
Field name | Full field name | Type |
---|
amt | civilJdgmts.monies.amt | string |
civilJdgmts / propertyDescr
Field name | Full field name | Type |
---|
propertyDescr | civilJdgmts.propertyDescr | string |
civilJdgmts / events
Field name | Full field name | Type |
---|
events | civilJdgmts.events | record |
civilJdgmts / events / date
Field name | Full field name | Type |
---|
date | civilJdgmts.events.date | timestamp |
civilJdgmts / events / eventType
Field name | Full field name | Type |
---|
eventType | civilJdgmts.events.eventType | record |
civilJdgmts / events / eventType / civilEventType
Field name | Full field name | Type |
---|
civilEventType | civilJdgmts.events.eventType.civilEventType | string |
civilJdgmts / events / eventType / isActive
Field name | Full field name | Type |
---|
isActive | civilJdgmts.events.eventType.isActive | boolean |
civilJdgmts / events / eventType / descr
Field name | Full field name | Type |
---|
descr | civilJdgmts.events.eventType.descr | string |
civilJdgmts / events / satisfactionAmt
Field name | Full field name | Type |
---|
satisfactionAmt | civilJdgmts.events.satisfactionAmt | timestamp |
courtRecord
Field name | Full field name | Type |
---|
courtRecord | courtRecord | record |
courtRecord / eventDate
Field name | Full field name | Type |
---|
eventDate | courtRecord.eventDate | timestamp |
courtRecord / histSeqNo
Field name | Full field name | Type |
---|
histSeqNo | courtRecord.histSeqNo | integer |
courtRecord / tag
Field name | Full field name | Type |
---|
tag | courtRecord.tag | string |
courtRecord / countyNo
Field name | Full field name | Type |
---|
countyNo | courtRecord.countyNo | integer |
courtRecord / caseNo
Field name | Full field name | Type |
---|
caseNo | courtRecord.caseNo | string |
courtRecord / eventType
Field name | Full field name | Type |
---|
eventType | courtRecord.eventType | record |
courtRecord / eventType / eventType
Field name | Full field name | Type |
---|
eventType | courtRecord.eventType.eventType | string |
courtRecord / eventType / descr
Field name | Full field name | Type |
---|
descr | courtRecord.eventType.descr | string |
courtRecord / eventType / isActive
Field name | Full field name | Type |
---|
isActive | courtRecord.eventType.isActive | boolean |
courtRecord / descr
Field name | Full field name | Type |
---|
descr | courtRecord.descr | string |
courtRecord / ctofc
Field name | Full field name | Type |
---|
ctofc | courtRecord.ctofc | record |
courtRecord / ctofc / first
Field name | Full field name | Type |
---|
first | courtRecord.ctofc.first | string |
courtRecord / ctofc / middle
Field name | Full field name | Type |
---|
middle | courtRecord.ctofc.middle | string |
courtRecord / ctofc / last
Field name | Full field name | Type |
---|
last | courtRecord.ctofc.last | string |
courtRecord / ctofc / suffix
Field name | Full field name | Type |
---|
suffix | courtRecord.ctofc.suffix | string |
courtRecord / sealCtofc
Field name | Full field name | Type |
---|
sealCtofc | courtRecord.sealCtofc | record |
courtRecord / sealCtofc / first
Field name | Full field name | Type |
---|
first | courtRecord.sealCtofc.first | string |
courtRecord / sealCtofc / middle
Field name | Full field name | Type |
---|
middle | courtRecord.sealCtofc.middle | string |
courtRecord / sealCtofc / last
Field name | Full field name | Type |
---|
last | courtRecord.sealCtofc.last | string |
courtRecord / sealCtofc / suffix
Field name | Full field name | Type |
---|
suffix | courtRecord.sealCtofc.suffix | string |
courtRecord / courtRptr
Field name | Full field name | Type |
---|
courtRptr | courtRecord.courtRptr | record |
courtRecord / courtRptr / first
Field name | Full field name | Type |
---|
first | courtRecord.courtRptr.first | string |
courtRecord / courtRptr / middle
Field name | Full field name | Type |
---|
middle | courtRecord.courtRptr.middle | string |
courtRecord / courtRptr / last
Field name | Full field name | Type |
---|
last | courtRecord.courtRptr.last | string |
courtRecord / courtRptr / suffix
Field name | Full field name | Type |
---|
suffix | courtRecord.courtRptr.suffix | string |
courtRecord / sealCtofcTypeCodeDescr
Field name | Full field name | Type |
---|
sealCtofcTypeCodeDescr | courtRecord.sealCtofcTypeCodeDescr | string |
courtRecord / dktTxt
Field name | Full field name | Type |
---|
dktTxt | courtRecord.dktTxt | string |
courtRecord / eventAmt
Field name | Full field name | Type |
---|
eventAmt | courtRecord.eventAmt | string |
courtRecord / isMoneyEnabled
Field name | Full field name | Type |
---|
isMoneyEnabled | courtRecord.isMoneyEnabled | boolean |
courtRecord / isPetitionerSeal
Field name | Full field name | Type |
---|
isPetitionerSeal | courtRecord.isPetitionerSeal | boolean |
courtRecord / parties
Field name | Full field name | Type |
---|
parties | courtRecord.parties | record |
courtRecord / parties / partyName
Field name | Full field name | Type |
---|
partyName | courtRecord.parties.partyName | record |
courtRecord / parties / partyName / first
Field name | Full field name | Type |
---|
first | courtRecord.parties.partyName.first | string |
courtRecord / parties / partyName / middle
Field name | Full field name | Type |
---|
middle | courtRecord.parties.partyName.middle | string |
courtRecord / parties / partyName / last
Field name | Full field name | Type |
---|
last | courtRecord.parties.partyName.last | string |
courtRecord / parties / partyName / suffix
Field name | Full field name | Type |
---|
suffix | courtRecord.parties.partyName.suffix | string |
courtRecord / parties / isAddrSealed
Field name | Full field name | Type |
---|
isAddrSealed | courtRecord.parties.isAddrSealed | boolean |
courtRecord / parties / isSeal
Field name | Full field name | Type |
---|
isSeal | courtRecord.parties.isSeal | boolean |
dispoHist
Field name | Full field name | Type |
---|
dispoHist | dispoHist | record |
dispoHist / dispEvent
Field name | Full field name | Type |
---|
dispEvent | dispoHist.dispEvent | record |
dispoHist / dispEvent / eventType
Field name | Full field name | Type |
---|
eventType | dispoHist.dispEvent.eventType | string |
dispoHist / dispEvent / isActive
Field name | Full field name | Type |
---|
isActive | dispoHist.dispEvent.isActive | boolean |
dispoHist / dispEvent / descr
Field name | Full field name | Type |
---|
descr | dispoHist.dispEvent.descr | string |
dispoHist / dispCtofcNo
Field name | Full field name | Type |
---|
dispCtofcNo | dispoHist.dispCtofcNo | string |
dispoHist / dispoCode
Field name | Full field name | Type |
---|
dispoCode | dispoHist.dispoCode | string |
dispoHist / wcisClass
Field name | Full field name | Type |
---|
wcisClass | dispoHist.wcisClass | record |
dispoHist / wcisClass / caseType
Field name | Full field name | Type |
---|
caseType | dispoHist.wcisClass.caseType | string |
dispoHist / wcisClass / wcisClsCode
Field name | Full field name | Type |
---|
wcisClsCode | dispoHist.wcisClass.wcisClsCode | string |
dispoHist / wcisClass / descr
Field name | Full field name | Type |
---|
descr | dispoHist.wcisClass.descr | string |
dispo
Field name | Full field name | Type |
---|
dispo | dispo | record |
dispo / dispCtofcNo
Field name | Full field name | Type |
---|
dispCtofcNo | dispo.dispCtofcNo | string |
dispo / dispoCode
Field name | Full field name | Type |
---|
dispoCode | dispo.dispoCode | string |
dispo / dispEvent
Field name | Full field name | Type |
---|
dispEvent | dispo.dispEvent | record |
dispo / dispEvent / eventType
Field name | Full field name | Type |
---|
eventType | dispo.dispEvent.eventType | string |
dispo / dispEvent / isActive
Field name | Full field name | Type |
---|
isActive | dispo.dispEvent.isActive | boolean |
dispo / dispEvent / descr
Field name | Full field name | Type |
---|
descr | dispo.dispEvent.descr | string |
dispo / wcisClass
Field name | Full field name | Type |
---|
wcisClass | dispo.wcisClass | record |
dispo / wcisClass / caseType
Field name | Full field name | Type |
---|
caseType | dispo.wcisClass.caseType | string |
dispo / wcisClass / wcisClsCode
Field name | Full field name | Type |
---|
wcisClsCode | dispo.wcisClass.wcisClsCode | string |
dispo / wcisClass / descr
Field name | Full field name | Type |
---|
descr | dispo.wcisClass.descr | string |
issuingAgencyNo
Field name | Full field name | Type |
---|
issuingAgencyNo | issuingAgencyNo | integer |
oldCaseNo
Field name | Full field name | Type |
---|
oldCaseNo | oldCaseNo | string |
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