Cisco Certified DevNet Specialist - Core
試験と関連トレーニング
- 以下の試験に合格する必要があります。
-
有効期間と再認定
シスコスペシャリスト認定を含むほとんどのシスコ認定は、認定を取得した日から3年間有効です。
再認定は、必要な継続教育やその他の再認定活動をすべて完了した日に有効になります。有効期間は3年間です。
@php
$organizationLd = [
'@context' => 'https://schema.org',
'@type' => 'Organization',
'name' => 'Top Out Human Capital株式会社',
'url' => 'https://www.topout.co.jp',
'logo' => 'https://www.topout.co.jp/common/img/logo.svg',
'telephone'=> '03-5403-6370',
'address' => [
'@type' => 'PostalAddress',
'addressRegion' => '東京都',
'addressLocality' => '港区',
'streetAddress' => '海岸1-2-3 汐留芝離宮ビルディング21階',
'postalCode' => '105-0022',
'addressCountry' => 'JP',
],
];
@endphp
$breadcrumbLd = [
'@context' => 'https://schema.org',
'@type' => 'BreadcrumbList',
'itemListElement' => [
[
'@type' => 'ListItem',
'position' => 1,
'name' => 'ホーム',
'item' => 'https://www.topout.co.jp/',
],
[
'@type' => 'ListItem',
'position' => 2,
'name' => 'トレーニングを探す',
'item' => 'https://www.topout.co.jp/trainings/',
],
[
'@type' => 'ListItem',
'position' => 3,
'name' => $breadcrumbs->Classification,
'item' => 'https://www.topout.co.jp/trainings/certification/' . $breadcrumbs->URL . '/',
],
[
'@type' => 'ListItem',
'position' => 4,
'name' => $breadcrumbs->OfficialCertName,
// 最終階層なので item は不要
],
],
];