action unicourt_get_appeal_courts_for_court { label: "Appeal Court Objects for given courtId." description: "Returns Appeal Court Objects for given courtId.\n" provider: unicourt method: GET path: "/masterData/court/{courtId}/appealCourts" encoding: json input: { type: "object" properties: { order: { type: "string" enum: ["asc", "desc"] } pageNumber: { type: "integer" } sort: { type: "string" enum: ["name"] } } additionalProperties: false } output: { type: "object" required: ["courtArray", "nextPageAPI", "object", "pageNumber", "previousPageAPI", "totalCount", "totalPages"] properties: { courtArray: { type: "array" items: { type: "object" required: ["object", "courtId", "courtTypeId", "courtSystemId", "type", "system", "name", "nameAka", "additionalLevels", "container", "containerType", "createdDate", "jurisdictionGeoForCourtAPI", "courtLocationsForCourtAPI", "appealCourtsForCourtAPI", "courtServiceStatusAPI"] properties: { additionalLevels: { type: "object" required: ["object", "level1", "level2", "level3", "level4"] properties: { level1: { type: "string" } level2: { type: "string" } level3: { type: "string" } level4: { type: "string" } object: { type: "string" } } } appealCourtsForCourtAPI: { type: "string" format: "uri" } container: { type: "string" } containerType: { type: "string" } courtId: { type: "string" } courtLocationsForCourtAPI: { type: "string" format: "uri" } courtServiceStatusAPI: { type: "string" format: "uri" } courtSystemId: { 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." } jurisdictionGeoForCourtAPI: { type: "string" format: "uri" } name: { type: "string" } nameAka: { type: "string" } object: { type: "string" } system: { type: "string" } type: { type: "string" } } } } nextPageAPI: { type: "string" format: "uri" description: "Link to next page." } object: { type: "string" } pageNumber: { type: "integer" } previousPageAPI: { type: "string" format: "uri" description: "Link to previous page." } totalCount: { type: "integer" description: "The number of matches that were found in the index." } totalPages: { type: "integer" description: "Total pages for matches that were found in the index." } } } }