blob: 5e340b36ca871855562150811c111fc1c981e6b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
syntax = "proto3";
package auth;
import "google/protobuf/timestamp.proto";
// A message representing a user
message User {
// Unique identifier for the user
string id = 1;
// Email address of the user
string email = 2;
// Timestamp for when the user was created
google.protobuf.Timestamp created_at = 3;
// Timestamp for when the user was last updated
google.protobuf.Timestamp updated_at = 4;
}
// Define a message for sending a token to be validated
message ValidationRequest {
// The token to validate
string token = 1;
}
// Define a message for the result of a token validation
message ValidationResponse {
// Indicates whether the token is valid
bool valid = 1;
}
// Define the AuthServer gRPC service
service Auth {
// Validate a token
rpc ValidateAuthToken (ValidationRequest) returns (ValidationResponse);
}
|