InvestigationAggregate

NHTSA InvestigationAggregate schema

GovernmentTransportationTruckingAviationVehicleSafetyTransitOpenData

Properties

Name Type Description
components array
dateClosed string
dateOpened string
nhtsaCampaignNumber string
recalls array
subject string
summary string
type string
View JSON Schema on GitHub

JSON Schema

investigationaggregate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.nhtsa.gov/schemas/InvestigationAggregate.json",
  "title": "InvestigationAggregate",
  "description": "NHTSA InvestigationAggregate schema",
  "properties": {
    "components": {
      "items": {
        "$ref": "#/definitions/Components"
      },
      "type": "array"
    },
    "dateClosed": {
      "type": "string"
    },
    "dateOpened": {
      "type": "string"
    },
    "nhtsaCampaignNumber": {
      "type": "string"
    },
    "recalls": {
      "items": {
        "$ref": "#/definitions/Recalls"
      },
      "type": "array"
    },
    "subject": {
      "type": "string"
    },
    "summary": {
      "type": "string"
    },
    "type": {
      "type": "string"
    }
  },
  "type": "object"
}