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

20 lines
627 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:MobileApplication",
"title": "MobileApplication",
"description": "A software application designed specifically to work well on a mobile device such as a telephone.",
"type": "object",
"allOf": [
{
"description": "A software application.",
"$ref": "schema:SoftwareApplication"
}
],
"properties": {
"carrierRequirements": {
"description": "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).",
"type": "string"
}
}
}