$tags * @property string $key */ class PutSongRequest extends BaseRequest { /** @return array */ public function rules(): array { return [ 'bucket' => 'required', 'key' => 'required', 'tags.duration' => 'required|numeric', ]; } }