I'm trying to find the proper schema for telephones with extensions, but I can't find anything related to this problem through Google searches or schema.org.
In HTML, I'm using , to trigger the extension on cellphones and Skype, but I've also seen p used to "pause" between numbers when dialing. Which is the best route in regards to proper JSON-LD schema?
No extension used:
{
"@type": "Organization",
"telephone": "+18665554985"
}
Style 1 using p:
{
"@type": "Organization",
"telephone": "+18665554985p100"
}
Style 2 using ,:
{
"@type": "Organization",
"telephone": "+18665554985,100"
}