I am creating a synonym map like below,
{ "name": "country-synonym",
"format":"solr",
"synonyms": "germany, dl, deutschland\n
india, ind"
}
But when I queried the synonym to view it, it was created like below, instead of two rules, only one rule was created.
{
"@odata.context": "https://#############.search.windows.net/$metadata#synonymmaps/$entity",
"@odata.etag": "###########",
"name": "country-synonym",
"format": "solr",
"synonyms": "germany, dl, deutschland india, ind",
"encryptionKey": null
}
What am I doing wrong?