'1.0.0', 'routes' => [ '/coins' => [ '/' => 'List all coins', '/add' => 'Add coin' ], '/coin/{coin_id}' => [ '/' => 'Show coin information', '/edit' => 'Edit coin', '/delete' => 'Delete coin' ], '/locations' => [ '/' => 'List all locations', '/add' => 'Add location' ], '/location/{location_id}' => [ '/' => 'Show location information', '/edit' => 'Edit location', '/delete' => 'Delete location' ], '/wallets' => [ '/' => 'List all wallets', '/add' => 'Add wallet' ], '/wallet/{wallet_id}' => [ '/' => 'Show wallet information', '/edit' => 'Edit wallet', '/delete' => 'Delete wallet' ] ] ]; return $this->withJson($response, $output); } }