CourtListener · Schema
Court
US Court record
LegalCourt DataCase LawPACERJudicialCitationsOral ArgumentsFederal CourtsState CourtsOpen Data
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| resource_uri | string | |
| pacer_court_id | integer | |
| fjc_court_id | string | |
| date_modified | string | |
| in_use | boolean | |
| has_opinion_scraper | boolean | |
| has_oral_argument_scraper | boolean | |
| position | number | |
| citation_string | string | |
| short_name | string | |
| full_name | string | |
| url | string | |
| start_date | string | |
| end_date | string | |
| jurisdiction | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.courtlistener.com/schemas/court.json",
"title": "Court",
"type": "object",
"description": "US Court record",
"properties": {
"id": {
"type": "string"
},
"resource_uri": {
"type": "string",
"format": "uri"
},
"pacer_court_id": {
"type": "integer",
"nullable": true
},
"fjc_court_id": {
"type": "string"
},
"date_modified": {
"type": "string",
"format": "date-time"
},
"in_use": {
"type": "boolean"
},
"has_opinion_scraper": {
"type": "boolean"
},
"has_oral_argument_scraper": {
"type": "boolean"
},
"position": {
"type": "number"
},
"citation_string": {
"type": "string"
},
"short_name": {
"type": "string"
},
"full_name": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
},
"start_date": {
"type": "string",
"format": "date",
"nullable": true
},
"end_date": {
"type": "string",
"format": "date",
"nullable": true
},
"jurisdiction": {
"type": "string"
}
}
}