action unicourt_get_case_class { label: "Case Class Object for the given Case Class Id." description: "Case Class for the given Case Class Id.\n" provider: unicourt method: GET path: "/masterData/caseClass/{caseClassId}" encoding: json output: { type: "object" required: ["caseClassId", "createdDate", "name", "object"] properties: { caseClassId: { type: "string" } createdDate: { type: "string" format: "date-time" description: "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS." } name: { type: "string" } object: { type: "string" } } } }