{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EventStreamCloudEventOrgDeletedObject",
"title": "EventStreamCloudEventOrgDeletedObject",
"type": "object",
"description": "The event content.",
"additionalProperties": false,
"required": [
"id"
],
"properties": {
"name": {
"type": "string",
"description": "The human-readable identifier for the organization that will be used by end-users to direct them to their organization in your application..",
"pattern": "^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$"
},
"id": {
"type": "string",
"description": "ID of the organization.",
"pattern": "org_[a-zA-Z0-9]{16}"
},
"display_name": {
"type": "string",
"description": "If set, the name that will be displayed to end-users for this organization in any interaction with them."
},
"metadata": {
"$ref": "#/components/schemas/EventStreamCloudEventOrgDeletedObjectMetadata"
}
}
}