{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PatchedViewLink", "title": "PatchedViewLink", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "deleted": { "type": "boolean", "nullable": true }, "created_by": { "allOf": [ { "$ref": "#/components/schemas/UserBasic" } ], "readOnly": true }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "source_table_name": { "type": "string", "maxLength": 400 }, "source_table_key": { "type": "string", "maxLength": 400 }, "joining_table_name": { "type": "string", "maxLength": 400 }, "joining_table_key": { "type": "string", "maxLength": 400 }, "field_name": { "type": "string", "maxLength": 400 }, "configuration": { "nullable": true } } }