dhani10 commited on
Commit
cbf7b85
·
verified ·
1 Parent(s): e884b6c

Upload meta/schema_engine_data.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. meta/schema_engine_data.json +37 -0
meta/schema_engine_data.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "title": "EngineDataSchema",
3
+ "type": "object",
4
+ "properties": {
5
+ "Engine rpm": {
6
+ "type": "integer"
7
+ },
8
+ "Lub oil pressure": {
9
+ "type": "number"
10
+ },
11
+ "Fuel pressure": {
12
+ "type": "number"
13
+ },
14
+ "Coolant pressure": {
15
+ "type": "number"
16
+ },
17
+ "lub oil temp": {
18
+ "type": "number"
19
+ },
20
+ "Coolant temp": {
21
+ "type": "number"
22
+ },
23
+ "Engine Condition": {
24
+ "type": "integer"
25
+ }
26
+ },
27
+ "required": [
28
+ "Engine rpm",
29
+ "Lub oil pressure",
30
+ "Fuel pressure",
31
+ "Coolant pressure",
32
+ "lub oil temp",
33
+ "Coolant temp",
34
+ "Engine Condition"
35
+ ],
36
+ "additionalProperties": true
37
+ }