-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcar-data-schema.json
More file actions
114 lines (114 loc) · 2.15 KB
/
Copy pathcar-data-schema.json
File metadata and controls
114 lines (114 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"id": 670037,
"num_rows": 500,
"file_format": "csv",
"name": "Car Data",
"include_header": true,
"columns": [
{
"name": "uuid",
"null_percentage": 0,
"type": "GUID",
"formula": null
},
{
"name": "status_code",
"null_percentage": 0,
"type": "Custom List",
"values": [
"active",
"inactive",
"pending",
"retired"
],
"selectionStyle": "random",
"distribution": null,
"formula": null
},
{
"name": "created_at",
"null_percentage": 0,
"type": "Datetime",
"min": "1/1/2020",
"max": "12/31/2021",
"format": "%-m/%-d/%Y",
"formula": null
},
{
"name": "updated_at",
"null_percentage": 0,
"type": "Datetime",
"min": "1/1/2020",
"max": "12/31/2021",
"format": "%-m/%-d/%Y",
"formula": null
},
{
"name": "user_assigned_uuid",
"null_percentage": 0,
"type": "GUID",
"formula": null
},
{
"name": "notes",
"null_percentage": 0,
"type": "Paragraphs",
"min": 1,
"max": 1,
"formula": null
},
{
"name": "demand",
"null_percentage": 0,
"type": "Custom List",
"values": [
"high",
"medium",
"low"
],
"selectionStyle": "random",
"distribution": null,
"formula": null
},
{
"name": "category",
"null_percentage": 0,
"type": "Custom List",
"values": [
"Economical",
"Sport",
"Luxury",
"Van",
"Truck",
"Extra Large"
],
"selectionStyle": "custom",
"distribution": null,
"formula": null
},
{
"name": "year",
"null_percentage": 0,
"type": "Car Model Year",
"formula": null
},
{
"name": "make",
"null_percentage": 0,
"type": "Car Make",
"formula": null
},
{
"name": "model",
"null_percentage": 0,
"type": "Car Model",
"formula": null
},
{
"name": "vin",
"null_percentage": 0,
"type": "Car VIN",
"formula": null
}
]
}