Intended for notes to schema maintainers, as opposed to "description" which is suitable for display to end users.
default
The default keyword specifies a default value for an property. Additional you can overwrite default with advancedDefault keyword. With advancedDefault you can set default from URL query component value or from custom JavaScript code.
Bottom example first tries to set default from http://localhost?email= URL encoded value if not found it will fallback to default keyword.
searchable?: {
title?: string;
/**
* If enabled it will be displayed to user under More button, when using advanced search.
*/
byUser?: {
/**
* Only show search field if specific mode is present.
*/
$mode?: string;
enabled?: true;
}
}