{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-structure/echo-case-crs1-defendants-structure.json", "name": "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": { "type": "string", "description": "The name of the defendant, or respondent associated with the Enforcement Action.", "example": "AMERICAN CYANAMID COMPANY" }, "NamedInComplaint": { "type": "string", "description": "A flag that indicates whether the Defendant or Respondent was named in the filed complaint.", "example": "Y" }, "NamedInSettlement": { "type": "string", "description": "A flag that indicates whether the Defendant or Respondent was named in the Final Order.", "example": "N" } }, "required": [ "DefendantName", "NamedInComplaint", "NamedInSettlement" ] }