Add logos to vehicle API (#380)

This commit is contained in:
Dominic Wong
2022-02-16 21:41:48 +00:00
committed by GitHub
parent fec86cfd2f
commit 718466a4a1
7 changed files with 391 additions and 11 deletions

View File

@@ -8,6 +8,7 @@ service Vehicle {
rpc Lookup(LookupRequest) returns (LookupResponse) {}
}
// Lookup a UK vehicle by it's registration number
message LookupRequest {
// the vehicle registration number
@@ -45,4 +46,7 @@ message LookupResponse {
string wheelplan = 14;
// date of last v5 issue
string last_v5_issued = 15;
// url of logo for the make
string logo_url = 16;
}