{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomerProfileConfig", "title": "CustomerProfileConfig", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "scope": { "$ref": "#/components/schemas/CustomerProfileConfigScopeEnum" }, "content": { "nullable": true }, "sidebar": { "nullable": true }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "updated_at": { "type": "string", "format": "date-time", "readOnly": true, "nullable": true } }, "required": [ "created_at", "id", "scope", "updated_at" ] }