Axway · Schema

platform.org.idp.create

Published when an Identity Provider is created for an organization.

API ManagementEnterpriseIntegrationSecurity

Properties

Name Type Description
idp object Identity Provider associated to the organization.
modified_by string "platform" or received value from event's `data.lastModifiedVia`.
View JSON Schema on GitHub

JSON Schema

amplify-platform-platform.org.idp.create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/schemas/axway/amplify-platform-platform.org.idp.create-schema.json",
  "title": "platform.org.idp.create",
  "description": "Published when an Identity Provider is created for an organization.",
  "type": "object",
  "properties": {
    "idp": {
      "type": "object",
      "description": "Identity Provider associated to the organization.",
      "properties": {
        "id": {
          "$ref": "#/components/schemas/IdentityProvider/properties/guid"
        },
        "name": {
          "$ref": "#/components/schemas/IdentityProvider/properties/name"
        }
      },
      "example": {
        "id": {},
        "name": {}
      }
    },
    "modified_by": {
      "type": "string",
      "description": "\"platform\" or received value from event's `data.lastModifiedVia`."
    }
  }
}