From 0c63ae51d1221b8ecd9742c7d5580bd06551ecbb Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Thu, 4 Mar 2021 18:14:12 -0500 Subject: did some templating, added some models --- artifacts/categories | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ artifacts/makes-models | 5 +++++ artifacts/template.json | 22 ++++++++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 artifacts/categories create mode 100644 artifacts/makes-models create mode 100644 artifacts/template.json (limited to 'artifacts') diff --git a/artifacts/categories b/artifacts/categories new file mode 100644 index 0000000..4f9ad46 --- /dev/null +++ b/artifacts/categories @@ -0,0 +1,48 @@ +From [Wikipedia](https://en.wikipedia.org/wiki/List_of_auto_parts). Could be adapted for use in this application. Need to dump electronic parts that aren't as important and add parts that are no longer considered essential equipment. + +1 Car body and main part + + 1.1 Body components, including trim + 1.2 Doors + 1.3 Windows + +2 Low voltage/auxiliary electrical system and electronics + + 2.1 Audio/video devices + 2.2 Cameras + 2.3 Low voltage electrical supply system + 2.4 Gauges and meters + 2.5 Ignition system + 2.6 Lighting and signaling system + 2.7 Sensors + 2.8 Starting system + 2.9 Electrical switches + 2.10 Wiring harnesses + 2.11 Miscellaneous + +3 Interior + + 3.1 Floor components and parts + 3.2 Other components + 3.3 Car seat + +4 Power-train and chassis + + 4.1 Braking system + 4.2 Electrified powertrain components + 4.3 Engine components and parts + 4.4 Engine cooling system + 4.5 Engine oil systems + 4.6 Exhaust system + 4.7 Fuel supply system + 4.8 Suspension and steering systems + 4.9 Transmission system + +5 Miscellaneous auto parts + + 5.1 Air conditioning system (A/C) + 5.2 Bearings + 5.3 Hose + 5.4 Other miscellaneous parts + + diff --git a/artifacts/makes-models b/artifacts/makes-models new file mode 100644 index 0000000..a18b407 --- /dev/null +++ b/artifacts/makes-models @@ -0,0 +1,5 @@ +Hudson + Hornet + Wasp + Pacemaker + diff --git a/artifacts/template.json b/artifacts/template.json new file mode 100644 index 0000000..ddacc2a --- /dev/null +++ b/artifacts/template.json @@ -0,0 +1,22 @@ +{ + "type": "part", + "shortName": "Wheel Bearing", + "fitsCars": [ + { + "type": "car", + "year": 1953, + "make": "Hudson", + "model": "Hornet", + "engine": { + "type": "engine", + "cylinders": 6, + "displacement": 308, + "layout": "I" + }, + "doors": 4, + "transmission": "Dual-Range Hydramatic" + } + ], + "sources": ["url://", "url://"], + "categories": ["Wheel & Tire", "Drivetrain"] +} -- cgit v1.2.3