mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
35 lines
488 B
JavaScript
35 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;
|