action unicourt_get_court_systems { label: "Court System Objects." description: "Returns the Court System 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 --> CourtSystemQueryObject\n" provider: unicourt method: GET path: "/masterData/courtSystem" encoding: json input: { type: "object" properties: { q: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["courtSystemArray", "nextPageAPI", "object", "pageNumber", "previousPageAPI", "totalCount", "totalPages"] properties: { courtSystemArray: { type: "array" items: { type: "object" required: ["object", "courtTypeId", "courtSystemId", "courtType", "name", "createdDate"] properties: { courtSystemId: { type: "string" } courtType: { 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." } name: { type: "string" } object: { 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." } } } }