# Schema for the RefrshToken json object. Issuer is a PDP authorization server. $schema: "http://json-schema.org/draft-07/schema#" RefreshToken: type: object properties: jti: type: string description: "The JWT ID." iss: type: string description: "The issuer of the token." exp: type: integer description: "Expiration time of the token as a Unix timestamp." iat: type: integer description: "Issued at time of the token as a Unix timestamp." cnf: type: object description: "The confirmation claim binding the token to the public key." properties: jkt: type: string description: "SHA-256 hash of the public key used in the DPoP proof." required: - jkt required: - jti - iss - exp - iat - cnf