OBJECT

Policy

link GraphQL Schema definition

  • type Policy {
  • # The walletId associated with this policy
  • walletId: String!
  • # Schedule describing the recoverers policy
  • recovererSchedules: [[Schedule]]!
  • # Schedule describing the delegates policy
  • delegateSchedules: [[Schedule]]!
  • # Creation time stamp (unix timestamp)
  • creationTimestamp: Int!
  • # Deadline for the creation to policy (unix timestamp) - security feature
  • creationDeadline: Int!
  • # Public key of the HSM
  • masterPublicKey: String!
  • # The version of the policy
  • version: Int!
  • }