Zylo · Schema
Zylo Application
An application represents a SaaS software product tracked within the Zylo platform, including metadata such as owner, category, spend, and custom fields.
BudgetsSaaS ManagementSpend
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the application. |
| name | string | The display name of the application. |
| category | string | The category of the application. |
| owner | string | The owner of the application. |
| status | string | The current status of the application. |
| trueUp | boolean | Whether the application is marked for true-up. |
| totalSpend | number | The total spend on this application. |
| subscriptionCount | integer | The number of subscriptions for this application. |
| createdAt | string | The date and time the application was created. |
| updatedAt | string | The date and time the application was last updated. |
| customFields | object | Custom fields associated with the application. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "application.json",
"title": "Zylo Application",
"description": "An application represents a SaaS software product tracked within the Zylo platform, including metadata such as owner, category, spend, and custom fields.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the application."
},
"name": {
"type": "string",
"description": "The display name of the application."
},
"category": {
"type": "string",
"description": "The category of the application."
},
"owner": {
"type": "string",
"description": "The owner of the application."
},
"status": {
"type": "string",
"description": "The current status of the application.",
"enum": ["active", "inactive", "under_review"]
},
"trueUp": {
"type": "boolean",
"description": "Whether the application is marked for true-up."
},
"totalSpend": {
"type": "number",
"description": "The total spend on this application."
},
"subscriptionCount": {
"type": "integer",
"description": "The number of subscriptions for this application."
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "The date and time the application was created."
},
"updatedAt": {
"type": "string",
"format": "date-time",
"description": "The date and time the application was last updated."
},
"customFields": {
"type": "object",
"additionalProperties": true,
"description": "Custom fields associated with the application."
}
},
"required": ["id", "name", "status"]
}