SafetyRatingAggregate

NHTSA SafetyRatingAggregate schema

GovernmentTransportationTruckingAviationVehicleSafetyTransitOpenData

Properties

Name Type Description
crashTestRatings array
recommendedFeatures array
safetyFeatures array
View JSON Schema on GitHub

JSON Schema

safetyratingaggregate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.nhtsa.gov/schemas/SafetyRatingAggregate.json",
  "title": "SafetyRatingAggregate",
  "description": "NHTSA SafetyRatingAggregate schema",
  "properties": {
    "crashTestRatings": {
      "items": {
        "$ref": "#/definitions/CrashTestRating"
      },
      "type": "array"
    },
    "recommendedFeatures": {
      "items": {
        "$ref": "#/definitions/RecommendedFeature"
      },
      "type": "array"
    },
    "safetyFeatures": {
      "items": {
        "$ref": "#/definitions/SafetyFeature"
      },
      "type": "array"
    }
  },
  "type": "object"
}