{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://fdc3.finos.org/schemas/2.0/chatInitSettings.schema.json",
    "type": "object",
    "title": "ChatInitSettings",
    "properties": {
        "type": {
            "const": "fdc3.chat.initSettings"
        },
        "chatName": {
            "type": "string"
        },
        "members": {
            "$ref": "contactList.schema.json#"
        },
        "initMessage": {
            "type": "string"
        },
        "options": {
            "type": "object",
            "properties": {
              "groupRecipients": {"type": "boolean"},
              "isPublic": {"type": "boolean"},
              "allowHistoryBrowsing":  {"type": "boolean"},
              "allowMessageCopy":  {"type": "boolean"},
              "allowAddUser":  {"type": "boolean"}
            }
        }
    },
    "required": [
        "type"
    ]
}