openFDA · Schema

Food Adverse Event

FDAFood and Drug AdministrationDrug SafetyAdverse EventsDrug LabelsRecallsMedical DevicesFood SafetyTobaccoPublic HealthOpen DataGovernmentRegulatoryFAERSSPL

Properties

Name Type Description
consumer object
date_created string
date_started string
outcomes array
products array
reactions array
report_number string
View JSON Schema on GitHub

JSON Schema

food-adverse-event.json Raw ↑
{
  "type": "object",
  "properties": {
    "consumer": {
      "properties": {
        "age": {
          "type": "string"
        },
        "age_unit": {
          "type": "string"
        },
        "gender": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "date_created": {
      "format": "date",
      "type": "string"
    },
    "date_started": {
      "format": "date",
      "type": "string"
    },
    "outcomes": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "products": {
      "items": {
        "properties": {
          "industry_code": {
            "type": "string"
          },
          "industry_name": {
            "type": "string"
          },
          "name_brand": {
            "type": "string"
          },
          "role": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "type": "array"
    },
    "reactions": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "report_number": {
      "type": "string"
    }
  }
}