Files
ax3Client/src/Constants/Fields/CreateCaseFields.js
Kenneth Jannette 5104fd67f7 more
2024-02-08 02:19:22 -06:00

186 lines
4.6 KiB
JavaScript

export const createCaseFields = {
caption: { required: true, maxLength: 45 },
captionTwo: { required: true, maxLength: 45 },
caseNumber: { required: true, maxLength: 45 },
judge: { required: true, maxLength: 45 },
plaintiffParties: { required: true, maxLength: 45 },
defendantParties: { required: true, maxLength: 45 },
jurisdiction: { required: true, maxLength: 45 },
venue: { required: true, maxLength: 45 },
trialDate: { required: true, maxLength: 45, type: "date" },
filedDate: { required: true, maxLength: 45, type: "date" },
lawFirm: { required: false, maxLength: 45 },
};
export const createCaseAdditionalFields = {
contactEmail: { required: true, maxLength: 45, type: "email" },
contactName: { required: true, maxLength: 45 },
clientPosition: { required: true, default: "Plaintiff" },
caseType: { required: true, maxLength: 45 },
billingCode: { required: true, maxLength: 45 },
leadAttorneys: { required: true, maxLength: 45 },
};
export const floridaCourts = [
{
circuit: "First",
counties: ["Escambia", "Okaloosa", "Santa Rosa", "Walton"],
},
{
circuit: "Second",
counties: [
"Franklin",
"Gadsden",
"Jefferson",
"Leon",
"Liberty",
"Wakulla",
],
},
{
circuit: "Third",
counties: [
"Columbia",
"Dixie",
"Hamilton",
"Lafayette",
"Madison",
"Suwannee",
"Taylor",
],
},
{
circuit: "Fourth",
counties: ["Clay", "Duval", "Nassau"],
},
{
circuit: "Fifth",
counties: ["Citrus", "Hernando", "Lake", "Marion", "Sumter"],
},
{
circuit: "Sixth",
counties: ["Pasco", "Pinellas"],
},
{
circuit: "Seventh",
counties: ["Flagler", "Putnam", "St. Johns", "Volusia"],
},
{
circuit: "Eigth",
counties: ["Alachua", "Baker", "Bradford", "Gilchrist", "Levy", "Union"],
},
{
circuit: "Ninth",
counties: ["Orange", "Osceola"],
},
{
circuit: "Tenth",
counties: ["Hardee", "Highlands", "Polk"],
},
{
circuit: "Eleventh",
counties: ["Miami-Dade"],
},
{
circuit: "Twelfth",
counties: ["DeSoto", "Manatee", "Sarasota"],
},
{
circuit: "Thirteenth",
counties: ["Hillsborough"],
},
{
circuit: "Fourteenth",
counties: ["Bay", "Calhoun", "Gulf", "Holmes", "Jackson", "Washington"],
},
{
circuit: "Fifteenth",
counties: ["Palm Beach"],
},
{
circuit: "Sixteenth",
counties: ["Monroe"],
},
{
circuit: "Seventeenth",
counties: ["Broward"],
},
{
circuit: "Eighteenth",
counties: ["Brevard", "Seminole"],
},
{
circuit: "Nineteenth",
counties: ["Indian River", "Martin", "Okeechobee", "St. Lucie"],
},
{
circuit: "Twentieth",
counties: ["Charlotte", "Collier", "Glades", "Hendry", "Lee"],
},
];
export const newYorkCounties = [
{ name: "Albany County" },
{ name: "Allegany County" },
{ name: "Bronx County" },
{ name: "Broome County" },
{ name: "Cattaraugus County" },
{ name: "Cayuga County" },
{ name: "Chautauqua County" },
{ name: "Chemung County" },
{ name: "Chenango County" },
{ name: "Clinton County" },
{ name: "Columbia County" },
{ name: "Cortland County" },
{ name: "Delaware County" },
{ name: "Dutchess County" },
{ name: "Erie County" },
{ name: "Essex County" },
{ name: "Franklin County" },
{ name: "Fulton County" },
{ name: "Genesee County" },
{ name: "Greene County" },
{ name: "Hamilton County" },
{ name: "Herkimer County" },
{ name: "Jefferson County" },
{ name: "Kings County" },
{ name: "Lewis County" },
{ name: "Livingston County" },
{ name: "Madison County" },
{ name: "Monroe County" },
{ name: "Montgomery County" },
{ name: "Nassau County" },
{ name: "New York County " },
{ name: "Niagara County" },
{ name: "Oneida County" },
{ name: "Onondaga County" },
{ name: "Ontario County" },
{ anme: "Orange County" },
{ name: "Orleans County" },
{ name: "Oswego County" },
{ name: "Otsego County" },
{ name: "Putnam County" },
{ name: "Queens County" },
{ name: "Rensselaer County" },
{ name: "Richmond County" },
{ name: "Rockland County" },
{ name: "Saint Lawrence County" },
{ name: "Saratoga County" },
{ name: "Schenectady County" },
{ name: "Schoharie County" },
{ name: "Schuyler County" },
{ name: "Seneca County" },
{ name: "Steuben County" },
{ name: "Suffolk County" },
{ name: "Sullivan County" },
{ name: "Tioga County" },
{ name: "Tompkins County" },
{ name: "Ulster County" },
{ name: "Warren County" },
{ name: "Washington County" },
{ name: "Wayne County" },
{ name: "Westchester County" },
{ name: "Wyoming County" },
{ name: "Yates County" },
];