feat(graph): add location facet to driveItems

This commit is contained in:
Dominik Schmidt
2023-12-06 15:13:09 +01:00
parent 07edd1e23a
commit 4c27b365fa
11 changed files with 323 additions and 83 deletions
@@ -36,6 +36,12 @@ message Audio {
optional int32 year = 16;
}
message GeoCoordinates {
optional double altitude = 1;
optional double latitude = 2;
optional double longitude = 3;
}
message Entity {
Reference ref = 1;
ResourceID id = 2;
@@ -52,6 +58,7 @@ message Entity {
repeated string tags = 13;
string highlights = 14;
Audio audio = 15;
GeoCoordinates location = 16;
}
message Match {