MobileAPI.dev · Schema

Manufacturer

Data APIDeveloper ToolsDevice SpecificationsMobile DataPhone SpecsREST APISaaS

Properties

Name Type Description
id integer
name string
logo_b64 string
website_url string Manufacturer official website URL
View JSON Schema on GitHub

JSON Schema

mobileapi-manufacturer-schema.json Raw ↑
{"$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.mobileapi.dev/schemas/manufacturer.json", "title": "Manufacturer", "required": ["name"], "type": "object", "properties": {"id": {"title": "ID", "type": "integer", "readOnly": true}, "name": {"title": "Name", "type": "string", "maxLength": 255, "minLength": 1}, "logo_b64": {"title": "Logo b64", "type": "string", "readOnly": true}, "website_url": {"title": "Website url", "description": "Manufacturer official website URL", "type": "string", "format": "uri", "maxLength": 500, "nullable": true}}}