MobileAPI.dev · Schema

Platform

Data APIDeveloper ToolsDevice SpecificationsMobile DataPhone SpecsREST APISaaS

Properties

Name Type Description
id integer
os string Operating system
chipset string Chipset/SoC
cpu string CPU specifications
gpu string GPU specifications
View JSON Schema on GitHub

JSON Schema

mobileapi-platform-schema.json Raw ↑
{"$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.mobileapi.dev/schemas/platform.json", "title": "Platform", "type": "object", "properties": {"id": {"title": "ID", "type": "integer", "readOnly": true}, "os": {"title": "Os", "description": "Operating system", "type": "string", "maxLength": 255}, "chipset": {"title": "Chipset", "description": "Chipset/SoC", "type": "string", "maxLength": 255}, "cpu": {"title": "Cpu", "description": "CPU specifications", "type": "string", "maxLength": 255}, "gpu": {"title": "Gpu", "description": "GPU specifications", "type": "string", "maxLength": 255}}}