Apigee · Schema

SharedFlow

A reusable shared flow containing common logic.

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

Properties

Name Type Description
name string Output only. Name of the shared flow.
revision array Output only. List of revisions for the shared flow.
latestRevisionId string Output only. ID of the latest revision.
metaData object
View JSON Schema on GitHub

JSON Schema

apigee-sharedflow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SharedFlow",
  "title": "SharedFlow",
  "type": "object",
  "description": "A reusable shared flow containing common logic.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Output only. Name of the shared flow.",
      "readOnly": true
    },
    "revision": {
      "type": "array",
      "description": "Output only. List of revisions for the shared flow.",
      "readOnly": true,
      "items": {
        "type": "string"
      }
    },
    "latestRevisionId": {
      "type": "string",
      "description": "Output only. ID of the latest revision.",
      "readOnly": true
    },
    "metaData": {
      "$ref": "#/components/schemas/EntityMetadata"
    }
  }
}