You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: google/cloud/talent/v4/job.proto
+68Lines changed: 68 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,19 @@ message Job {
68
68
// order.
69
69
repeatedLocationlocations=1;
70
70
71
+
// Structured street locations of the job.
72
+
//
73
+
// Unlike [locations][google.cloud.talent.v4.Job.DerivedInfo.locations], [street_locations][google.cloud.talent.v4.Job.DerivedInfo.street_locations] contains street locations
74
+
// inferred from job posting details, e.g. [Job.addresses][google.cloud.talent.v4.Job.addresses],
75
+
// [Job.company_display_name][google.cloud.talent.v4.Job.company_display_name], and so on.
76
+
//
77
+
// Note that the inference of [street_locations][google.cloud.talent.v4.Job.DerivedInfo.street_locations] isn't guaranteed to
78
+
// be 100% correct.
79
+
//
80
+
// [street_locations][google.cloud.talent.v4.Job.DerivedInfo.street_locations] are exactly matched to [Job.addresses][google.cloud.talent.v4.Job.addresses] in the same
81
+
// order.
82
+
repeatedLocationstreet_locations=2;
83
+
71
84
// Job categories derived from [Job.title][google.cloud.talent.v4.Job.title] and [Job.description][google.cloud.talent.v4.Job.description].
72
85
repeatedJobCategoryjob_categories=3;
73
86
}
@@ -93,6 +106,58 @@ message Job {
93
106
HtmlSanitizationhtml_sanitization=2;
94
107
}
95
108
109
+
// Debugging information for internal users.
110
+
messageJobDebugInfo {
111
+
enumJobStatus {
112
+
JOB_DEBUG_INFO_UNSPECIFIED=0;
113
+
114
+
EXPIRED=1;
115
+
116
+
OPEN=2;
117
+
118
+
DELETED=3;
119
+
}
120
+
121
+
// A belief that a job has particular soc with some probability.
122
+
messageSocBelief {
123
+
stringsoc_code=1;
124
+
125
+
doubleprobability=2;
126
+
127
+
int32svp=3;
128
+
}
129
+
130
+
// Job Status.
131
+
JobStatusstatus=1;
132
+
133
+
// Soc Beliefs.
134
+
repeatedSocBeliefsoc_beliefs=2;
135
+
136
+
// project id.
137
+
stringproject_id=3;
138
+
139
+
// distributor id
140
+
stringdistributor_id=4;
141
+
142
+
// tenant id.
143
+
stringtenant_id=5;
144
+
145
+
// project number
146
+
int64project_number=6;
147
+
148
+
// Job Classifications
149
+
repeatedstringjob_classifications=7;
150
+
151
+
// Seniority
152
+
stringseniority=8;
153
+
154
+
// Confidence Scores
155
+
repeateddoubleconfidence_scores=9;
156
+
157
+
// Last Update TIme
158
+
google.protobuf.Timestamplast_update_time=10;
159
+
}
160
+
96
161
// Required during job update.
97
162
//
98
163
// The resource name for the job. This is generated by the service when a
0 commit comments