{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CommonModelScopesBodyRequest", "title": "CommonModelScopesBodyRequest", "type": "object", "properties": { "model_id": { "type": "string" }, "enabled_actions": { "type": "array", "items": { "$ref": "#/components/schemas/EnabledActionsEnum" } }, "disabled_fields": { "type": "array", "items": { "type": "string" } } }, "required": [ "model_id", "enabled_actions", "disabled_fields" ] }