Standard Integration serializer.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PatchedIntegrationConfig", "title": "PatchedIntegrationConfig", "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 } } }