{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IntegrationConfig", "title": "IntegrationConfig", "type": "object", "description": "Standard Integration serializer.", "properties": { "id": { "type": "integer", "readOnly": true }, "kind": { "$ref": "#/components/schemas/IntegrationKindEnum" }, "config": {}, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "created_by": { "allOf": [ { "$ref": "#/components/schemas/UserBasic" } ], "readOnly": true }, "errors": { "type": "string", "readOnly": true }, "display_name": { "type": "string", "readOnly": true } }, "required": [ "created_at", "created_by", "display_name", "errors", "id", "kind" ] }