Childseat

NHTSA Childseat schema

GovernmentTransportationTruckingAviationVehicleSafetyTransitOpenData

Properties

Name Type Description
id integer
make string
manufactureDate string
modelNumber string
modes array
productModel string
safetyIssues object
seatType string
View JSON Schema on GitHub

JSON Schema

childseat.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.nhtsa.gov/schemas/Childseat.json",
  "title": "Childseat",
  "description": "NHTSA Childseat schema",
  "properties": {
    "id": {
      "type": "integer"
    },
    "make": {
      "type": "string"
    },
    "manufactureDate": {
      "type": "string"
    },
    "modelNumber": {
      "type": "string"
    },
    "modes": {
      "items": {
        "$ref": "#/definitions/ChildSeatMode"
      },
      "type": "array"
    },
    "productModel": {
      "type": "string"
    },
    "safetyIssues": {
      "$ref": "#/definitions/SafetyIssueAggregate"
    },
    "seatType": {
      "type": "string"
    }
  },
  "type": "object"
}