Skip to content

Interface: Joi

Properties

PropertyTypeDescription
cacheCacheConfiguration-
overridesymbolA special value used with any.allow(), any.invalid(), and any.valid() as the first value to reset any previously set values.
ValidationError(message: string, details: ValidationErrorItem[], original: any) => ValidationError-
versionstringCurrent version of the joi package.

Methods

allow()

ts
allow(...values: any[]): Schema;

Whitelists a value

Parameters

ParameterType
...valuesany[]

Returns

Schema


alt()

Call Signature

ts
alt<TSchema>(types: SchemaLike[]): AlternativesSchema<TSchema>;

Alias for alternatives

Type Parameters
Type ParameterDefault type
TSchemaany
Parameters
ParameterType
typesSchemaLike[]
Returns

AlternativesSchema<TSchema>

Call Signature

ts
alt<TSchema>(...types: SchemaLike[]): AlternativesSchema<TSchema>;
Type Parameters
Type ParameterDefault type
TSchemaany
Parameters
ParameterType
...typesSchemaLike[]
Returns

AlternativesSchema<TSchema>


alternatives()

Call Signature

ts
alternatives<TSchema>(types: SchemaLike[]): AlternativesSchema<TSchema>;

Generates a type that will match one of the provided alternative schemas

Type Parameters
Type ParameterDefault type
TSchemaany
Parameters
ParameterType
typesSchemaLike[]
Returns

AlternativesSchema<TSchema>

Call Signature

ts
alternatives<TSchema>(...types: SchemaLike[]): AlternativesSchema<TSchema>;
Type Parameters
Type ParameterDefault type
TSchemaany
Parameters
ParameterType
...typesSchemaLike[]
Returns

AlternativesSchema<TSchema>


any()

ts
any<TSchema>(): AnySchema<TSchema>;

Generates a schema object that matches any data type.

Type Parameters

Type ParameterDefault type
TSchemaany

Returns

AnySchema<TSchema>


array()

ts
array<TSchema>(): ArraySchema<TSchema>;

Generates a schema object that matches an array data type.

Type Parameters

Type ParameterDefault type
TSchemaany[]

Returns

ArraySchema<TSchema>


assert()

Call Signature

ts
assert(
   value: any,
   schema: Schema,
   options?: ValidationOptions): void;

Validates a value against a schema and throws if validation fails.

Parameters
ParameterTypeDescription
valueanythe value to validate.
schemaSchemathe schema object.
options?ValidationOptions-
Returns

void

Call Signature

ts
assert(
   value: any,
   schema: Schema,
   message: string | Error,
   options?: ValidationOptions): void;
Parameters
ParameterType
valueany
schemaSchema
messagestring | Error
options?ValidationOptions
Returns

void


attempt()

Call Signature

ts
attempt<TSchema>(
   value: any,
   schema: TSchema,
   options?: ValidationOptions): TSchema extends Schema<Value> ? Value : never;

Validates a value against a schema, returns valid object, and throws if validation fails.

Type Parameters
Type Parameter
TSchema extends Schema<any>
Parameters
ParameterTypeDescription
valueanythe value to validate.
schemaTSchemathe schema object.
options?ValidationOptions-
Returns

TSchema extends Schema<Value> ? Value : never

Call Signature

ts
attempt<TSchema>(
   value: any,
   schema: TSchema,
   message: string | Error,
   options?: ValidationOptions): TSchema extends Schema<Value> ? Value : never;
Type Parameters
Type Parameter
TSchema extends Schema<any>
Parameters
ParameterType
valueany
schemaTSchema
messagestring | Error
options?ValidationOptions
Returns

TSchema extends Schema<Value> ? Value : never


binary()

ts
binary<TSchema>(): BinarySchema<TSchema>;

Generates a schema object that matches a Buffer data type (as well as the strings which will be converted to Buffers).

Type Parameters

Type ParameterDefault type
TSchemaBuffer

Returns

BinarySchema<TSchema>


bool()

ts
bool<TSchema>(): BooleanSchema<TSchema>;

Generates a schema object that matches a boolean data type (as well as the strings 'true', 'false', 'yes', and 'no'). Can also be called via boolean().

Type Parameters

Type ParameterDefault type
TSchemaboolean

Returns

BooleanSchema<TSchema>


boolean()

ts
boolean<TSchema>(): BooleanSchema<TSchema>;

Generates a schema object that matches a boolean data type (as well as the strings 'true', 'false', 'yes', and 'no'). Can also be called via bool().

Type Parameters

Type ParameterDefault type
TSchemaboolean

Returns

BooleanSchema<TSchema>


build()

ts
build(...args: any[]): any;

Unsure, maybe alias for compile?

Parameters

ParameterType
...argsany[]

Returns

