Appian · JSON Structure

Deployment Rest Database Script Structure

Represents a database script included in an export or import deployment.

Type: object Properties: 3
AutomationBPMBusiness Process ManagementEnterprise SoftwareLow-CodeProcess AutomationRPAWorkflow

DatabaseScript is a JSON Structure definition published by Appian, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

fileName orderId url

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/appian/refs/heads/main/json-structure/deployment-rest-database-script-structure.json",
  "name": "DatabaseScript",
  "description": "Represents a database script included in an export or import deployment.",
  "type": "object",
  "properties": {
    "fileName": {
      "description": "The file name of the database script.",
      "example": "create_tables.sql",
      "type": "string"
    },
    "orderId": {
      "description": "The execution order of the database script, starting at 1.",
      "minimum": 1,
      "example": 1,
      "type": "int32"
    },
    "url": {
      "description": "URL to download the database script file.",
      "type": "uri"
    }
  }
}