action unicourt_get_jurisdictions_geo { label: "Jurisdiction Geo Object." description: "Returns the Jurisdiction Geo Object.\n\n## Logical Operators\n| Connector | Description | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR** |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> JurisdictionGeoQueryObject\n" provider: unicourt method: GET path: "/masterData/jurisdictionGeo" encoding: json input: { type: "object" properties: { q: { type: "string" } 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." } } } }