{
    "$schema": "http://json-schema.org/schema",
    "title": "Validate No Inline Types Executor",
    "description": "Validates that inline type literals are not used - prefer named types/interfaces/classes.",
    "type": "object",
    "properties": {
        "mode": {
            "type": "string",
            "enum": ["OFF", "NEW_METHODS", "NEW_AND_MODIFIED_METHODS", "NEW_AND_MODIFIED_FILES"],
            "description": "OFF: skip validation. NEW_METHODS: only new methods in diff. NEW_AND_MODIFIED_METHODS: new methods + methods with changes. NEW_AND_MODIFIED_FILES: all inline types in modified files.",
            "default": "OFF"
        },
        "disableAllowed": {
            "type": "boolean",
            "description": "Whether disable comments work. When false, no escape hatch.",
            "default": true
        },
        "turnOffRuleUntilEpoch": {
            "type": "number",
            "description": "Epoch seconds. Until this time, skip validation entirely. When expired, normal mode resumes. Omit when not needed."
        }
    },
    "required": []
}
