# VehicleCreateInput

```graphql
input VehicleCreateInput {
  # Brand
  brand: String
  
  # Country
  country: String!
  
  # Number
  number: String!
}
```
