action unicourt_get_attorney_type { label: "Attorney Type Object for given Attorney Type Id." description: "Attorney Type Object for given Attorney Type Id.\n" provider: unicourt method: GET path: "/masterData/attorneyType/{attorneyTypeId}" encoding: json output: { type: "object" required: ["attorneyTypeId", "createdDate", "name", "object"] properties: { attorneyTypeId: { 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" } } } }