OBJECT

ResourceRestrictionExemption

Exemption information for a specific resource restriction.

link GraphQL Schema definition

1type ResourceRestrictionExemption {
2
3# The list of description data a user make take to become exempt for the given
4# restriction.
5actions: [ResourceRestrictionExemptionAction!]
6
7# The time that the restriction is no longer active.
8endsAt: Time
9
10# The keys needed for a given restriction.
11keys: [String!]
12
13# The time that the restriction becomes active.
14startsAt: Time
15
16# The type of exemption.
17type: ResourceRestrictionExemptionType!
18
19}