table.proto 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. // Copyright 2021 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.bigquery.storage.v1beta2;
  16. import "google/api/field_behavior.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/cloud/bigquery/storage/v1beta2;storage";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "TableProto";
  20. option java_package = "com.google.cloud.bigquery.storage.v1beta2";
  21. // Schema of a table
  22. message TableSchema {
  23. // Describes the fields in a table.
  24. repeated TableFieldSchema fields = 1;
  25. }
  26. // A field in TableSchema
  27. message TableFieldSchema {
  28. enum Type {
  29. // Illegal value
  30. TYPE_UNSPECIFIED = 0;
  31. // 64K, UTF8
  32. STRING = 1;
  33. // 64-bit signed
  34. INT64 = 2;
  35. // 64-bit IEEE floating point
  36. DOUBLE = 3;
  37. // Aggregate type
  38. STRUCT = 4;
  39. // 64K, Binary
  40. BYTES = 5;
  41. // 2-valued
  42. BOOL = 6;
  43. // 64-bit signed usec since UTC epoch
  44. TIMESTAMP = 7;
  45. // Civil date - Year, Month, Day
  46. DATE = 8;
  47. // Civil time - Hour, Minute, Second, Microseconds
  48. TIME = 9;
  49. // Combination of civil date and civil time
  50. DATETIME = 10;
  51. // Geography object
  52. GEOGRAPHY = 11;
  53. // Numeric value
  54. NUMERIC = 12;
  55. // BigNumeric value
  56. BIGNUMERIC = 13;
  57. // Interval
  58. INTERVAL = 14;
  59. // JSON, String
  60. JSON = 15;
  61. }
  62. enum Mode {
  63. // Illegal value
  64. MODE_UNSPECIFIED = 0;
  65. NULLABLE = 1;
  66. REQUIRED = 2;
  67. REPEATED = 3;
  68. }
  69. // Required. The field name. The name must contain only letters (a-z, A-Z),
  70. // numbers (0-9), or underscores (_), and must start with a letter or
  71. // underscore. The maximum length is 128 characters.
  72. string name = 1 [(google.api.field_behavior) = REQUIRED];
  73. // Required. The field data type.
  74. Type type = 2 [(google.api.field_behavior) = REQUIRED];
  75. // Optional. The field mode. The default value is NULLABLE.
  76. Mode mode = 3 [(google.api.field_behavior) = OPTIONAL];
  77. // Optional. Describes the nested schema fields if the type property is set to STRUCT.
  78. repeated TableFieldSchema fields = 4 [(google.api.field_behavior) = OPTIONAL];
  79. // Optional. The field description. The maximum length is 1,024 characters.
  80. string description = 6 [(google.api.field_behavior) = OPTIONAL];
  81. }