action unicourt_get_court_system { label: "Court System Object for given courtSystemId." description: "Contains the Court System object.\n" provider: unicourt method: GET path: "/masterData/courtSystem/{courtSystemId}" encoding: json output: { type: "object" required: ["courtSystemId", "courtType", "courtTypeId", "createdDate", "name", "object"] properties: { courtSystemId: { type: "string" } courtType: { type: "string" } 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" } } } }