Productiv · Schema

ProvisionedUser

Represents a user provisioned to an application in the Productiv platform.

Application PortfolioProvisioningSaaS ManagementSpend ManagementUsage Analytics

Properties

Name Type Description
email string The email address of the user.
firstName string The first name of the user.
lastName string The last name of the user.
role string The role of the user in the application.
View JSON Schema on GitHub

JSON Schema

provisioned-user.json Raw ↑
{
  "$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."
    }
  }
}