UNPKG

@batolye/bdk-core

Version:

Module to provide core utilities for BulusAtolyesi applications and services

36 lines (34 loc) 904 B
{ "$schema": "http://json-schema.org/draft-06/schema#", "$id": "http://batolye.xyz/schemas/users.update-profile.json#", "title": "<%= object.name %>", "description": "User profile perspective", "type": "object", "properties": { "avatar": { "type": "object", "field": { "component": "form/EAttachmentField", "helper": "schemas.AVATAR_FIELD_HELPER", "service": "storage", "acceptedFiles": "image/*", "maxFilesize": 0.5, "autoProcessQueue": false, "storagePath": "avatars/<%= id %>", "params": { "public": true } } }, "name": { "type": "string", "maxLength": 128, "minLength": 3, "field": { "component": "form/ETextField", "helper": "schemas.NAME_FIELD_HELPER" } } }, "required": ["name"] }