{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ModelOperation", "title": "ModelOperation", "type": "object", "properties": { "model_name": { "type": "string" }, "available_operations": { "type": "array", "items": { "type": "string" } }, "required_post_parameters": { "type": "array", "items": { "type": "string" } }, "supported_fields": { "type": "array", "items": { "type": "string" } } }, "required": [ "model_name", "available_operations", "required_post_parameters", "supported_fields" ], "description": "# The ModelOperation Object\n### Description\nThe `ModelOperation` object is used to represent the operations that are currently supported for a given model.\n\n### Usage Example\nView what operations are supported for the `Candidate` endpoint." }