'object', 'properties' => [ 'limit' => [ 'type' => 'integer', 'minimum' => 0, ], 'offset' => [ 'type' => 'integer', 'minimum' => 0, ], ], ]; } /** * {@inheritdoc} */ public function getOutputValidator() { // The input is the same as the output. return $this->getInputValidator(); } /** * {@inheritdoc} */ protected function doTransform($data, Context $context = NULL) { return $data; } }