action unicourt_get_jurisdiction_geo_for_court { label: "Jurisdiction Geo Objects for given courtId." description: "Returns Jurisdiction Geo Objects for given courtId.\n" provider: unicourt method: GET path: "/masterData/court/{courtId}/jurisdictionGeo" encoding: json input: { type: "object" properties: { order: { type: "string" enum: ["asc", "desc"] } pageNumber: { type: "integer" } sort: { type: "string" enum: ["state"] } } additionalProperties: false } output: { type: "object" required: ["jurisdictionGeoArray", "nextPageAPI", "object", "pageNumber", "previousPageAPI", "totalCount", "totalPages"] properties: { jurisdictionGeoArray: { type: "array" items: { type: "object" required: ["object", "jurisdictionGeoId", "country", "createdDate", "state", "county", "city", "fipsCode", "zipCodeArray", "courtsForJurisdictionGeoAPI"] properties: { city: { type: "string" } country: { type: "string" } county: { type: "string" } courtsForJurisdictionGeoAPI: { 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." } fipsCode: { type: "string" } jurisdictionGeoId: { type: "string" } object: { type: "string" } state: { type: "string" } zipCodeArray: { type: "array" items: { type: "string" } } } } } nextPageAPI: { type: "string" format: "uri" description: "Link to next page." } object: { type: "string" } pageNumber: { type: "integer" description: "Page number for which results where obtained." } previousPageAPI: { type: "string" format: "uri" description: "Link to previous page." } totalCount: { type: "integer" description: "Total number of matches found." } totalPages: { type: "integer" description: "Total number of pages to obtain all the objects." } } } }