-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPerson.proto
127 lines (127 loc) · 2.86 KB
/
Person.proto
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
115
116
117
118
119
120
121
122
123
124
125
126
127
package boa.transportation.types;
message Person{
enum STATE
{
Alabama = 1;
Montana = 30;
Nebraska = 31;
Alaska = 2;
Nevada = 32;
Arizona = 4;
New_Hampshire = 33;
Arkansas = 5;
New_Jersey = 34;
California = 6;
New_Mexico = 35;
Colorado = 8;
New_York = 36;
Connecticut = 9;
North_Carolina = 37;
Delaware = 10;
North_Dakota = 38;
District_of_Columbia = 11;
Ohio = 39;
Florida = 12;
Oklahoma = 40;
Georgia = 13;
Oregon = 41;
Hawaii = 15;
Pennsylvania = 42;
Idaho = 16;
Puerto_Rico = 43;
Illinois = 17;
Rhode_Island = 44;
Indiana = 18;
South_Carolina = 45;
Iowa = 19;
South_Dakota = 46;
Kansas = 20;
Tennessee = 47;
Kentucky = 21;
Texas = 48;
Louisiana = 22;
Utah = 49;
Maine = 23;
Vermont = 50;
Maryland = 24;
Virgin_Islands = 52;
Massachusetts = 25;
Virginia = 51;
Michigan = 26;
Washington = 53;
Minnesota = 27;
West_Virginia = 54;
Mississippi = 28;
Wisconsin = 55;
Missouri = 29;
Wyoming = 56;
}
optional STATE state= 1;
optional float ST_CASE = 2;
optional float VE_FORMS = 3;
optional float VEH_NO = 4;
optional float PER_NO = 5;
optional float STR_VEH = 6;
optional float COUNTY = 7;
optional float DAY = 8;
optional float MONTH = 9;
optional float HOUR = 10;
optional float MINUTE = 11;
optional float RUR_URB = 12;
optional float FUNC_SYS = 13;
optional float HARM_EV = 14;
optional float MAN_COLL = 15;
optional float SCH_BUS = 16;
optional float MAKE = 17;
optional float MAK_MOD = 18;
optional float BODY_TYP = 19;
optional float MOD_YEAR = 20;
optional float TOW_VEH = 21;
optional float SPEC_USE = 22;
optional float EMER_USE = 23;
optional float ROLLOVER = 24;
optional float IMPACT1 = 25;
optional float FIRE_EXP = 26;
optional float AGE = 27;
optional float SEX = 28;
optional float PER_TYP = 29;
optional float INJ_SEV = 30;
optional float SEAT_POS = 31;
optional float REST_USE = 32;
optional float REST_MIS = 33;
optional float AIR_BAG = 34;
optional float EJECTION = 35;
optional float EJ_PATH = 36;
optional float EXTRICAT = 37;
optional float DRINKING = 38;
optional float ALC_DET = 39;
optional float ALC_STATUS = 40;
optional float ATST_TYP = 41;
optional float ALC_RES = 42;
optional float DRUGS = 43;
optional float DRUG_DET = 44;
optional float DSTATUS = 45;
optional float DRUGTST1 = 46;
optional float DRUGTST2 = 47;
optional float DRUGTST3 = 48;
optional float DRUGRES1 = 49;
optional float DRUGRES2 = 50;
optional float DRUGRES3 = 51;
optional float HOSPITAL = 52;
optional float DOA = 53;
optional float DEATH_DA = 54;
optional float DEATH_MO = 55;
optional float DEATH_YR = 56;
optional float DEATH_HR = 57;
optional float DEATH_MN = 58;
optional float DEATH_TM = 59;
optional float LAG_HRS = 60;
optional float LAG_MINS = 61;
optional float P_SF1 = 62;
optional float P_SF2 = 63;
optional float P_SF3 = 64;
optional float WORK_INJ = 65;
optional float HISPANIC = 66;
optional float RACE = 67;
optional float LOCATION = 68;
}