In the following example from an Oracle data source, both the Employee and the Department tables are enabled for full-text search. In the Employee table, the id column is searchable. In the Department table, the id column is searchable and the address column is not included in the model. OData requests will not return data from the address column.

{
    "odata_mapping_v2": {
        "schemas": [
            {
                "name": "Emp",
                "tables": {
                    "Employee": {
                        "ODataAlias": "Employee",
                        "ODataPluralAlias": "Employee",
                        "searchMode": "full-text",
                        "columns": {
                            "id": {
                                "primaryKeyComponent": 1
                            },
                            "EmployeeName": {
                                "searchable": true,
                                "indexType": "CTXCAT"
                            }
                        }
                    },
                    "Department": {
                        "ODataAlias": "Department",
                        "ODataPluralAlias": "Departments",
                        "searchMode": "full-text",
                        "columns": {
                            "id": {
                                "primaryKeyComponent": 1
                            },
                            "DepartmentName": {
                                "searchable": true
                            }
                        },
                        "excludedColumns": ["address"]
                    }
                }
            }
        ]
    }
}