Variable

API ManagementCloud IntegrationEnterprise IntegrationEvent MeshiPaaSSAPSAP BTP

Properties

Name Type Description
VariableName string Name of the variable
IntegrationFlow string Associated integration flow name (empty for global variables)
Visibility string Variable scope
UpdatedAt string Last updated timestamp
RetainUntil string Retention expiry timestamp
View JSON Schema on GitHub

JSON Schema

sap-integration-suite-variable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Variable",
  "title": "Variable",
  "type": "object",
  "properties": {
    "VariableName": {
      "type": "string",
      "description": "Name of the variable"
    },
    "IntegrationFlow": {
      "type": "string",
      "description": "Associated integration flow name (empty for global variables)"
    },
    "Visibility": {
      "type": "string",
      "description": "Variable scope",
      "enum": [
        "Global",
        "Local"
      ]
    },
    "UpdatedAt": {
      "type": "string",
      "description": "Last updated timestamp"
    },
    "RetainUntil": {
      "type": "string",
      "description": "Retention expiry timestamp"
    }
  }
}