MobileAPI.dev · Schema
Comms
Data APIDeveloper ToolsDevice SpecificationsMobile DataPhone SpecsREST APISaaS
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| wlan | string | Wi-Fi specifications |
| bluetooth | string | Bluetooth version and features |
| positioning | string | GPS and positioning systems |
| nfc | string | NFC availability |
| radio | string | FM radio availability |
| usb | string | USB specifications |
JSON Schema
{"$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.mobileapi.dev/schemas/comms.json", "title": "Comms", "type": "object", "properties": {"id": {"title": "ID", "type": "integer", "readOnly": true}, "wlan": {"title": "Wlan", "description": "Wi-Fi specifications", "type": "string", "maxLength": 255}, "bluetooth": {"title": "Bluetooth", "description": "Bluetooth version and features", "type": "string", "maxLength": 255}, "positioning": {"title": "Positioning", "description": "GPS and positioning systems", "type": "string", "maxLength": 255}, "nfc": {"title": "Nfc", "description": "NFC availability", "type": "string", "maxLength": 100}, "radio": {"title": "Radio", "description": "FM radio availability", "type": "string", "maxLength": 100}, "usb": {"title": "Usb", "description": "USB specifications", "type": "string", "maxLength": 255}}}