{"$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}}}