action unicourt_get_court_location { label: "Courthouse Object for given Court Location Id." description: "Contains the Court Location Object.\n" provider: unicourt method: GET path: "/masterData/courtLocation/{courtLocationId}" encoding: json output: { type: "object" required: ["city", "courtLocationId", "courtServiceStatusAPI", "courtsForCourtLocationAPI", "createdDate", "name", "object", "stateName", "streetAddress1", "streetAddress2"] properties: { city: { type: "string" description: "City" } courtLocationId: { type: "string" } courtServiceStatusAPI: { type: "string" format: "uri" } courtsForCourtLocationAPI: { type: "string" format: "uri" } 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" } stateName: { type: "string" description: "State Name if present else default value." } streetAddress1: { type: "string" description: "1st part of the street address." } streetAddress2: { type: "string" description: "2nd part of the street address." } } } }