Files
marka/registry/schema-org/ContactPointOption.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

18 lines
482 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:ContactPointOption",
"title": "ContactPointOption",
"description": "Enumerated options related to a ContactPoint.",
"type": "string",
"oneOf": [
{
"description": "Uses devices to support users with hearing impairments.",
"const": "HearingImpairedSupported"
},
{
"description": "The associated telephone number is toll free.",
"const": "TollFree"
}
]
}