Productiv · Schema

Application

Represents a custom application registered in the Productiv platform.

Application PortfolioProvisioningSaaS ManagementSpend ManagementUsage Analytics

Properties

Name Type Description
appId string The unique identifier for the application.
appName string The name of the application.
appDescription string A description of the application.
appCategory string The category of the application.
appUrl string The URL of the application.
View JSON Schema on GitHub

JSON Schema

application.json Raw ↑
{
  "$id": "application.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Application",
  "description": "Represents a custom application registered in the Productiv platform.",
  "type": "object",
  "required": [
    "appName"
  ],
  "properties": {
    "appId": {
      "type": "string",
      "description": "The unique identifier for the application."
    },
    "appName": {
      "type": "string",
      "description": "The name of the application."
    },
    "appDescription": {
      "type": "string",
      "description": "A description of the application."
    },
    "appCategory": {
      "type": "string",
      "description": "The category of the application."
    },
    "appUrl": {
      "type": "string",
      "format": "uri",
      "description": "The URL of the application."
    }
  }
}