addRule('key', [ 'type' => self::TYPE_STRING, 'description' => 'Attribute Key.', 'default' => '', 'example' => 'fullName', ]) ->addRule('type', [ 'type' => self::TYPE_STRING, 'description' => 'Attribute type.', 'default' => '', 'example' => 'string', ]) ->addRule('status', [ 'type' => self::TYPE_STRING, 'description' => 'Attribute status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed`', 'default' => '', 'example' => 'available', ]) ->addRule('required', [ 'type' => self::TYPE_BOOLEAN, 'description' => 'Is attribute required?', 'default' => false, 'example' => true, ]) ->addRule('array', [ 'type' => self::TYPE_BOOLEAN, 'description' => 'Is attribute an array?', 'default' => false, 'required' => false, 'example' => false, ]) ; } public array $conditions = []; /** * Get Name * * @return string */ public function getName(): string { return 'Attribute'; } /** * Get Collection * * @return string */ public function getType(): string { return Response::MODEL_ATTRIBUTE; } }