OBJECT

ExtensionSecret

The shared secret between the extension and the extension validator service.

link GraphQL Schema definition

1type ExtensionSecret {
2
3# When the secret was activated.
4activeAt: Time!
5
6# The actual content of the secret.
7content: String!
8
9# When the secret expires.
10expiresAt: Time!
11
12}