IntegrationPackage

API ManagementCloud IntegrationEnterprise IntegrationEvent MeshiPaaSSAPSAP BTP

Properties

Name Type Description
Id string Unique identifier of the integration package
Name string Display name of the package
Description string Package description
ShortText string Short description
Version string Package version
Vendor string Package vendor
Mode string Package mode (EDIT_ALLOWED or READONLY)
SupportedPlatform string Supported runtime platform
CreationDate string Package creation date
ModifiedDate string Package last modified date
View JSON Schema on GitHub

JSON Schema

sap-integration-suite-integrationpackage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationPackage",
  "title": "IntegrationPackage",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "Unique identifier of the integration package"
    },
    "Name": {
      "type": "string",
      "description": "Display name of the package"
    },
    "Description": {
      "type": "string",
      "description": "Package description"
    },
    "ShortText": {
      "type": "string",
      "description": "Short description"
    },
    "Version": {
      "type": "string",
      "description": "Package version"
    },
    "Vendor": {
      "type": "string",
      "description": "Package vendor"
    },
    "Mode": {
      "type": "string",
      "description": "Package mode (EDIT_ALLOWED or READONLY)",
      "enum": [
        "EDIT_ALLOWED",
        "READONLY"
      ]
    },
    "SupportedPlatform": {
      "type": "string",
      "description": "Supported runtime platform"
    },
    "CreationDate": {
      "type": "string",
      "description": "Package creation date"
    },
    "ModifiedDate": {
      "type": "string",
      "description": "Package last modified date"
    }
  }
}