{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetActionModuleVersionResponseContent", "title": "GetActionModuleVersionResponseContent", "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" } } }