試験と関連トレーニング
- 以下の試験に合格する必要があります。
-
有効期間と再認定
CompTIA Tech+認定資格は有効期限がなく、生涯有効です。(定期的な更新が必要な他の認定資格とは異なります。)
@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 は不要
],
],
];