Skip to content

ClientRestrictionAuthorization

A client restriction authorization must be created for users to access restricted patients

Fields

client · User! · required · The client to whom the restriction authorization applies
id · ID! · required · The unique identifier of the authorization
provider · User! · required · The user who was granted access
reason · String! · required · Optional reason for this authorization

Used By

Definition

"""
A client restriction authorization must be created for users to access restricted patients
"""
type ClientRestrictionAuthorization {
"""
The client to whom the restriction authorization applies
"""
client: User!
created_at: ISO8601DateTime
"""
The unique identifier of the authorization
"""
id: ID!
"""
The user who was granted access
"""
provider: User!
"""
Optional reason for this authorization
"""
reason: String!
}