{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DataWarehouseViewLink", "title": "DataWarehouseViewLink", "additionalProperties": false, "properties": { "created_at": { "default": null, "title": "Created At", "type": "string", "nullable": true }, "created_by": { "default": null, "allOf": [ { "$ref": "#/components/schemas/UserBasicType" } ], "nullable": true }, "field_name": { "default": null, "title": "Field Name", "type": "string", "nullable": true }, "id": { "title": "Id", "type": "string" }, "joining_table_key": { "default": null, "title": "Joining Table Key", "type": "string", "nullable": true }, "joining_table_name": { "default": null, "title": "Joining Table Name", "type": "string", "nullable": true }, "source_table_key": { "default": null, "title": "Source Table Key", "type": "string", "nullable": true }, "source_table_name": { "default": null, "title": "Source Table Name", "type": "string", "nullable": true } }, "required": [ "id" ], "type": "object" }