{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AvailableActions", "title": "AvailableActions", "type": "object", "properties": { "integration": { "$ref": "#/components/schemas/AccountIntegration" }, "passthrough_available": { "type": "boolean" }, "available_model_operations": { "type": "array", "items": { "$ref": "#/components/schemas/ModelOperation" } } }, "required": [ "integration", "passthrough_available" ], "description": "# The AvailableActions Object\n### Description\nThe `Activity` object is used to see all available model/operation combinations for an integration.\n\n### Usage Example\nFetch all the actions available for the `Zenefits` integration." }