Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 2.26 KB

File metadata and controls

45 lines (27 loc) · 2.26 KB

Voucherify.MetadataSchemaDefinitionDeprecated

Properties

Name Type Description Notes
type String [optional]
array Boolean Indicates whether the definition is an array. [optional]
optional Boolean Indicates whether this definition is optional or not optional for the resource. [optional]
objectType String Returns the name of the custom resource if the resource was previously defined in the Dashboard as a custom (non-standard) Nested object. [optional]
eq [Object] Array of possible values when the setting for `is equal to any of` in the Dashboard is defined explicitly. [optional]
ne [Object] Array of values that are not allowed when the setting for `is not equal to any of` in the Dashboard is defined explicitly. [optional]
lt Number A property of `number` type must have `less than` this value. [optional]
lte Number A property of `number` type must be `less than or equal` to this value. [optional]
gt Number A property of `number` type must be `greater than` this value. [optional]
gte Number A property of `number` type must be `greater than or equal` to this value. [optional]
deleted Boolean Indicates whether the definition was deleted from the schema. [optional]
maxLength Number Value for maximum length when the setting for `has maximum length of` in the Dashboard is defined explicitly. [optional]
minLength Number Value indicating minimum length when the setting for `has minimum length of` in the Dashboard is defined explicitly. [optional]
exactLength Number Value indicating exact length when the setting for `has exact length of` in the Dashboard is defined explicitly. [optional]

Enum: TypeEnum

  • string (value: "string")

  • number (value: "number")

  • object (value: "object")

  • date (value: "date")

  • datetime (value: "datetime")

  • geopoint (value: "geopoint")

  • boolean (value: "boolean")

  • image_url (value: "image_url")