{ "$id": "provisioned-user.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ProvisionedUser", "description": "Represents a user provisioned to an application in the Productiv platform.", "type": "object", "required": [ "email" ], "properties": { "email": { "type": "string", "format": "email", "description": "The email address of the user." }, "firstName": { "type": "string", "description": "The first name of the user." }, "lastName": { "type": "string", "description": "The last name of the user." }, "role": { "type": "string", "description": "The role of the user in the application." } } }