Superblocks · Schema
Application
internal toolslow-codeno-codeapplicationsworkflowsscheduled jobsintegrationsenterpriseAIdatabasesREST APIdeveloper tools
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the application |
| name | string | Application name |
| description | string | Application description |
| template | string | Template used for the application |
| created_at | string | Creation timestamp |
| updated_at | string | Last update timestamp |
| status | string | Application status |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Application",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "Unique identifier for the application"
},
"name": {
"type": "string",
"description": "Application name"
},
"description": {
"type": "string",
"description": "Application description"
},
"template": {
"type": "string",
"description": "Template used for the application"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Creation timestamp"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Last update timestamp"
},
"status": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
],
"description": "Application status"
}
}
}