any


checkPreferences()

ts
checkPreferences(prefs: ValidationOptions): void;

Checks if the provided preferences are valid.

Throws an exception if the prefs object is invalid.

The method is provided to perform inputs validation for the any.validate() and any.validateAsync() methods. Validation is not performed automatically for performance reasons. Instead, manually validate the preferences passed once and reuse.

Parameters

ParameterType
prefsValidationOptions

Returns

void


compile()

ts
compile(schema: SchemaLike, options?: CompileOptions): Schema;

Converts literal schema definition to joi schema object (or returns the same back if already a joi schema object).

Parameters

ParameterType
schemaSchemaLike
options?CompileOptions

Returns

Schema


custom()

ts
custom(fn: CustomValidator, description?: string): Schema;

Creates a custom validation schema.

Parameters

ParameterType
fnCustomValidator
description?string

Returns

Schema


date()

ts
date<TSchema>(): DateSchema<TSchema>;

Generates a schema object that matches a date type (as well as a JavaScript date string or number of milliseconds).

Type Parameters

Type ParameterDefault type
TSchemaDate

Returns

DateSchema<TSchema>


defaults()

ts
defaults(fn: SchemaFunction): Root;

Creates a new Joi instance that will apply defaults onto newly created schemas through the use of the fn function that takes exactly one argument, the schema being created.

Parameters

ParameterTypeDescription
fnSchemaFunctionThe function must always return a schema, even if untransformed.

Returns

Root


disallow()

ts
disallow(...values: any[]): Schema;

Parameters

ParameterType
...valuesany[]

Returns

Schema


equal()

ts
equal(...values: any[]): Schema;

Parameters

ParameterType
...valuesany[]

Returns

Schema


exist()

ts
exist(): Schema;

Alias of required.

Returns

Schema


expression()

ts
expression(template: string, options?: ReferenceOptions): any;

Generates a dynamic expression using a template string.

Parameters

ParameterType
templatestring
options?ReferenceOptions

Returns

any


extend()

ts
extend(...extensions: (Extension | ExtensionFactory)[]): any;

Creates a new Joi instance customized with the extension(s) you provide included.

Parameters

ParameterType
...extensions(Extension | ExtensionFactory)[]

Returns

any


forbidden()

ts
forbidden(): Schema;

Marks a key as forbidden which will not allow any value except undefined. Used to explicitly forbid keys.

Returns

Schema


func()

ts
func<TSchema>(): FunctionSchema<TSchema>;

Generates a schema object that matches a function type.

Type Parameters

Type ParameterDefault type
TSchemaFunction

Returns

FunctionSchema<TSchema>


function()

ts
function<TSchema>(): FunctionSchema<TSchema>;

Generates a schema object that matches a function type.

Type Parameters

Type ParameterDefault type
TSchemaFunction

Returns

FunctionSchema<TSchema>


in()

ts
in(ref: string, options?: ReferenceOptions): Reference;

Creates a reference that when resolved, is used as an array of values to match against the rule.

Parameters

ParameterType
refstring
options?ReferenceOptions

Returns

Reference


invalid()

ts
invalid(...values: any[]): Schema;

Blacklists a value

Parameters

ParameterType
...valuesany[]

Returns

Schema


isError()

ts
isError(error: any): error is ValidationError;

Checks whether or not the provided argument is an instance of ValidationError

Parameters

ParameterType
errorany

Returns

error is ValidationError


isExpression()

ts
isExpression(expression: any): boolean;

Checks whether or not the provided argument is an expression.

Parameters

ParameterType
expressionany

Returns

boolean


isRef()

ts
isRef(ref: any): ref is Reference;

Checks whether or not the provided argument is a reference. It's especially useful if you want to post-process error messages.

Parameters

ParameterType
refany

Returns

ref is Reference


isSchema()

ts
isSchema(schema: any, options?: CompileOptions): schema is AnySchema<any>;

Checks whether or not the provided argument is a joi schema.

Parameters

ParameterType
schemaany
options?CompileOptions

Returns

schema is AnySchema<any>


ts
link<TSchema>(ref?: string): LinkSchema<TSchema>;

Links to another schema node and reuses it for validation, typically for creative recursive schemas.

Type Parameters

Type ParameterDefault type
TSchemaany

Parameters

ParameterTypeDescription
ref?stringthe reference to the linked schema node. Cannot reference itself or its children as well as other links. Links can be expressed in relative terms like value references (Joi.link('...')), in absolute terms from the schema run-time root (Joi.link('/a')), or using schema ids implicitly using object keys or explicitly using any.id() (Joi.link('#a.b.c')).

Returns

LinkSchema<TSchema>


not()

ts
not(...values: any[]): Schema;

Parameters

ParameterType
...valuesany[]

