542 lines
9.5 KiB
JavaScript
542 lines
9.5 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 michiganCourts = [
|
|
{
|
|
circuit: "1st",
|
|
counties: ["Hillsdale"],
|
|
},
|
|
{
|
|
circuit: "2nd",
|
|
counties: ["Berrien"],
|
|
},
|
|
{
|
|
circuit: "3rd",
|
|
counties: ["Wayne"],
|
|
},
|
|
{
|
|
circuit: "4th",
|
|
counties: ["Jackson"],
|
|
},
|
|
{
|
|
circuit: "5th",
|
|
counties: ["Barry"],
|
|
},
|
|
{
|
|
circuit: "6th",
|
|
counties: ["Oakland"],
|
|
},
|
|
{
|
|
circuit: "7th",
|
|
counties: ["Genesee"],
|
|
},
|
|
{
|
|
circuit: "8th",
|
|
counties: ["Ionia", "Montcalm"],
|
|
},
|
|
{
|
|
circuit: "9th",
|
|
counties: ["Kalamazoo"],
|
|
},
|
|
{
|
|
circuit: "10th",
|
|
counties: ["Saginaw"],
|
|
},
|
|
{
|
|
circuit: "11th",
|
|
counties: ["Alger", "Luce", "Mackinac", "Schoolcraft"],
|
|
},
|
|
{
|
|
circuit: "12th",
|
|
counties: ["Baraga", "Houghton", "Keweenaw"],
|
|
},
|
|
{
|
|
circuit: "13th",
|
|
counties: ["Antrim", "Leelanau", "Grand Traverse"],
|
|
},
|
|
{
|
|
circuit: "14th",
|
|
counties: ["Muskegon"],
|
|
},
|
|
{
|
|
circuit: "15th",
|
|
counties: ["Branch"],
|
|
},
|
|
{
|
|
circuit: "16th",
|
|
counties: ["Macomb"],
|
|
},
|
|
{
|
|
circuit: "17th",
|
|
counties: ["Kent"],
|
|
},
|
|
{
|
|
circuit: "18th",
|
|
counties: ["Bay"],
|
|
},
|
|
{
|
|
circuit: "19th",
|
|
counties: ["Benzie", "Manistee"],
|
|
},
|
|
{
|
|
circuit: "20th",
|
|
counties: ["Ottawa"],
|
|
},
|
|
{
|
|
circuit: "21st",
|
|
counties: ["Isabella"],
|
|
},
|
|
{
|
|
circuit: "22nd",
|
|
counties: ["Washtenaw"],
|
|
},
|
|
{
|
|
circuit: "23rd",
|
|
counties: ["Alcona", "Arenac", "Iosco", "Oscoda"],
|
|
},
|
|
{
|
|
circuit: "24th",
|
|
counties: ["Sanilac"],
|
|
},
|
|
{
|
|
circuit: "25th",
|
|
counties: ["Marquette"],
|
|
},
|
|
{
|
|
circuit: "26th",
|
|
counties: ["Alpena", "Montmorency"],
|
|
},
|
|
{
|
|
circuit: "27th",
|
|
counties: ["Lake", "Newaygo"],
|
|
},
|
|
{
|
|
circuit: "28th",
|
|
counties: ["Missaukee", "Wexford"],
|
|
},
|
|
{
|
|
circuit: "29th",
|
|
counties: ["Clinton", "Gratiot"],
|
|
},
|
|
{
|
|
circuit: "30th",
|
|
counties: ["Ingham"],
|
|
},
|
|
{
|
|
circuit: "31st",
|
|
counties: ["St. Clair"],
|
|
},
|
|
{
|
|
circuit: "32nd",
|
|
counties: ["Gogebic", "Ontonagon"],
|
|
},
|
|
{
|
|
circuit: "33rd",
|
|
counties: ["Charlevoix"],
|
|
},
|
|
{
|
|
circuit: "34th",
|
|
counties: ["Ogemaw", "Roscommon"],
|
|
},
|
|
{
|
|
circuit: "35th",
|
|
counties: ["Shiawasee"],
|
|
},
|
|
{
|
|
circuit: "36th",
|
|
counties: ["Van Buren"],
|
|
},
|
|
{
|
|
circuit: "37th",
|
|
counties: ["Calhoum"],
|
|
},
|
|
{
|
|
circuit: "38th",
|
|
counties: ["Monroe"],
|
|
},
|
|
{
|
|
circuit: "39th",
|
|
counties: ["Lenawee"],
|
|
},
|
|
{
|
|
circuit: "40th",
|
|
counties: ["Lapeer"],
|
|
},
|
|
{
|
|
circuit: "41st",
|
|
counties: ["Dickinson", "Iron", "Menominee"],
|
|
},
|
|
{
|
|
circuit: "42nd",
|
|
counties: ["Midland"],
|
|
},
|
|
{
|
|
circuit: "43rd",
|
|
counties: ["Cass"],
|
|
},
|
|
{
|
|
circuit: "44th",
|
|
counties: ["Livingston"],
|
|
},
|
|
{
|
|
circuit: "45th",
|
|
counties: ["St. Joseph"],
|
|
},
|
|
{
|
|
circuit: "45th",
|
|
counties: ["St. Joseph"],
|
|
},
|
|
{
|
|
circuit: "46th",
|
|
counties: ["Crawford", "Kalkaska", "Otsego"],
|
|
},
|
|
{
|
|
circuit: "47th",
|
|
counties: ["Delta"],
|
|
},
|
|
{
|
|
circuit: "49th",
|
|
counties: ["Mecosta", "Osceoloa"],
|
|
},
|
|
{
|
|
circuit: "51st",
|
|
counties: ["Mason", "Oceana"],
|
|
},
|
|
{
|
|
circuit: "52nd",
|
|
counties: ["Huron"],
|
|
},
|
|
{
|
|
circuit: "53rd",
|
|
counties: ["Cheboygan", "Presque Isle"],
|
|
},
|
|
{
|
|
circuit: "55th",
|
|
counties: ["Tuscola"],
|
|
},
|
|
{
|
|
circuit: "55th",
|
|
counties: ["Clare", "Gladwin"],
|
|
},
|
|
{
|
|
circuit: "56th",
|
|
counties: ["Eaton"],
|
|
},
|
|
{
|
|
circuit: "57th",
|
|
counties: ["Emmet"],
|
|
},
|
|
{
|
|
circuit: "50th",
|
|
counties: ["Chippewa"],
|
|
},
|
|
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
{
|
|
circuit: "",
|
|
counties: [""],
|
|
},
|
|
];
|
|
|
|
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" },
|
|
];
|