action unicourt_get_courts { label: "Court Objects." description: "Returns the court information.\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 --> CourtQueryObject\n" provider: unicourt method: GET path: "/masterData/court" encoding: json input: { type: "object" properties: { q: { type: "string" } } 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." } } } }