Returns

Schema


number()

ts
number<TSchema>(): NumberSchema<TSchema>;

Generates a schema object that matches a number data type (as well as strings that can be converted to numbers).

Type Parameters

Type ParameterDefault type
TSchemanumber

Returns

NumberSchema<TSchema>


object()

ts
object<TSchema, isStrict, T>(schema?: SchemaMap<T, isStrict>): ObjectSchema<TSchema>;

Generates a schema object that matches an object data type (as well as JSON strings that have been parsed into objects).

Type Parameters

Type ParameterDefault type
TSchemaany
isStrictfalse
TTSchema

Parameters

ParameterType
schema?SchemaMap<T, isStrict>

Returns

ObjectSchema<TSchema>


optional()

ts
optional(): Schema;

Marks a key as optional which will allow undefined as values. Used to annotate the schema for readability as all keys are optional by default.

Returns

Schema


options()

ts
options(...args: any[]): any;

Unsure, maybe alias for preferences?

Parameters

ParameterType
...argsany[]

Returns

any


preferences()

ts
preferences(options: ValidationOptions): Schema;

Overrides the global validate() options for the current key and any sub-key.

Parameters

ParameterType
optionsValidationOptions

Returns

Schema


prefs()

ts
prefs(options: ValidationOptions): Schema;

Overrides the global validate() options for the current key and any sub-key.

Parameters

ParameterType
optionsValidationOptions

Returns

Schema


ref()

ts
ref(key: string, options?: ReferenceOptions): Reference;

Generates a reference to the value of the named key.

Parameters

ParameterType
keystring
options?ReferenceOptions

Returns

Reference


required()

ts
required(): Schema;

Marks a key as required which will not allow undefined as value. All keys are optional by default.

Returns

Schema


string()

ts
string<TSchema>(): StringSchema<TSchema>;

Generates a schema object that matches a string data type. Note that empty strings are not allowed by default and must be enabled with allow('').

Type Parameters

Type ParameterDefault type
TSchemastring

Returns

StringSchema<TSchema>


symbol()

ts
symbol<TSchema>(): SymbolSchema<TSchema>;

Generates a schema object that matches any symbol.

Type Parameters

Type ParameterDefault type
TSchemaSymbol

Returns

SymbolSchema<TSchema>


trace()

ts
trace(...args: any[]): any;

Unsure, maybe leaked from @hapi/lab/coverage/initialize

Parameters

ParameterType
...argsany[]

Returns

any


types()

ts
types(): {
  alternatives: AlternativesSchema;
  any: AnySchema;
  array: ArraySchema;
  binary: BinarySchema;
  boolean: BooleanSchema;
  date: DateSchema;
  function: FunctionSchema;
  link: LinkSchema;
  number: NumberSchema;
  object: ObjectSchema;
  string: StringSchema;
  symbol: SymbolSchema;
};

Returns an object where each key is a plain joi schema type. Useful for creating type shortcuts using deconstruction. Note that the types are already formed and do not need to be called as functions (e.g. string, not string()).

Returns

ts
{
  alternatives: AlternativesSchema;
  any: AnySchema;
  array: ArraySchema;
  binary: BinarySchema;
  boolean: BooleanSchema;
  date: DateSchema;
  function: FunctionSchema;
  link: LinkSchema;
  number: NumberSchema;
  object: ObjectSchema;
  string: StringSchema;
  symbol: SymbolSchema;
}
NameType
alternativesAlternativesSchema
anyAnySchema
arrayArraySchema
binaryBinarySchema
booleanBooleanSchema
dateDateSchema
functionFunctionSchema
linkLinkSchema
numberNumberSchema
objectObjectSchema
stringStringSchema
symbolSymbolSchema

untrace()

ts
untrace(...args: any[]): any;

Parameters

ParameterType
...argsany[]

Returns

any


valid()

ts
valid(...values: any[]): Schema;

Adds the provided values into the allowed whitelist and marks them as the only valid values allowed.

Parameters

ParameterType
...valuesany[]

Returns

Schema


when()

Call Signature

ts
when(ref: string | Reference, options: WhenOptions | WhenOptions[]): AlternativesSchema;

Converts the type into an alternatives type where the conditions are merged into the type definition where:

Parameters
ParameterType
refstring | Reference
optionsWhenOptions | WhenOptions[]
Returns

AlternativesSchema

Call Signature

ts
when(ref: Schema, options: WhenSchemaOptions): AlternativesSchema;
Parameters
ParameterType
refSchema
optionsWhenSchemaOptions
Returns

AlternativesSchema


x()

ts
x(template: string, options?: ReferenceOptions): any;

Generates a dynamic expression using a template string.

Parameters

ParameterType
templatestring
options?ReferenceOptions

Returns

any