MobileAPI.dev · Schema

Image

Data APIDeveloper ToolsDevice SpecificationsMobile DataPhone SpecsREST APISaaS

Properties

Name Type Description
id integer
image_url string
caption string Image caption/description
is_official boolean Is this an official product image?
order integer Display order
View JSON Schema on GitHub

JSON Schema

mobileapi-image-schema.json Raw ↑
{"$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.mobileapi.dev/schemas/image.json", "title": "Image", "type": "object", "properties": {"id": {"title": "ID", "type": "integer", "readOnly": true}, "image_url": {"title": "Image url", "type": "string", "readOnly": true}, "caption": {"title": "Caption", "description": "Image caption/description", "type": "string", "maxLength": 255}, "is_official": {"title": "Is official", "description": "Is this an official product image?", "type": "boolean"}, "order": {"title": "Order", "description": "Display order", "type": "integer", "maximum": 2147483647, "minimum": -2147483648}}}