MobileAPI.dev · Schema

Battery

Data APIDeveloper ToolsDevice SpecificationsMobile DataPhone SpecsREST APISaaS

Properties

Name Type Description
id integer
type string Battery type and capacity (Li-Ion, Li-Po, mAh)
charging string Charging capabilities (wired, wireless, fast charging, etc.)
View JSON Schema on GitHub

JSON Schema

mobileapi-battery-schema.json Raw ↑
{"$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.mobileapi.dev/schemas/battery.json", "title": "Battery", "type": "object", "properties": {"id": {"title": "ID", "type": "integer", "readOnly": true}, "type": {"title": "Type", "description": "Battery type and capacity (Li-Ion, Li-Po, mAh)", "type": "string", "maxLength": 255}, "charging": {"title": "Charging", "description": "Charging capabilities (wired, wireless, fast charging, etc.)", "type": "string"}}}