Auth0 · Schema
ActionModuleVersion
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique ID for this version. |
| module_id | string | The ID of the parent module. |
| version_number | integer | The sequential version number. |
| code | string | The exact source code that was published with this version. |
| secrets | array | Secrets available to this version (name and updated_at only, values never returned). |
| dependencies | array | Dependencies locked to this version. |
| created_at | string | The timestamp when this version was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ActionModuleVersion",
"title": "ActionModuleVersion",
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"description": "The unique ID for this version."
},
"module_id": {
"type": "string",
"description": "The ID of the parent module."
},
"version_number": {
"type": "integer",
"description": "The sequential version number."
},
"code": {
"type": "string",
"description": "The exact source code that was published with this version."
},
"secrets": {
"type": "array",
"description": "Secrets available to this version (name and updated_at only, values never returned).",
"items": {
"$ref": "#/components/schemas/ActionModuleSecret"
}
},
"dependencies": {
"type": "array",
"description": "Dependencies locked to this version.",
"items": {
"$ref": "#/components/schemas/ActionModuleDependency"
}
},
"created_at": {
"type": "string",
"description": "The timestamp when this version was created.",
"format": "date-time"
}
}
}