• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//
2// Copyright (C) 2018 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8//      http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17namespace libtextclassifier3.test;
18
19table FlightNumberInfo {
20  carrier_code: string;
21  flight_code: int;
22}
23
24table ContactInfo {
25  first_name: string;
26  last_name: string;
27  phone_number: string;
28  score: float;
29}
30
31table Reminder {
32  title: string;
33  notes: [string];
34}
35
36table EntityData {
37  an_int_field: int;
38  a_long_field: int64;
39  a_bool_field: bool;
40  a_float_field: float;
41  a_double_field: double;
42  flight_number: FlightNumberInfo;
43  contact_info: ContactInfo;
44  reminders: [Reminder];
45}
46
47root_type libtextclassifier3.test.EntityData;
48