123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- syntax = "proto3";
- package google.cloud.talent.v4beta1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/talent/v4beta1/common.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/talent/v4beta1;talent";
- option java_multiple_files = true;
- option java_outer_classname = "CompanyResourceProto";
- option java_package = "com.google.cloud.talent.v4beta1";
- option objc_class_prefix = "CTS";
- message Company {
- option (google.api.resource) = {
- type: "jobs.googleapis.com/Company"
- pattern: "projects/{project}/tenants/{tenant}/companies/{company}"
- pattern: "projects/{project}/companies/{company}"
- };
-
- message DerivedInfo {
-
-
- Location headquarters_location = 1;
- }
-
-
-
-
-
-
-
-
-
-
-
- string name = 1;
-
- string display_name = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- string external_id = 3 [(google.api.field_behavior) = REQUIRED];
-
- CompanySize size = 4;
-
-
-
-
- string headquarters_address = 5;
-
-
-
-
- bool hiring_agency = 6;
-
-
-
-
-
- string eeo_text = 7;
-
-
-
-
- string website_uri = 8;
-
-
- string career_site_uri = 9;
-
- string image_uri = 10;
-
-
-
-
-
-
-
-
-
- repeated string keyword_searchable_job_custom_attributes = 11 [deprecated = true];
-
- DerivedInfo derived_info = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- bool suspended = 13 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|