MobileAPI.dev · Schema
Body
Data APIDeveloper ToolsDevice SpecificationsMobile DataPhone SpecsREST APISaaS
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| dimensions | string | Device dimensions |
| weight | string | Device weight |
| build | string | Build materials and construction |
| sim | string | SIM card information |
| other | string | Other body specifications (IP rating, features, etc.) |
JSON Schema
{"$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.mobileapi.dev/schemas/body.json", "title": "Body", "type": "object", "properties": {"id": {"title": "ID", "type": "integer", "readOnly": true}, "dimensions": {"title": "Dimensions", "description": "Device dimensions", "type": "string", "maxLength": 255}, "weight": {"title": "Weight", "description": "Device weight", "type": "string", "maxLength": 100}, "build": {"title": "Build", "description": "Build materials and construction", "type": "string"}, "sim": {"title": "Sim", "description": "SIM card information", "type": "string"}, "other": {"title": "Other", "description": "Other body specifications (IP rating, features, etc.)", "type": "string"}}}