---
$schema: http://json-schema.org/draft-04/hyper-schema
shortName: car
title: Car
description: Car
stability: Alpha
strictProperties: true
additionalProperties: false
definitions:
  make:
    type: string
    description: Brand name
  model:
    type: string
    description: Model name
type:
  - object
required:
  - make
  - model
  - engine
  - wheel
  - color
properties:
  make:
    $ref: car#/definitions/make
  model:
    $ref: car#/definitions/model
  engine:
    $ref: parts#/definitions/engine
  wheel:
    $ref: parts#/definitions/wheel
  color:
    $ref: color
