Apigee · Schema

UploadIntegrationVersionRequest

Request to upload an integration version.

Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationsMicroservicesMCPModel Context ProtocolMonetization

Properties

Name Type Description
content string Integration version content to upload.
fileFormat string Format of the uploaded content.
View JSON Schema on GitHub

JSON Schema

apigee-uploadintegrationversionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UploadIntegrationVersionRequest",
  "title": "UploadIntegrationVersionRequest",
  "type": "object",
  "description": "Request to upload an integration version.",
  "properties": {
    "content": {
      "type": "string",
      "description": "Integration version content to upload."
    },
    "fileFormat": {
      "type": "string",
      "description": "Format of the uploaded content.",
      "enum": [
        "FILE_FORMAT_UNSPECIFIED",
        "JSON",
        "YAML"
      ]
    }
  }
}