{ "$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" ] }