class JsonSchemaTypeFactory extends JsonSchema implements JsonSchema

Methods

static Type
__callStatic(string $name, array $arguments)

Dynamically pass static methods to the schema instance.

object(Type> $properties = [])

Create a new object schema instance.

integer()

Create a new integer property instance.

number()

Create a new number property instance.

string()

Create a new string property instance.

boolean()

Create a new boolean property instance.

array()

Create a new array property instance.

Details

in JsonSchema at line 23
static Type __callStatic(string $name, array $arguments)

Dynamically pass static methods to the schema instance.

Parameters

string $name
array $arguments

Return Value

Type

at line 17
ObjectType object(Type> $properties = [])

Create a new object schema instance.

Parameters

Type> $properties

Return Value

ObjectType

at line 45
IntegerType integer()

Create a new integer property instance.

Return Value

IntegerType

at line 53
NumberType number()

Create a new number property instance.

Return Value

NumberType

at line 37
StringType string()

Create a new string property instance.

Return Value

StringType

at line 61
BooleanType boolean()

Create a new boolean property instance.

Return Value

BooleanType

at line 29
ArrayType array()

Create a new array property instance.

Return Value

ArrayType