{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ForeignKeyList", "title": "ForeignKeyList", "type": "object", "properties": { "items": { "type": "array", "items": { "type": "object", "properties": { "owner": { "type": "string" }, "constraint_name": { "type": "string" }, "table_name": { "type": "string" }, "r_owner": { "type": "string" }, "r_constraint_name": { "type": "string" }, "status": { "type": "string" } } } } } }