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