crs1_Defendants

This section lists each defendant's name and whether the defendant was named in the complaint and/or in the settlement.

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
DefendantName string The name of the defendant, or respondent associated with the Enforcement Action.
NamedInComplaint string A flag that indicates whether the Defendant or Respondent was named in the filed complaint.
NamedInSettlement string A flag that indicates whether the Defendant or Respondent was named in the Final Order.
View JSON Schema on GitHub

JSON Schema

echo-case-crs1-defendants-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/echo-case-crs1-defendants-schema.json",
  "title": "crs1_Defendants",
  "description": "This section lists each defendant's name and whether the defendant was named in the complaint and/or in the settlement.",
  "type": "object",
  "properties": {
    "DefendantName": {
      "description": "The name of the defendant, or respondent associated with the Enforcement Action.",
      "example": "AMERICAN CYANAMID COMPANY",
      "title": "Defendant Name",
      "type": "string"
    },
    "NamedInComplaint": {
      "description": "A flag that indicates whether the Defendant or Respondent was named in the filed complaint.",
      "example": "Y",
      "title": "Named In Complaint Flag",
      "type": "string"
    },
    "NamedInSettlement": {
      "description": "A flag that indicates whether the Defendant or Respondent was named in the Final Order.",
      "example": "N",
      "title": "Named in Settlement Flag",
      "type": "string"
    }
  },
  "required": [
    "DefendantName",
    "NamedInComplaint",
    "NamedInSettlement"
  ]
}