{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "GrantOf", "type": "object", "properties": { "created_on": { "type": "string", "description": "Date and time when the grant was created" }, "role": { "type": "string", "description": "The name of the role" }, "granted_to": { "type": "string", "description": "The type of the grantee, can be USER or ROLE" }, "grantee_name": { "type": "string", "description": "The name of the grantee" }, "granted_by": { "type": "string", "description": "The role that granted this role to this grantee" } } }