Resource

Resources are websites, articles, or other sources that we think are helpful for understanding the case. This can include in-depth case studies, law review articles discussing the case, or websites that post litigation documents beyond what we save in the Clearinghouse.

Each resource url endpoint returns a list of resources, where each resource is a JSON dictionary.

Example: a completely blank resource

When accessing the `api/v2p1/cases/case_id/resources/` endpoint.

{
  "next": null,
  "previous": null,
  "results": [
    {
      "file": null,
      "title": "",
      "author_role": null,
      "abstract": "",
      "author": "",
      "institution": "",
      "citation": "",
      "external_url": "",
      "display_date": "",
      "resource_types": [],
      "cases": [],
      "case_types": [],
      "date": null,
      "causes": [],
      "issues": [],
      "special_collections": [],
      "attorney_orgs": [],
      "source": "",
      "status": ""
    }
  ]
}

For more information:

Field
Type
Documentation (link)

file

string

title

string

author_role

string

abstract

string

author

string

institution

string

citation

string

external_url

string

display_date

string

resource_types

array[string]

cases

array[string]

case_types

array[string]

date

string

causes

array[string]

issues

array[string]

special_collections

array[string]

attorney_orgs

array[string]

source

string

status

string

Last updated