MobileAPI.dev · Schema

Display

Data APIDeveloper ToolsDevice SpecificationsMobile DataPhone SpecsREST APISaaS

Properties

Name Type Description
id integer
type string Display type (OLED, LCD, etc.) and features
size string Screen size
resolution string Screen resolution
protection string Screen protection (Gorilla Glass, etc.)
other string Other display features
View JSON Schema on GitHub

JSON Schema

mobileapi-display-schema.json Raw ↑
{"$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.mobileapi.dev/schemas/display.json", "title": "Display", "type": "object", "properties": {"id": {"title": "ID", "type": "integer", "readOnly": true}, "type": {"title": "Type", "description": "Display type (OLED, LCD, etc.) and features", "type": "string"}, "size": {"title": "Size", "description": "Screen size", "type": "string", "maxLength": 255}, "resolution": {"title": "Resolution", "description": "Screen resolution", "type": "string", "maxLength": 255}, "protection": {"title": "Protection", "description": "Screen protection (Gorilla Glass, etc.)", "type": "string", "maxLength": 255}, "other": {"title": "Other", "description": "Other display features", "type": "string"}}}