mirror of
https://github.com/vale981/Vulcan
synced 2025-03-11 13:06:41 -04:00
36 lines
488 B
JavaScript
36 lines
488 B
JavaScript
![]() |
const schema = {
|
||
|
|
||
|
name: {
|
||
|
label: 'Name',
|
||
|
type: String,
|
||
|
viewableBy: ['admins'],
|
||
|
},
|
||
|
|
||
|
value: {
|
||
|
label: 'Value',
|
||
|
type: Object,
|
||
|
viewableBy: ['admins'],
|
||
|
},
|
||
|
|
||
|
defaultValue: {
|
||
|
label: 'Default Value',
|
||
|
type: Object,
|
||
|
viewableBy: ['admins'],
|
||
|
},
|
||
|
|
||
|
public: {
|
||
|
label: 'Public',
|
||
|
type: Boolean,
|
||
|
viewableBy: ['admins'],
|
||
|
},
|
||
|
|
||
|
description: {
|
||
|
label: 'Description',
|
||
|
type: String,
|
||
|
viewableBy: ['admins'],
|
||
|
},
|
||
|
|
||
|
};
|
||
|
|
||
|
export default schema;
|