Appsmith · JSON Structure

Application Structure

An Appsmith low-code application

Type: record Properties: 0
Low-CodeOpen SourceInternal ToolsWorkflow AutomationDeveloper Tools

Application Structure is a JSON Structure definition published by Appsmith. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/appsmith/main/json-structure/application-structure.json",
  "title": "Application",
  "description": "An Appsmith low-code application",
  "type": "record",
  "fields": [
    {
      "name": "applicationId",
      "type": "string",
      "description": "Unique application identifier"
    },
    {
      "name": "name",
      "type": "string",
      "description": "Application name"
    },
    {
      "name": "description",
      "type": "string",
      "description": "Application description"
    },
    {
      "name": "workspaceId",
      "type": "string",
      "description": "Workspace identifier"
    },
    {
      "name": "isPublic",
      "type": "boolean",
      "description": "Public accessibility flag"
    },
    {
      "name": "createdAt",
      "type": "string",
      "description": "Creation timestamp"
    },
    {
      "name": "modifiedAt",
      "type": "string",
      "description": "Last modification timestamp"
    }
  ]
}