認証済み AgentReady.md 証明書
発行日時 sig: 6d7fedda8c8ecbff 検証 →

分析済みURL

https://www.ucanwest.ca/

別のURLを分析

AI-Readyスコア

56 / D

不十分

/ 100

トークン削減量

HTMLトークン 234.087
Markdownトークン 938
削減率 100%

スコア内訳

セマンティックHTML 57/100
コンテンツ効率 43/100
AI発見可能性 45/100
構造化データ 70/100
アクセシビリティ 82/100

新興プロトコル

3件中0件検出

AIエージェントが探すwell-knownエンドポイント。検出されればエージェントが自動的にあなたのサービスを発見・接続できます。

  • OAuth Discovery RFC 8414
    /.well-known/oauth-authorization-server
  • MCP Server Card Anthropic
    /.well-known/mcp.json
  • A2A Agent Card Google
    /.well-known/agent.json

ページの実際のコンテンツとHTML全体の比率が低いです。ページ重量の多くがコンテンツではなくマークアップ、スクリプト、スタイルです。

実装方法

CSSを外部スタイルシートに移動し、インラインスタイルを削除し、JavaScriptを最小化し、HTMLがコンテンツ構造に集中するようにしてください。

サイトがMarkdown for Agentsに対応していません。このCloudflare標準により、AIエージェントがmarkdown形式でコンテンツをリクエストでき、トークン使用量を約80%削減できます。

実装方法

以下の1つ以上を実装してください:(1) Accept: text/markdownにmarkdownコンテンツで応答。(2) .md URL(例:/page.md)を提供。(3) <link rel="alternate" type="text/markdown">タグを追加。(4) markdown検出用のLink HTTPヘッダーを追加。

{\n res.setHeader('Vary', 'Accept');\n res.setHeader('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n res.type('text/markdown; charset=utf-8');\n return res.send(renderMarkdown('page'));\n }\n res.render('page');\n});"},{"id":"fastify","label":"Fastify","language":"javascript","filename":"server.js","code":"// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n reply.header('Vary', 'Accept');\n reply.header('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n }\n return reply.view('/page.ejs');\n});"},{"id":"nextjs","label":"Next.js","language":"typescript","filename":"app/page/route.ts","code":"// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n const accept = req.headers.get('accept') || '';\n if (accept.includes('text/markdown')) {\n return new Response(await renderMarkdown('page'), {\n headers: {\n 'Content-Type': 'text/markdown; charset=utf-8',\n 'Vary': 'Accept',\n },\n });\n }\n // Fall through to the page component\n return new Response(null, { status: 404 });\n}"},{"id":"wordpress","label":"WordPress","language":"php","filename":"functions.php","code":"post_content));\n exit;\n});"},{"id":"static","label":"Hugo / Jekyll / Astro","language":"txt","filename":"static/page.md","code":"# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in :\n# "}] }'>

サイトマップが見つかりません。サイトマップはAIエージェントがサイトのすべてのページを発見するのに役立ちます。

実装方法

すべての公開ページをリストした/sitemap.xmlを作成してください。ほとんどのCMSプラットフォームで自動生成できます。

Content-Signalディレクティブが見つかりません。これらはAIエージェントにコンテンツの使用方法(検索インデックス、AI入力、トレーニングデータ)を伝えます。推奨場所はrobots.txtです。

実装方法

robots.txtにContent-Signalを追加:User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no。markdown応答のHTTPヘッダーとしても追加できます。

{\n res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n done();\n});"}] }'>

多くの要素にインラインスタイル属性があります。これらはAIエージェントがコンテンツを抽出する際のノイズになります。

実装方法

すべてのインラインスタイルをスタイルシートのCSSクラスに移動してください。多くの固有スタイルが必要な場合はTailwindなどのユーティリティCSSフレームワークを使用してください。

見出し構造に問題があります(レベルの飛ばしや複数のh1タグ)。クリーンな階層はAIエージェントがコンテンツ構成を理解するのに役立ちます。

実装方法

ページごとに正確に1つの<h1>を持ち、見出しが順番に従うようにしてください:h1 > h2 > h3。レベルを飛ばさないでください(例:h1から直接h3)。

Schema.org構造化データが見つかりません。JSON-LDはAIエージェントがページから事実に基づいた構造化情報を抽出するのに役立ちます。

実装方法

Schema.orgマークアップを含む<script type="application/ld+json">ブロックを追加してください。適切なタイプを使用:ブログ投稿にはArticle、製品ページにはProduct、企業ページにはOrganization。

ページが<div>要素に大きく依存しています。<section>、<nav>、<header>、<footer>、<aside>などのセマンティック要素はAIエージェントに意味のある構造を提供します。

実装方法

汎用的な<div>コンテナを適切なセマンティック要素に置き換えてください。テーマ別グループには<section>、ナビゲーションには<nav>、ページ/セクションのヘッダーとフッターには<header>/<footer>を使用してください。

ページが推奨サイズより大きいです。大きなページはAIエージェントの処理が遅く、コストも高くなります。

実装方法

HTMLの最小化、非重要スクリプトの遅延読み込み、未使用CSSの削除によりページサイズを最適化してください。

HTMLページが推奨値より重いです。大きなページはAIエージェントの処理に時間がかかり、より多くのトークンを消費します。

実装方法

未使用コードの削除、HTMLの最小化、非重要コンテンツの遅延読み込みによりHTMLサイズを削減してください。

Markdownトークン: 938
## THE UCW DIFFERENCE#### Are you trying to explore a new career path?
Or are you looking to gain particular skills to set you apart in the job market?

[Learn MORE](https://www.ucanwest.ca/programs)

## Our Programs

At UCW, we offer a diverse range of undergraduate and graduate programs designed to empower students with the skills, knowledge and experiences needed to thrive in today’s dynamic professional landscape.

![ucw-masters](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fucw-masters.webp&w=3840&q=75)

### Master's Programs

UCW offers a globally recognized ACBSP and NCMA-accredited MBA program. Our MBA degree challenges students in areas vital to business operation and administration.

![ucw-undergraduates](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fucw-undergraduates.webp&w=3840&q=75)

### Undergraduate Programs

Our undergraduate courses can help you gain the practical skills & industry-relevant knowledge required for launching your career and will prepare you for a successful career path.

![microcredentials](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fmicrocredentials.webp&w=3840&q=75)

### Micro-Credentials

Our micro-credential programs are focused on technology, business and innovation. These courses can help you gain valuable and specific skills in a short amount of time.

## Why Choose UCW

#### Winners of the 2023 BC MBA Games and 2024 National MBA Games. With our 5 Star QS Rating, students continue to choose us as their top study destination. Our students lead the future by working at major global companies, such as Google, Apple, Amazon and SAP.

![](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fi.ytimg.com%2Fvi%2F9WyFMZxSGSw%2Fhqdefault.jpg&w=3840&q=75)

###### \*Based on survey results from Fall 2025

## 2024 National MBA Games Winner

We are thrilled to announce the first place victory of our MBA Games team at the 2024 national MBA Games. UCW is the first university in history to win both the BC MBA Games and national MBA Games at the same time.

## UCW Student Life

At UCW, we’re committed to your success. From career development, mentorship and student events to academic advising and more, we’re here to ensure your time at UCW and beyond a success.

## Career Services & Student Support

We work with students and graduates to provide them with the necessary career planning and job search tools to help them transition from education to employment.

![image](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FFrame-3-1.png&w=3840&q=75)

## Student Testimonials

## Accreditations & Memberships

## Explore our campuses

University Canada West is an innovative business and technology-oriented institution located in the heart of vibrant Vancouver. Established in 2004, UCW offers a range of career-focused programs including the Bachelor of Commerce, Bachelor of Arts in Business Communication, Associate of Arts and Master of Business Administration. Courses are offered at our two downtown Vancouver campuses and online too. Offering courses online brings flexibility to education, allowing those who may not have otherwise had the opportunity to gain respected qualifications.

## Start your program today!

Offering courses online brings to education, allowing those who may not have otherwise had the opportunity to gain respected qualifications
University in Vancouver | University Canada West (UCW)

[MyUCW](https://www.myucwest.ca/login "MyUCW")

[Partners](https://www.ucanwest.ca/partners "Partners")

[Careers](https://www.ucanwest.ca/hr "Careers")

[Alumni](https://www.ucanwest.ca/alumni "Alumni")

[Convocation](https://www.ucanwest.ca/convocation "Convocation")

[WhatsApp](https://api.whatsapp.com/send/?phone=17783571500&text&type=phone_number&app_absent=0 "WhatsApp")

[Inquire](https://www.ucanwest.ca/search "Inquire")

[Contact](https://www.ucanwest.ca/contact-us "Contact")

[Search](https://www.ucanwest.ca/search "Search")

[MyUCW](https://www.myucwest.ca/login "MyUCW")

[Partners](https://www.ucanwest.ca/partners "Partners")

[Careers](https://www.ucanwest.ca/hr "Careers")

[Apply Now](https://www.ucanwest.ca/apply)[Contact](https://www.ucanwest.ca/contact-us)[Whatsapp](https://wa.me/17783571500)

# THE UCW DIFFERENCE#### Are you trying to explore a new career path?
Or are you looking to gain particular skills to set you apart in the job market?[Learn MORE](https://www.ucanwest.ca/programs)

[](https://www.instagram.com/university_canada_west)

[](https://www.facebook.com/ucanwest)

[](https://www.linkedin.com/school/ucanwest)

[](https://www.youtube.com/user/CanadaUniversity)

## Our Programs

At UCW, we offer a diverse range of undergraduate and graduate programs designed to empower students with the skills, knowledge and experiences needed to thrive in today’s dynamic professional landscape.

[

Learn more

](https://www.ucanwest.ca/programs)

![ucw-masters](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fucw-masters.webp&w=3840&q=75)

### Master's Programs

UCW offers a globally recognized ACBSP and NCMA-accredited MBA program. Our MBA degree challenges students in areas vital to business operation and administration.

[

Learn More

](https://www.ucanwest.ca/programs/graduate)

![ucw-undergraduates](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fucw-undergraduates.webp&w=3840&q=75)

### Undergraduate Programs

Our undergraduate courses can help you gain the practical skills & industry-relevant knowledge required for launching your career and will prepare you for a successful career path.

[

Learn More

](https://www.ucanwest.ca/programs/undergraduate)

![microcredentials](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fmicrocredentials.webp&w=3840&q=75)

### Micro-Credentials

Our micro-credential programs are focused on technology, business and innovation. These courses can help you gain valuable and specific skills in a short amount of time.

[

Learn More

](https://www.ucanwest.ca/programs/micro-credentials)

[

Apply now

](https://www.ucanwest.ca/students/new-students/speak-with-an-advisor)

## Why Choose UCW

#### Winners of the 2023 BC MBA Games and 2024 National MBA Games. With our 5 Star QS Rating, students continue to choose us as their top study destination. Our students lead the future by working at major global companies, such as Google, Apple, Amazon and SAP.

### 92%#### MBA Alumni Employment Rate\*

### 5 STARS#### QS Star Rated Institution

### 7,000+#### Students from 100 countries

### 92%#### Student Graduation Rate

![](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fi.ytimg.com%2Fvi%2F9WyFMZxSGSw%2Fhqdefault.jpg&w=3840&q=75)

###### \*Based on survey results from Fall 2025

## 2024 National MBA Games Winner

We are thrilled to announce the first place victory of our MBA Games team at the 2024 national MBA Games. UCW is the first university in history to win both the BC MBA Games and national MBA Games at the same time.

[

Learn more

](https://www.ucanwest.ca/media/news-releases/vancouver-university-wins-bc-and-national-mba-games)[

Button 2

](https://www.ucanwest.ca/#)

## UCW Student Life

At UCW, we’re committed to your success. From career development, mentorship and student events to academic advising and more, we’re here to ensure your time at UCW and beyond a success.

[

Career Development

](https://www.ucanwest.ca/students/student-affairs/career-development-centre)[

Library

](https://www.ucanwest.ca/academics/library)[

Student Clubs

](https://community.myucwest.ca/home)[

International Student Advisors

](https://www.myucwest.ca/cms/?p=1813)

## Career Services & Student Support

We work with students and graduates to provide them with the necessary career planning and job search tools to help them transition from education to employment.

[

Let's show you

](https://www.ucanwest.ca/students/student-affairs)

![image](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FFrame-3-1.png&w=3840&q=75)

## Latest News

[

View More

](https://www.ucanwest.ca/media)

[![Open Access Government Logo Banner](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2022%2F08%2FOpen-Access-Government.webp%3Fquality%3D100%26w%3D1024&w=1920&q=75)](https://www.ucanwest.ca/media/ucw-in-the-news/entangled-futures-mother-and-machine-posthuman-and-feminist-transformation-of-reproduction)

[UCW In The News](https://www.ucanwest.ca/media/ucw-in-the-news)[### Entangled futures, mother and machine: posthuman and feminist transformation of reproduction](https://www.ucanwest.ca/media/ucw-in-the-news/entangled-futures-mother-and-machine-posthuman-and-feminist-transformation-of-reproduction)

04-14-2026University Canada West

The April 2026 edition of Open Access Government featured an editorial piece by UCW faculty members Dr. Gitanjaly Chhabra and Dr. Kaye Hare. Their work explores the intersection of technology and feminism, examining the posthuman transformation of reproduction.

[Learn More](https://www.ucanwest.ca/media/ucw-in-the-news/entangled-futures-mother-and-machine-posthuman-and-feminist-transformation-of-reproduction)

[![](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2026%2F04%2FFIFA-MUSEUM.jpg%3Fquality%3D100%26w%3D1024&w=640&q=75)](https://www.ucanwest.ca/media/university-news/14-ucw-students-selected-for-the-fifa-volunteer-program)

[University News](https://www.ucanwest.ca/media/university-news)[### 14 UCW Students Selected for the FIFA Volunteer Program](https://www.ucanwest.ca/media/university-news/14-ucw-students-selected-for-the-fifa-volunteer-program)

04-02-2026University Canada West

[Learn More](https://www.ucanwest.ca/media/university-news/14-ucw-students-selected-for-the-fifa-volunteer-program)

[![UCW signs MOU with Unypossible](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2026%2F03%2FUnypossible.jpg%3Fquality%3D100%26w%3D1024&w=640&q=75)](https://www.ucanwest.ca/media/university-news/ucw-signs-mou-with-unypossible)

[University News](https://www.ucanwest.ca/media/university-news)[### UCW signs MOU with Unypossible](https://www.ucanwest.ca/media/university-news/ucw-signs-mou-with-unypossible)

03-24-2026University Canada West

[Learn More](https://www.ucanwest.ca/media/university-news/ucw-signs-mou-with-unypossible)

[![](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2026%2F03%2FUCW-announces-new-MBA-specialization-in-Entrepreneurship.webp%3Fquality%3D100%26w%3D800&w=640&q=75)](https://www.ucanwest.ca/media/university-news/specialization-in-entrepreneurship-launches-at-ucw)

[University News](https://www.ucanwest.ca/media/university-news)[### Specialization in Entrepreneurship launches at UCW](https://www.ucanwest.ca/media/university-news/specialization-in-entrepreneurship-launches-at-ucw)

03-23-2026University Canada West

University Canada West’s Master of Business Administration (MBA) is getting another specialization. Students will have the opportunity to select a Specialization in Entrepreneurship. This goes along with the MBA specializations in Artificial Intelligence and Machine Learning Leadership, Supply Chain Management or Business Analytics that started in the Summer 2025 Term. The specialization includes courses in \[…\]

[Learn More](https://www.ucanwest.ca/media/university-news/specialization-in-entrepreneurship-launches-at-ucw)

## Student Testimonials

[

View More

](https://www.ucanwest.ca/testimonial/students)

![Mackenzie](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F03%2Ftestimonials-mackenzie-ucanwest-e1745433687535.png%3Fquality%3D100&w=1080&q=75)

#### MackenzieMBA Student

"My name is Mackenzie. I’m in the online Master of Business program at UCW. I chose UCW over other institutions because of its flexibility and because it’s a BC school. I also wanted the valuable skills I could get from UCW."

[Read More](https://www.ucanwest.ca/testimonial/students/mackenzie)

![Jessie Fung](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F03%2Ftestimonials-jessie-ucanwest-e1743629365505.png%3Fquality%3D100&w=1080&q=75)

#### Jessie FungMBA Alumna from Hong Kong

"I moved to Canada because I really wanted to expand my knowledge and broaden my horizons. UCW has helped me because it’s a business-oriented school and has helped me prepare to become a successful entrepreneur."

[Read More](https://www.ucanwest.ca/testimonial/students/jessie-fung)

![Anh](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2Ftestimonials-Anh-from-Vietnam-ucanwest.jpg%3Fquality%3D100&w=1080&q=75)

#### AnhMBA Student from Vietnam

"UCW’s faculty and its departments will foster your growth. The thing I like most about the program is that it allows me to explore my strengths and development areas in leadership."

[Read More](https://www.ucanwest.ca/testimonial/students/anh)

![Mau](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2023%2F09%2Ftestimonials-mau-ucanwest.png%3Fquality%3D100&w=1080&q=75)

#### MauAssociate of Arts Student from Mexico

"My name is Mau and I’m from Mexico. I’m a student at UCW enrolled in the Associate of Arts program. My experience has been really great. The instructors I’ve had at UCW for social justice courses have really helped me to critically think and engage with social issues."

[Read More](https://www.ucanwest.ca/testimonial/students/mau)

![Irene](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2Ftestimonials-Irene-MBA-ucanwest.jpg%3Fquality%3D100&w=1080&q=75)

#### IreneMBA Student from Nigeria

"I find UCW to be a vibrant environment. People from various nationalities united by their drive for knowledge, who want to know more about Canadian society, more about global society, more about the corporate workplace. I’ve learned so much."

[Read More](https://www.ucanwest.ca/testimonial/students/irene)

![David](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2022%2F08%2FDavid.jpg%3Fquality%3D100&w=1080&q=75)

#### DavidBABC Student from Columbia

"What I like about my program is that on one side, I have all the business knowledge of how to run a business and how to create a company. On the other hand, I have the communication techniques and know how to say things better."

[Read More](https://www.ucanwest.ca/testimonial/students/david)

## Accreditations & Memberships

[

View More

](https://www.ucanwest.ca/about/memberships-designations)

[

![NCMA-Logo-200x88-1](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FNCMA-Logo-200x88-1.webp&w=3840&q=80)

](https://cim.ca/accreditation/ncma-professionally-accredited-programs)

[

![educanada](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2Feducanada.png&w=3840&q=80)

](https://www.educanada.ca/index.aspx?lang=eng)

[

![canadian-bureau](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2Fcanadian-bureau.png&w=3840&q=80)

](https://cbie.ca/)

[

![AASHE-logo-200x80-1](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FAASHE-logo-200x80-1.png&w=3840&q=80)

](https://www.aashe.org/)

[

![AACSB-logo-accredited-color-RGB-scaled-1](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FAACSB-logo-accredited-color-RGB-scaled-1.jpg&w=3840&q=80)

](https://www.aacsb.edu/)

[

![BCCAT-4C-vert_1](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2022%2F05%2FBCCAT-4C-vert_1.png&w=3840&q=80)

](https://www.bccat.ca/)

[

![GUS-Logo-Sticky-1](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FGUS-Logo-Sticky-1.webp&w=3840&q=80)

](https://guscanada.com/)

[

![languages-canada-logo-transparent](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F12%2Flanguages-canada-logo-transparent.webp&w=3840&q=80)

](https://www.languagescanada.ca/en)

[

![BC-AMA-logo](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2022%2F05%2FBC-AMA-logo.png&w=3840&q=80)

](https://www.ama.org/)

[

![EQA-logo-small](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F03%2FEQA-logo-small.png&w=3840&q=80)

](https://www2.gov.bc.ca/gov/content/education-training/post-secondary-education/institution-resources-administration/education-quality-assurance)

[

![QS-Logo-new](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F12%2FQS-Logo-new.webp&w=3840&q=80)

](https://www.topuniversities.com/university-rankings)

![membership-designation-Academy-Member-Institution-ucanwest](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2025%2F08%2Fmembership-designation-Academy-Member-Institution-ucanwest.png&w=3840&q=80)

![membership-designation-pmi-atp-badge-ucanwest](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2025%2F08%2Fmembership-designation-pmi-atp-badge-ucanwest.png&w=3840&q=80)

## Explore our campuses

University Canada West is an innovative business and technology-oriented institution located in the heart of vibrant Vancouver. Established in 2004, UCW offers a range of career-focused programs including the Bachelor of Commerce, Bachelor of Arts in Business Communication, Associate of Arts and Master of Business Administration. Courses are offered at our two downtown Vancouver campuses and online too. Offering courses online brings flexibility to education, allowing those who may not have otherwise had the opportunity to gain respected qualifications.

[

Campus tour

](https://campus-tour.ucw.ca/)[

Button 2

](https://www.ucanwest.ca/#)

## Start your program today!

Offering courses online brings to education, allowing those who may not have otherwise had the opportunity to gain respected qualifications

[

apply now

](https://www.ucanwest.ca/students/new-students/speak-with-an-advisor)

![UCW-logo-outline-2x](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2022%2F12%2FUCW-logo-outline-2x.webp&w=3840&q=75)

1461 Granville Street

Vancouver, British Columbia

V6Z 0E5, Canada

[](https://www.instagram.com/university_canada_west)

[](https://www.facebook.com/ucanwest)

[](https://www.linkedin.com/school/ucanwest)

[](https://www.youtube.com/user/CanadaUniversity)

[](http://www.tiktok.com/@ucanwest)

##### UCW is part of:

![GUSlogo-whitewtransparency-01](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2021%2F05%2FGUSlogo-whitewtransparency-01.png&w=3840&q=75)

#### Useful Links

[MyUCW](https://www.myucwest.ca/login)

[Staff & Faculty Directory](https://www.ucanwest.ca/directory)

[Careers](https://www.ucanwest.ca/hr)

[Alumni Portal](https://alumni.myucwest.ca/)

[Policies](https://www.ucanwest.ca/about/policies)

[Employers](https://www.ucanwest.ca/students/student-affairs/career-development-centre)

#### Contact

[Contact](https://www.ucanwest.ca/contact-us)

[Whatsapp](https://api.whatsapp.com/send/?phone=17783571500&text&type=phone_number&app_absent=0)

[Visit Us](https://www.ucanwest.ca/our-campuses/visit-us)

[Media](https://www.ucanwest.ca/media)

#### We are UCW

[About UCW](https://www.ucanwest.ca/about)

[Future Students](https://www.ucanwest.ca/future-students)

[Current Students](https://www.ucanwest.ca/students)

#### Study at UCW

[Undergraduate Programs](https://www.ucanwest.ca/programs/undergraduate)

[Graduate Programs](https://www.ucanwest.ca/programs/graduate)

[Preparatory Programs](https://www.ucanwest.ca/programs/preparatory)

[Micro-Credentials](https://www.ucanwest.ca/programs/micro-credentials)

We acknowledge that the territories on which UCW and its campuses are situated are the traditional, ancestral and unceded territories of the xʷməθkʷəy̓əm (Musqueam), Sḵwx̱wú7mesh (Squamish) and Sel̓íl̓witulh/səlilwətaɬ (Tsleil-Waututh) Nations. We thank them for having cared for this land since time immemorial, honour their graciousness to the students who seek knowledge here, and iterate our dedication to valuing the ongoing contributions of Indigenous peoples and communities.

© Copyright 2005 - 2026 | University Canada West. All rights reserved. Learningwise Education Inc.

[Privacy Policy](https://www.ucanwest.ca/privacy-policy)

[Site map](https://www.ucanwest.ca/sitemap_index.xml)

[Terms & Conditions](https://www.ucanwest.ca/terms-and-conditions)

このファイルをサーバーの/index.mdとしてアップロードし、AIエージェントがページのクリーンなバージョンにアクセスできるようにしましょう。Accept: text/markdownコンテンツネゴシエーションを設定して自動的に配信することもできます。

推奨内容

llms.txtをダウンロード
# ucanwest.ca

> UCW is a business-oriented university which offers Bachelor degrees that prepare you to be an effective leader in the workplace. Its Bachelor of Commerce are ACBSP-accredited.

## Documentation
- [FAQs](https://www.ucanwest.ca/faq)

## Main
- [University in Vancouver | University Canada West (UCW)](https://www.ucanwest.ca/): UCW is a business-oriented university which offers Bachelor degrees that prepare you to be an effective leader in the w…
- [About](https://www.ucanwest.ca/about)
- [President’s Message](https://www.ucanwest.ca/about/presidents-message)
- [Mission & Goals](https://www.ucanwest.ca/about/mission-goals)
- [Accreditations](https://www.ucanwest.ca/about/memberships-designations)
- [Ratings and Awards](https://www.ucanwest.ca/about/ratings-and-awards)
- [Governance & Administration](https://www.ucanwest.ca/about/governance)
- [Senate](https://www.ucanwest.ca/about/senate)
- [About the Senate](https://www.ucanwest.ca/about/senate/about)
- [Committees](https://www.ucanwest.ca/about/senate/committees)
- [Elections](https://www.ucanwest.ca/about/senate/elections)
- [Membership](https://www.ucanwest.ca/about/senate/membership)
- [Program Advisory Committees](https://www.ucanwest.ca/about/program-advisory-committees)
- [University Initiatives](https://www.ucanwest.ca/about/university-initiatives)
- [Sustainability](https://www.ucanwest.ca/about/university-initiatives/sustainability)
- [Academics](https://www.ucanwest.ca/about/university-initiatives/sustainability/academics)
- [Campus Buildings](https://www.ucanwest.ca/about/university-initiatives/sustainability/campus-buildings)
- [Recycling](https://www.ucanwest.ca/about/university-initiatives/sustainability/recycling)
- [Transportation](https://www.ucanwest.ca/about/university-initiatives/sustainability/transportation)
- [Equality, Diversity and Inclusion (EDI)](https://www.ucanwest.ca/about/university-initiatives/equality-diversity-and-inclusion-edi)
- [Policies](https://www.ucanwest.ca/about/policies)
- [Accountability](https://www.ucanwest.ca/about/accountability)
- [Our Team](https://www.ucanwest.ca/about/accountability/our-team)
- [Quality Assurance](https://www.ucanwest.ca/about/accountability/quality-assurance)
- [Surveys](https://www.ucanwest.ca/about/accountability/surveys)
- [Ombudsperson](https://www.ucanwest.ca/about/ombudsperson)
- [Brochures](https://www.ucanwest.ca/about/brochures)
- [Academic Appeals](https://www.ucanwest.ca/about/senate/committees/academic-appeals)
- [Library Services](https://www.ucanwest.ca/academics/library/services)
- [Cyclial Program Reviews](https://www.ucanwest.ca/about/accountability/quality-assurance/cyclical-program-reviews)
- [LEARN MORE](https://www.ucanwest.ca/directory)
- [Leadership](https://www.ucanwest.ca/directory/leadership)
- [Student Recruitment Advisors](https://www.ucanwest.ca/students/new-students/speak-with-an-advisor)
- [Department Chairs](https://www.ucanwest.ca/academics/department-chairs)
- [Our Campuses](https://www.ucanwest.ca/our-campuses)
- [Virtual Campus Tour](https://www.ucanwest.ca/campus-tour)
- [Visit Us](https://www.ucanwest.ca/our-campuses/visit-us)
- [Careers](https://www.ucanwest.ca/hr)

## Blog
- [News](https://www.ucanwest.ca/news-and-events)
- [News Releases](https://www.ucanwest.ca/media/news-releases)
- [Blog](https://www.ucanwest.ca/blog)
- [Business & Management](https://www.ucanwest.ca/blog/business-management)
- [Media & Communication](https://www.ucanwest.ca/blog/media-communication)
- [Education & Career Tips](https://www.ucanwest.ca/blog/education-careers-tips)
- [Academic Writing](https://www.ucanwest.ca/blog/academic-writing)
- [Lifestyle & Culture](https://www.ucanwest.ca/blog/lifestyle-culture)

## Support
- [Contact Us](https://www.ucanwest.ca/contact-us)
- [FAQs](https://www.ucanwest.ca/faq)
- [Contact Us](https://www.ucanwest.ca/academics/library/contact)
- [Support for UCW Researchers](https://www.ucanwest.ca/academics/research/support-for-ucw-researchers)

完全なllms.txtにはドメイン全体の分析が必要です(近日公開)

このファイルをドメインのルートにhttps://www.ucanwest.ca/llms.txtとしてアップロードしてください。ChatGPT、Claude、PerplexityなどのAIエージェントはこのファイルを確認してサイト構造を理解します。

このサイトにはすでにllms.txtファイルがあります。

有効な形式
# University Canada West (UCW)

---


## Pages

- [Survey Management Committee](https://www.ucanwest.ca/about/accountability/surveys/survey-management-committee)
- [Staying Safe from Fraud](https://www.ucanwest.ca/admissions/tuition-fees/staying-safe-from-fraud)
- [Equality, Diversity and Inclusion (EDI)](https://www.ucanwest.ca/about/university-initiatives/equality-diversity-and-inclusion-edi)
- [[ Test ] - Form Embed](https://www.ucanwest.ca/test-form-embed)
- [Fall 2025 Convocation](https://www.ucanwest.ca/convocation/fall-2025)
- [Academic Operations and Initiatives](https://www.ucanwest.ca/directory/department/academic-operations-and-initiatives)
- [Contact the Library](https://www.ucanwest.ca/academics/library/contact)
- [Instructional and Faculty Support and Resources](https://www.ucanwest.ca/academics/library/faculty-research-support)
- [Learning Common Services](https://www.ucanwest.ca/academics/library/learning-commons)
- [Library Services](https://www.ucanwest.ca/academics/library/services)
- [Library Resources](https://www.ucanwest.ca/academics/library/resources)
- [About the Senate](https://www.ucanwest.ca/about/senate/about)
- [Join the MBA Games](https://www.ucanwest.ca/students/mba-games/join)
- [Payment methods](https://www.ucanwest.ca/admissions/tuition-fees/payment-methods)
- [Department Chairs](https://www.ucanwest.ca/academics/department-chairs)
- [Spring 2025 Convocation](https://www.ucanwest.ca/convocation/spring-2025)
- [2025 Overview](https://www.ucanwest.ca/convocation/2025-overview)
- [Library and Learning Commons](https://www.ucanwest.ca/academics/library)
- [Survey Platforms](https://www.ucanwest.ca/about/accountability/surveys/survey-platforms)
- [Research Publications](https://www.ucanwest.ca/academics/research/publications)
- [Speak with an advisor](https://www.ucanwest.ca/students/new-students/speak-with-an-advisor)
- [University Access Program](https://www.ucanwest.ca/directory/department/university-access-program)
- [Undergraduate Faculty Directory](https://www.ucanwest.ca/directory/department/undergraduate-faculty)
- [Graduate Faculty Directory](https://www.ucanwest.ca/directory/department/graduate-faculty)
- [Honorary Degree Recipients](https://www.ucanwest.ca/alumni/honorary-degree-recipients)
- [Valedictorians](https://www.ucanwest.ca/alumni/valedictorians)
- [Mission & Goals](https://www.ucanwest.ca/about/mission-goals)
- [Medals for Academic Excellence](https://www.ucanwest.ca/alumni/medals-for-academic-excellence)
- [Academic Calendar](https://www.ucanwest.ca/admissions/academic-calendar)
- [Transportation](https://www.ucanwest.ca/students/new-students/transportation)
- [Custodianship](https://www.ucanwest.ca/students/new-students/custodianship)
- [Cost Of Living](https://www.ucanwest.ca/students/new-students/cost-of-living)
- [MBA Games](https://www.ucanwest.ca/students/mba-games)
- [Office of the Ombudsperson](https://www.ucanwest.ca/about/ombudsperson)
- [Moving To Vancouver](https://www.ucanwest.ca/students/new-students/moving-to-vancouver)
- [UCW Cohort Update FAQ](https://www.ucanwest.ca/faq/cohorts)
- [MBA-ACCA Pathway](https://www.ucanwest.ca/programs/graduate/master-of-business-administration-mba-acca-pathway)
- [Support for UCW Researchers](https://www.ucanwest.ca/academics/research/support-for-ucw-researchers)
- [Partner with UCW Researchers](https://www.ucanwest.ca/academics/research/partner-with-ucw-researchers)
- [Research](https://www.ucanwest.ca/academics/research)
- [Collaborative Online International Learning](https://www.ucanwest.ca/partners/pathway-partners/collaborative-online-international-learning)
- [Teaching &amp; Learning Committee](https://www.ucanwest.ca/about/senate/committees/teaching-learning-committee)
- [Campus Health and Safety](https://www.ucanwest.ca/campus-health-safety)
- [Canadian University Survey Consortium (CUSC) Survey](https://www.ucanwest.ca/about/accountability/surveys/cusc)
- [Graduation and Professional Student Survey (CGPSS)](https://www.ucanwest.ca/about/accountability/surveys/cgpss)
- [Student Advisors](https://www.ucanwest.ca/directory/student-advisors)
- [2024 Overview](https://www.ucanwest.ca/convocation/2024-overview)
- [2023 Overview](https://www.ucanwest.ca/convocation/2023-overview)
- [2022 Overview](https://www.ucanwest.ca/convocation/2022-overview)
- [Fall 2024 Convocation](https://www.ucanwest.ca/convocation/fall-2024)
- [Leadership](https://www.ucanwest.ca/directory/department/leadership)
- [Centre for Advanced Studies Overview](https://www.ucanwest.ca/academics/research/cas-mission/centre-for-advanced-studies)
- [Centre for Advanced Studies](https://www.ucanwest.ca/academics/research/cas-mission)
- [Podcast](https://www.ucanwest.ca/media/podcast)
- [Alumni Success Stories](https://www.ucanwest.ca/alumni/alumni-success-stories)
- [Student Life At UCW](https://www.ucanwest.ca/students/student-affairs/life-at-ucw)
- [New Employees](https://www.ucanwest.ca/careers/new-employees)
- [Current Employees](https://www.ucanwest.ca/careers/current-employees)
- [News and Events](https://www.ucanwest.ca/news-and-events)
- [UCW Experts Guide](https://www.ucanwest.ca/directory/experts-guide)
- [Current Students](https://www.ucanwest.ca/students/current-students)
- [Understanding Indigenous History: A Path Forward](https://www.ucanwest.ca/media/podcast/understanding-indigenous-history-a-path-forward)
- [Executive Team](https://www.ucanwest.ca/directory/department/executive-team)
- [Search](https://www.ucanwest.ca/search)
- [Articulation Agreement](https://www.ucanwest.ca/partners/pathway-partners/articulation-agreement)
- [ESL Pathways](https://www.ucanwest.ca/partners/pathway-partners/esl-pathways)
- [International Credential Recognition](https://www.ucanwest.ca/partners/pathway-partners/international-credential-recognition)
- [International Pathways into Bachelor Degrees](https://www.ucanwest.ca/partners/pathway-partners/international-pathways-into-bachelor-degrees)
- [Semester Abroad &amp; Student Exchange](https://www.ucanwest.ca/partners/pathway-partners/semester-abroad-student-exchange)
- [Department](https://www.ucanwest.ca/directory/department)
- [Academic Affairs](https://www.ucanwest.ca/directory/department/academic-affairs)
- [Administration](https://www.ucanwest.ca/directory/department/administration)
- [Arts, Communications &amp; Social Sciences](https://www.ucanwest.ca/directory/department/arts-communications-social-sciences)
- [BD Recruitment](https://www.ucanwest.ca/directory/department/bd-recruitment)
- [Career Development](https://www.ucanwest.ca/directory/department/career-development)
- [Community Engagement](https://www.ucanwest.ca/directory/department/community-engagement)
- [Facilities &amp; Building Operations](https://www.ucanwest.ca/directory/department/facilities-building-operations)
- [Faculty](https://www.ucanwest.ca/directory/department/faculty)
- [Finance](https://www.ucanwest.ca/directory/department/finance)
- [Health &amp; Safety](https://www.ucanwest.ca/directory/department/health-safety)
- [IT](https://www.ucanwest.ca/directory/department/it)
- [Staff Testimonials](https://www.ucanwest.ca/testimonial/staff)
- [Alumni Testimonials](https://www.ucanwest.ca/testimonial/alumni)
- [Students](https://www.ucanwest.ca/testimonial/students)
- [Student Affairs](https://www.ucanwest.ca/directory/department/student-affairs)
- [Student Recruitment Advisors](https://www.ucanwest.ca/directory/student-recruitment-advisors)
- [Staff](https://www.ucanwest.ca/directory/department/staff)
- [Registrar Office](https://www.ucanwest.ca/directory/department/registrar-office)
- [Recruitment](https://www.ucanwest.ca/directory/department/recruitment)
- [Library](https://www.ucanwest.ca/directory/department/library)
- [Office of the President](https://www.ucanwest.ca/directory/department/office-of-the-president)
- [Human Resources](https://www.ucanwest.ca/directory/department/human-resources)
- [Leadership](https://www.ucanwest.ca/directory/leadership)
- [MBA Department of Marketing, Strategy &amp; Entrepreneurship](https://www.ucanwest.ca/directory/department/mba-department-of-marketing-strategy-entrepreneurship)
- [MBA Department of Quantitative Studies](https://www.ucanwest.ca/directory/department/mba-department-of-quantitative-studies)
- [Marketing &amp; Communications](https://www.ucanwest.ca/directory/department/marketing-communications)
- [MBA Department of Leadership &amp; People Management](https://www.ucanwest.ca/directory/department/mba-department-of-leadership-people-management)
- [Testimonials](https://www.ucanwest.ca/testimonial)
- [International Partners](https://www.ucanwest.ca/partners/international-partners)
- [Summer 2023 Convocation](https://www.ucanwest.ca/convocation/summer-2023)

---


## Posts

- [What Is Global Leadership and Why It Matters? ](https://www.ucanwest.ca/blog/business-management/what-is-global-leadership-and-why-it-matters)
- [Why Financial Accounting Is Essential for Business Students?](https://www.ucanwest.ca/blog/business-management/why-financial-accounting-is-essential-for-business-students)
- [Black History Month: Student and Faculty Reflections ](https://www.ucanwest.ca/blog/lifestyle-culture/black-history-month-student-and-faculty-reflections)
- [What Are Business Ethics &amp; Why Are They Important? ](https://www.ucanwest.ca/blog/business-management/what-are-business-ethics-why-are-they-important)
- [What makes a successful entrepreneur?](https://www.ucanwest.ca/blog/business-management/what-makes-a-successful-entrepreneur)
- [What is Marketing Management: A Complete Guide](https://www.ucanwest.ca/blog/education-careers-tips/what-is-marketing-management-a-complete-guide)
- [What Is Operations Management and Why Is It Important?](https://www.ucanwest.ca/blog/education-careers-tips/operations-management)
- [What Is Business Statistics: Types, Benefits &amp; More](https://www.ucanwest.ca/blog/education-careers-tips/business-statistics-types-benefits-applications)
- [What is Critical Thinking and How Does an MBA Help?](https://www.ucanwest.ca/blog/education-careers-tips/critical-thinking-skills)
- [Festive things to do in Metro Vancouver this December](https://www.ucanwest.ca/blog/media-communication/festive-things-to-do-in-metro-vancouver-this-december)
- [What is the significance of persuasive communication for a budding entrepreneur?](https://www.ucanwest.ca/blog/business-management/what-is-the-significance-of-persuasive-communication-for-a-budding-entrepreneur)
- [What is Talent Management and Why is It Important? ](https://www.ucanwest.ca/blog/business-management/what-is-talent-management-importance)
- [Microeconomics vs Macroeconomics – Key Differences Explained](https://www.ucanwest.ca/blog/education-careers-tips/microeconomics-vs-macroeconomics-key-differences-explained)
- [What are Business Fundamentals? A Beginner’s Guide](https://www.ucanwest.ca/blog/education-careers-tips/what-are-business-fundamentals-a-beginners-guide)
- [Top BCom Specializations: A Comprehensive Guide](https://www.ucanwest.ca/blog/education-careers-tips/top-bcom-specializations-a-comprehensive-guide)
- [Importance of communication strategy within an organization](https://www.ucanwest.ca/blog/business-management/importance-of-communication-strategy-within-an-organization)
- [Best Places to Stay in Vancouver Canada for Students](https://www.ucanwest.ca/blog/lifestyle-culture/best-places-to-stay-in-vancouver-canada-for-students)
- [How to Become a Financial Analyst](https://www.ucanwest.ca/blog/education-careers-tips/how-to-become-a-financial-analyst)
- [Top job opportunities with a Bachelor of Commerce degree](https://www.ucanwest.ca/blog/education-careers-tips/top-job-opportunities-with-a-bachelor-of-commerce-degree)
- [Bachelor of Arts Degree Requirements: What You Need to Know ](https://www.ucanwest.ca/blog/education-careers-tips/bachelor-of-arts-degree-requirements)
- [Top job roles after earning a business communication degree](https://www.ucanwest.ca/blog/education-careers-tips/top-job-roles-after-earning-a-business-communication-degree)
- [Advantages and disadvantages of AI in education](https://www.ucanwest.ca/blog/education-careers-tips/advantages-and-disadvantages-of-ai-in-education)
- [What Is an Undergraduate Degree in Canada?](https://www.ucanwest.ca/blog/education-careers-tips/what-is-an-undergraduate-degree-in-canada)
- [How has social media emerged as a powerful communication medium?](https://www.ucanwest.ca/blog/media-communication/how-has-social-media-emerged-as-a-powerful-communication-medium)
- [What is an Associate of Arts (AA) Degree?](https://www.ucanwest.ca/blog/business-management/what-is-an-associate-of-arts-aa-degree)
- [Employee Retention Strategies: Best Practices for MBA Graduates](https://www.ucanwest.ca/blog/business-management/employee-retention-strategies-best-practices-for-mba-graduates)
- [Top Strategic Management Strategies for Business Success](https://www.ucanwest.ca/blog/business-management/top-strategic-management-strategies-for-business-success)
- [How to Become a Financial Planner](https://www.ucanwest.ca/blog/education-careers-tips/how-to-become-a-financial-planner)
- [Associate vs. Bachelor’s Degree: What’s the Difference?](https://www.ucanwest.ca/blog/education-careers-tips/associate-vs-bachelors-degree-whats-the-difference)
- [Job roles and responsibilities for BCom with Accounting elective area graduates](https://www.ucanwest.ca/blog/education-careers-tips/job-roles-and-responsibilities-for-bcom-with-accounting-elective-area-graduates)
- [What Is Digital Transformation, Benefits, and Examples](https://www.ucanwest.ca/blog/business-management/what-is-digital-transformation)
- [Truth and Reconciliation Day sparks national reflection](https://www.ucanwest.ca/blog/lifestyle-culture/truth-and-reconciliation-day-sparks-national-reflection)
- [Why Vancouver is a top destination for job opportunities](https://www.ucanwest.ca/blog/education-careers-tips/why-vancouver-is-a-top-destination-for-job-opportunities)
- [10 Best Productivity Apps for Students](https://www.ucanwest.ca/blog/education-careers-tips/10-best-productivity-apps-for-students)
- [The Importance of Business Communication](https://www.ucanwest.ca/blog/business-management/the-importance-of-business-communication)
- [Entrepreneurial Mindset: Key Traits and Characteristics](https://www.ucanwest.ca/blog/business-management/entrepreneurial-mindset-key-traits-and-characteristics)
- [Effective Stress Management Techniques for Students](https://www.ucanwest.ca/blog/education-careers-tips/effective-stress-management-techniques-for-students)
- [Innovative Business Startup Ideas for Students](https://www.ucanwest.ca/blog/education-careers-tips/innovative-business-startup-ideas-for-students)
- [The Impact of Social Media on Marketing Strategies](https://www.ucanwest.ca/blog/business-management/the-impact-of-social-media-on-marketing-strategies)
- [How should a beginner prepare for the GMAT?](https://www.ucanwest.ca/blog/education-careers-tips/how-should-a-beginner-prepare-for-the-gmat)
- [The Magic of Multilingualism: Benefits Beyond Communication](https://www.ucanwest.ca/blog/education-careers-tips/the-magic-of-multilingualism-benefits-beyond-communication)
- [Best study spots for university students in Vancouver](https://www.ucanwest.ca/blog/education-careers-tips/best-study-spots-for-university-students-in-vancouver)
- [Preparing for Your First Term at UCW](https://www.ucanwest.ca/blog/education-careers-tips/preparing-for-your-first-term-at-ucw)
- [What is IELTS? All You Need to Know About IELTS](https://www.ucanwest.ca/blog/education-careers-tips/what-is-ielts-all-you-need-to-know-about-ielts)
- [Exploring British Columbia: 10 local weekend getaway ideas](https://www.ucanwest.ca/blog/lifestyle-culture/exploring-british-columbia-10-local-weekend-getaway-ideas)
- [How will artificial intelligence change the future of work](https://www.ucanwest.ca/blog/education-careers-tips/how-will-artificial-intelligence-change-the-future-of-work)
- [8 restaurants around UCW campuses to check out](https://www.ucanwest.ca/blog/lifestyle-culture/8-restaurants-around-ucw-campuses-to-check-out)
- [10 fun things to do in Vancouver this summer](https://www.ucanwest.ca/blog/lifestyle-culture/10-fun-things-to-do-in-vancouver-this-summer)
- [Applying for a Masters in Canada | A Guide for International Students](https://www.ucanwest.ca/blog/education-careers-tips/applying-masters-in-canada-a-guide-for-international-students)
- [How to Make Your Resumé Stand Out: 7 Tips to Land That Dream Job](https://www.ucanwest.ca/blog/education-careers-tips/how-to-make-your-resume-stand-out-7-tips-to-land-that-dream-job)
- [Discover the benefits of online learning at university](https://www.ucanwest.ca/blog/education-careers-tips/discover-the-benefits-of-online-learning-at-university)
- [Crafting the future: Prototyping's role in design and innovation](https://www.ucanwest.ca/blog/education-careers-tips/crafting-the-future-prototypings-role-in-design-and-innovation)
- [How to apply for a scholarship in Canada](https://www.ucanwest.ca/blog/education-careers-tips/how-to-apply-for-a-scholarship-in-canada)
- [What can you do with a Bachelor of Arts degree?](https://www.ucanwest.ca/blog/education-careers-tips/what-can-you-do-with-a-bachelor-of-arts-degree)
- [Navigating the Canadian job market for international students](https://www.ucanwest.ca/blog/education-careers-tips/navigating-the-canadian-job-market-for-international-students)
- [What can you do with a business degree: Career paths and opportunities](https://www.ucanwest.ca/blog/education-careers-tips/what-can-you-do-with-a-business-degree-career-paths-and-opportunities)
- [What employers are looking for in new graduates](https://www.ucanwest.ca/blog/education-careers-tips/what-employers-are-looking-for-in-new-graduates)
- [How to make the most of your networking opportunities](https://www.ucanwest.ca/blog/education-careers-tips/how-to-make-the-most-of-your-networking-opportunities)
- [Coping with homesickness and cultural adjustment as a university student](https://www.ucanwest.ca/blog/lifestyle-culture/coping-with-homesickness-and-cultural-adjustment)
- [What is the difference between colleges and universities in Canada](https://www.ucanwest.ca/blog/education-careers-tips/what-is-the-difference-between-colleges-and-universities-in-canada)
- [How to Utilize LinkedIn for Practicums and Job Hunting](https://www.ucanwest.ca/blog/education-careers-tips/how-to-utilize-linkedin-for-practicums-and-job-hunting)
- [Is an Associate of Arts degree worth it?](https://www.ucanwest.ca/blog/education-careers-tips/is-an-associate-of-arts-degree-worth-it)
- [The art of transformative travel: Exploring the world with purpose](https://www.ucanwest.ca/blog/lifestyle-culture/the-art-of-transformative-travel-exploring-the-world-with-purpose)
- [MBA Degree: A gateway to global business success stories](https://www.ucanwest.ca/blog/education-careers-tips/mba-degree-a-gateway-to-global-business-success-stories)
- [Cultural Exchange at UCW: Celebrating Diversity Through Food](https://www.ucanwest.ca/blog/lifestyle-culture/cultural-exchange-at-ucw-celebrating-diversity-through-food)
- [5 best social media platforms for your business](https://www.ucanwest.ca/blog/media-communication/5-best-social-media-platforms-for-your-business)
- [Nurturing nature: The therapeutic benefits of gardening](https://www.ucanwest.ca/blog/lifestyle-culture/nurturing-nature-the-therapeutic-benefits-of-gardening)
- [Celebrating Black History Month in Canada and the people who shaped it](https://www.ucanwest.ca/blog/education-careers-tips/celebrating-black-history-month-in-canada)
- [The Future of Marketing](https://www.ucanwest.ca/blog/education-careers-tips/the-future-of-marketing)
- [Nurturing Unity and Diversity: Building connections with Filipino students through FILSA](https://www.ucanwest.ca/blog/lifestyle-culture/nurturing-unity-and-diversity-building-connections-with-filipino-students-through-filsa)
- [Top 10 business and technology trends of 2024](https://www.ucanwest.ca/blog/business-management/top-10-business-and-technology-trends-of-2024)
- [The Future of Work: Essential Skills for Success in 2024 and Beyond](https://www.ucanwest.ca/blog/education-careers-tips/the-future-of-work-essential-skills-for-success-in-2024-and-beyond)
- [UCW's Most Read Blogs of 2023](https://www.ucanwest.ca/blog/media-communication/ucws-most-read-blogs-of-2023)
- [The power of storytelling: How narratives shape our lives](https://www.ucanwest.ca/blog/education-careers-tips/the-power-of-storytelling-how-narratives-shape-our-lives)
- [Creating a Spotify playlist for the holidays](https://www.ucanwest.ca/blog/education-careers-tips/creating-a-spotify-playlist-for-the-holidays)
- [Beyond the screens: Rediscovering the joy of analog hobbies](https://www.ucanwest.ca/blog/lifestyle-culture/beyond-the-screens-rediscovering-the-joy-of-analog-hobbies)
- [How to look after your mental health during the holidays while studying abroad](https://www.ucanwest.ca/blog/lifestyle-culture/how-to-look-after-your-mental-health-during-the-holidays-while-studying-abroad)
- [Must-take photos around Vancouver over the holidays](https://www.ucanwest.ca/blog/lifestyle-culture/must-take-photos-around-vancouver-over-the-holidays)
- [How to nail your elevator pitch](https://www.ucanwest.ca/blog/education-careers-tips/how-to-nail-your-elevator-pitch)
- [The best way to save money in Canada as an international university student](https://www.ucanwest.ca/blog/education-careers-tips/the-best-way-to-save-money-in-canada-as-an-international-university-student)
- [Unlocking the Future: How AI and Blockchain are working together](https://www.ucanwest.ca/blog/education-careers-tips/unlocking-the-future-how-ai-and-blockchain-are-working-together)
- [How businesses can navigate inflation](https://www.ucanwest.ca/blog/education-careers-tips/how-businesses-can-navigate-inflation)
- [Choosing an MBA exit course and why?](https://www.ucanwest.ca/blog/business-management/choosing-an-mba-exit-course-and-why)
- [8 fun things to do this fall in Vancouver](https://www.ucanwest.ca/blog/lifestyle-culture/fun-things-to-do-this-fall-in-vancouver)
- [Graduation day nears with UCW’s Fall Convocation 2023](https://www.ucanwest.ca/blog/education-careers-tips/graduation-day-nears-with-ucws-fall-convocation-2023)
- [The power of daily habits: Its importance and how it impacts our lives](https://www.ucanwest.ca/blog/lifestyle-culture/the-power-of-daily-habits-its-importance-and-how-it-impacts-our-lives)
- [Study strategies to kick off the new term](https://www.ucanwest.ca/blog/education-careers-tips/study-strategies-to-kick-off-the-new-term)
- [The MBA job search: A comprehensive guide to landing your dream job](https://www.ucanwest.ca/blog/education-careers-tips/the-mba-job-search-a-comprehensive-guide-to-landing-your-dream-job)
- [My Experience at the Ocean Wise Shoreline Cleanup Event at UCW](https://www.ucanwest.ca/blog/education-careers-tips/my-experience-at-the-ocean-wise-shoreline-cleanup-event-at-ucw)
- [Truth and Reconciliation Day: A Journey Towards Healing and Understanding](https://www.ucanwest.ca/blog/lifestyle-culture/truth-and-reconciliation-day-a-journey-towards-healing-and-understanding)
- [How to use social media to your advantage when job hunting](https://www.ucanwest.ca/blog/education-careers-tips/how-to-use-social-media-to-your-advantage-when-job-hunting)
- [Effective communication strategies for leaders](https://www.ucanwest.ca/blog/education-careers-tips/effective-communication-strategies-for-leaders)
- [How AI is reshaping the job market](https://www.ucanwest.ca/blog/business-management/how-ai-is-reshaping-the-job-market)
- [How to be a better project manager](https://www.ucanwest.ca/blog/lifestyle-culture/how-to-be-a-better-project-manager)
- [Vancouver ranks first in high tech job growth](https://www.ucanwest.ca/blog/lifestyle-culture/vancouver-ranks-first-in-high-tech-job-growth)
- [How does social media affect mental health](https://www.ucanwest.ca/blog/media-communication/how-does-social-media-affect-mental-health)
- [The history of BC Day](https://www.ucanwest.ca/blog/lifestyle-culture/history-of-bc-day)
- [How to make a good impression in a virtual job interview](https://www.ucanwest.ca/blog/education-careers-tips/how-to-make-a-good-impression-in-a-virtual-job-interview)
- [Vancouver ranks third best city in Canada for students](https://www.ucanwest.ca/blog/lifestyle-culture/vancouver-ranks-third-best-city-in-canada-for-students)
- [How Bachelor of Commerce graduates can capitalize on online retail trends](https://www.ucanwest.ca/blog/education-careers-tips/how-bachelor-of-commerce-graduates-can-capitalize-on-online-retail-trends)

---

セマンティックHTML

articleまたはmain要素を使用 (100/100)

Has both <article> and <main>

適切な見出し階層 (25/100)

5 heading level skip(s)

セマンティックHTML要素を使用 (14/100)

16 semantic elements, 354 divs (ratio: 4%)

意味のある画像alt属性 (75/100)

24/32 images with meaningful alt text

低いdivネスト深度 (82/100)

Avg div depth: 6.8, max: 17

コンテンツ効率

良好なトークン削減率 (100/100)

100% token reduction (HTML→Markdown)

良好なコンテンツ対ノイズ比 (0/100)

Content ratio: 0.4% (2676 content chars / 733652 HTML bytes)

最小限のインラインスタイル (0/100)

283/1536 elements with inline styles (18.4%)

適切なページ重量 (20/100)

HTML size: 716KB

AI発見可能性

llms.txtファイルあり (100/100)

llms.txt exists and is valid

robots.txtファイルあり (100/100)

robots.txt exists

robots.txtがAIボットを許可 (100/100)

All major AI bots allowed

sitemap.xmlあり (0/100)

No sitemap found

Markdown for Agentsサポート (0/100)
&#10007; Accept: text/markdown &#10007; .md URL &#10007; <link> tag &#10007; Link header
Content-Signalあり(robots.txtまたはHTTPヘッダー) (0/100)
&#10003; robots.txt &#10003; HTTP header &#10007; Policy

構造化データ

Schema.org / JSON-LDあり (0/100)

No JSON-LD / Schema.org found

Open Graphタグあり (100/100)

All OG tags present

メタディスクリプションあり (100/100)

Meta description: 175 chars

正規URLあり (100/100)

Canonical URL present

lang属性あり (100/100)

lang="en"

アクセシビリティ

JavaScript不要でコンテンツ利用可能 (100/100)

Content available without JavaScript

適切なページサイズ (40/100)

Page size: 716KB

HTML内でコンテンツが早い位置に配置 (100/100)

Main content starts at 1% of HTML

{
  "url": "https://www.ucanwest.ca/",
  "timestamp": 1776770080242,
  "fetch": {
    "mode": "simple",
    "timeMs": 22,
    "htmlSizeBytes": 733652,
    "supportsMarkdown": false,
    "markdownAgents": {
      "contentNegotiation": false,
      "mdUrl": {
        "found": false,
        "url": null
      },
      "linkTag": {
        "found": false,
        "url": null
      },
      "linkHeader": {
        "found": false,
        "url": null
      },
      "responseHeaders": {
        "contentSignal": null,
        "xMarkdownTokens": null,
        "vary": null
      },
      "frontmatter": {
        "present": false,
        "fields": [],
        "level": "none"
      },
      "level": "none"
    },
    "statusCode": 200
  },
  "extraction": {
    "title": "University in Vancouver | University Canada West (UCW)",
    "excerpt": "UCW is a business-oriented university which offers Bachelor degrees that prepare you to be an effective leader in the workplace. Its Bachelor of Commerce are ACBSP-accredited.",
    "byline": null,
    "siteName": null,
    "lang": "en",
    "contentLength": 2676,
    "metadata": {
      "description": "UCW is a business-oriented university which offers Bachelor degrees that prepare you to be an effective leader in the workplace. Its Bachelor of Commerce are ACBSP-accredited.",
      "ogTitle": "University in Vancouver | University Canada West (UCW)",
      "ogDescription": "UCW is a business-oriented university which offers Bachelor degrees that prepare you to be an effective leader in the workplace. Its Bachelor of Commerce are ACBSP-accredited.",
      "ogImage": "https://wpvip.guscancolleges.ca/ucanwest/wp-content/uploads/sites/3/2023/03/UCW-Green-Wall-VH.webp?quality=100",
      "ogType": null,
      "canonical": "https://www.ucanwest.ca",
      "lang": "en",
      "schemas": [],
      "robotsMeta": "index, follow",
      "author": null,
      "generator": null,
      "markdownAlternateHref": null
    }
  },
  "markdown": "## THE UCW DIFFERENCE#### Are you trying to explore a new career path?\nOr are you looking to gain particular skills to set you apart in the job market?\n\n[Learn MORE](https://www.ucanwest.ca/programs)\n\n## Our Programs\n\nAt UCW, we offer a diverse range of undergraduate and graduate programs designed to empower students with the skills, knowledge and experiences needed to thrive in today’s dynamic professional landscape.\n\n![ucw-masters](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fucw-masters.webp&w=3840&q=75)\n\n### Master's Programs\n\nUCW offers a globally recognized ACBSP and NCMA-accredited MBA program. Our MBA degree challenges students in areas vital to business operation and administration.\n\n![ucw-undergraduates](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fucw-undergraduates.webp&w=3840&q=75)\n\n### Undergraduate Programs\n\nOur undergraduate courses can help you gain the practical skills & industry-relevant knowledge required for launching your career and will prepare you for a successful career path.\n\n![microcredentials](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fmicrocredentials.webp&w=3840&q=75)\n\n### Micro-Credentials\n\nOur micro-credential programs are focused on technology, business and innovation. These courses can help you gain valuable and specific skills in a short amount of time.\n\n## Why Choose UCW\n\n#### Winners of the 2023 BC MBA Games and 2024 National MBA Games. With our 5 Star QS Rating, students continue to choose us as their top study destination. Our students lead the future by working at major global companies, such as Google, Apple, Amazon and SAP.\n\n![](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fi.ytimg.com%2Fvi%2F9WyFMZxSGSw%2Fhqdefault.jpg&w=3840&q=75)\n\n###### \\*Based on survey results from Fall 2025\n\n## 2024 National MBA Games Winner\n\nWe are thrilled to announce the first place victory of our MBA Games team at the 2024 national MBA Games. UCW is the first university in history to win both the BC MBA Games and national MBA Games at the same time.\n\n## UCW Student Life\n\nAt UCW, we’re committed to your success. From career development, mentorship and student events to academic advising and more, we’re here to ensure your time at UCW and beyond a success.\n\n## Career Services & Student Support\n\nWe work with students and graduates to provide them with the necessary career planning and job search tools to help them transition from education to employment.\n\n![image](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FFrame-3-1.png&w=3840&q=75)\n\n## Student Testimonials\n\n## Accreditations & Memberships\n\n## Explore our campuses\n\nUniversity Canada West is an innovative business and technology-oriented institution located in the heart of vibrant Vancouver. Established in 2004, UCW offers a range of career-focused programs including the Bachelor of Commerce, Bachelor of Arts in Business Communication, Associate of Arts and Master of Business Administration. Courses are offered at our two downtown Vancouver campuses and online too. Offering courses online brings flexibility to education, allowing those who may not have otherwise had the opportunity to gain respected qualifications.\n\n## Start your program today!\n\nOffering courses online brings to education, allowing those who may not have otherwise had the opportunity to gain respected qualifications\n",
  "fullPageMarkdown": "University in Vancouver | University Canada West (UCW)\n\n[MyUCW](https://www.myucwest.ca/login \"MyUCW\")\n\n[Partners](https://www.ucanwest.ca/partners \"Partners\")\n\n[Careers](https://www.ucanwest.ca/hr \"Careers\")\n\n[Alumni](https://www.ucanwest.ca/alumni \"Alumni\")\n\n[Convocation](https://www.ucanwest.ca/convocation \"Convocation\")\n\n[WhatsApp](https://api.whatsapp.com/send/?phone=17783571500&text&type=phone_number&app_absent=0 \"WhatsApp\")\n\n[Inquire](https://www.ucanwest.ca/search \"Inquire\")\n\n[Contact](https://www.ucanwest.ca/contact-us \"Contact\")\n\n[Search](https://www.ucanwest.ca/search \"Search\")\n\n[MyUCW](https://www.myucwest.ca/login \"MyUCW\")\n\n[Partners](https://www.ucanwest.ca/partners \"Partners\")\n\n[Careers](https://www.ucanwest.ca/hr \"Careers\")\n\n[Apply Now](https://www.ucanwest.ca/apply)[Contact](https://www.ucanwest.ca/contact-us)[Whatsapp](https://wa.me/17783571500)\n\n# THE UCW DIFFERENCE#### Are you trying to explore a new career path?\nOr are you looking to gain particular skills to set you apart in the job market?[Learn MORE](https://www.ucanwest.ca/programs)\n\n[](https://www.instagram.com/university_canada_west)\n\n[](https://www.facebook.com/ucanwest)\n\n[](https://www.linkedin.com/school/ucanwest)\n\n[](https://www.youtube.com/user/CanadaUniversity)\n\n## Our Programs\n\nAt UCW, we offer a diverse range of undergraduate and graduate programs designed to empower students with the skills, knowledge and experiences needed to thrive in today’s dynamic professional landscape.\n\n[\n\nLearn more\n\n](https://www.ucanwest.ca/programs)\n\n![ucw-masters](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fucw-masters.webp&w=3840&q=75)\n\n### Master's Programs\n\nUCW offers a globally recognized ACBSP and NCMA-accredited MBA program. Our MBA degree challenges students in areas vital to business operation and administration.\n\n[\n\nLearn More\n\n](https://www.ucanwest.ca/programs/graduate)\n\n![ucw-undergraduates](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fucw-undergraduates.webp&w=3840&q=75)\n\n### Undergraduate Programs\n\nOur undergraduate courses can help you gain the practical skills & industry-relevant knowledge required for launching your career and will prepare you for a successful career path.\n\n[\n\nLearn More\n\n](https://www.ucanwest.ca/programs/undergraduate)\n\n![microcredentials](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F02%2Fmicrocredentials.webp&w=3840&q=75)\n\n### Micro-Credentials\n\nOur micro-credential programs are focused on technology, business and innovation. These courses can help you gain valuable and specific skills in a short amount of time.\n\n[\n\nLearn More\n\n](https://www.ucanwest.ca/programs/micro-credentials)\n\n[\n\nApply now\n\n](https://www.ucanwest.ca/students/new-students/speak-with-an-advisor)\n\n## Why Choose UCW\n\n#### Winners of the 2023 BC MBA Games and 2024 National MBA Games. With our 5 Star QS Rating, students continue to choose us as their top study destination. Our students lead the future by working at major global companies, such as Google, Apple, Amazon and SAP.\n\n### 92%#### MBA Alumni Employment Rate\\*\n\n### 5 STARS#### QS Star Rated Institution\n\n### 7,000+#### Students from 100 countries\n\n### 92%#### Student Graduation Rate\n\n![](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fi.ytimg.com%2Fvi%2F9WyFMZxSGSw%2Fhqdefault.jpg&w=3840&q=75)\n\n###### \\*Based on survey results from Fall 2025\n\n## 2024 National MBA Games Winner\n\nWe are thrilled to announce the first place victory of our MBA Games team at the 2024 national MBA Games. UCW is the first university in history to win both the BC MBA Games and national MBA Games at the same time.\n\n[\n\nLearn more\n\n](https://www.ucanwest.ca/media/news-releases/vancouver-university-wins-bc-and-national-mba-games)[\n\nButton 2\n\n](https://www.ucanwest.ca/#)\n\n## UCW Student Life\n\nAt UCW, we’re committed to your success. From career development, mentorship and student events to academic advising and more, we’re here to ensure your time at UCW and beyond a success.\n\n[\n\nCareer Development\n\n](https://www.ucanwest.ca/students/student-affairs/career-development-centre)[\n\nLibrary\n\n](https://www.ucanwest.ca/academics/library)[\n\nStudent Clubs\n\n](https://community.myucwest.ca/home)[\n\nInternational Student Advisors\n\n](https://www.myucwest.ca/cms/?p=1813)\n\n## Career Services & Student Support\n\nWe work with students and graduates to provide them with the necessary career planning and job search tools to help them transition from education to employment.\n\n[\n\nLet's show you\n\n](https://www.ucanwest.ca/students/student-affairs)\n\n![image](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FFrame-3-1.png&w=3840&q=75)\n\n## Latest News\n\n[\n\nView More\n\n](https://www.ucanwest.ca/media)\n\n[![Open Access Government Logo Banner](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2022%2F08%2FOpen-Access-Government.webp%3Fquality%3D100%26w%3D1024&w=1920&q=75)](https://www.ucanwest.ca/media/ucw-in-the-news/entangled-futures-mother-and-machine-posthuman-and-feminist-transformation-of-reproduction)\n\n[UCW In The News](https://www.ucanwest.ca/media/ucw-in-the-news)[### Entangled futures, mother and machine: posthuman and feminist transformation of reproduction](https://www.ucanwest.ca/media/ucw-in-the-news/entangled-futures-mother-and-machine-posthuman-and-feminist-transformation-of-reproduction)\n\n04-14-2026University Canada West\n\nThe April 2026 edition of Open Access Government featured an editorial piece by UCW faculty members Dr. Gitanjaly Chhabra and Dr. Kaye Hare. Their work explores the intersection of technology and feminism, examining the posthuman transformation of reproduction.\n\n[Learn More](https://www.ucanwest.ca/media/ucw-in-the-news/entangled-futures-mother-and-machine-posthuman-and-feminist-transformation-of-reproduction)\n\n[![](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2026%2F04%2FFIFA-MUSEUM.jpg%3Fquality%3D100%26w%3D1024&w=640&q=75)](https://www.ucanwest.ca/media/university-news/14-ucw-students-selected-for-the-fifa-volunteer-program)\n\n[University News](https://www.ucanwest.ca/media/university-news)[### 14 UCW Students Selected for the FIFA Volunteer Program](https://www.ucanwest.ca/media/university-news/14-ucw-students-selected-for-the-fifa-volunteer-program)\n\n04-02-2026University Canada West\n\n[Learn More](https://www.ucanwest.ca/media/university-news/14-ucw-students-selected-for-the-fifa-volunteer-program)\n\n[![UCW signs MOU with Unypossible](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2026%2F03%2FUnypossible.jpg%3Fquality%3D100%26w%3D1024&w=640&q=75)](https://www.ucanwest.ca/media/university-news/ucw-signs-mou-with-unypossible)\n\n[University News](https://www.ucanwest.ca/media/university-news)[### UCW signs MOU with Unypossible](https://www.ucanwest.ca/media/university-news/ucw-signs-mou-with-unypossible)\n\n03-24-2026University Canada West\n\n[Learn More](https://www.ucanwest.ca/media/university-news/ucw-signs-mou-with-unypossible)\n\n[![](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2026%2F03%2FUCW-announces-new-MBA-specialization-in-Entrepreneurship.webp%3Fquality%3D100%26w%3D800&w=640&q=75)](https://www.ucanwest.ca/media/university-news/specialization-in-entrepreneurship-launches-at-ucw)\n\n[University News](https://www.ucanwest.ca/media/university-news)[### Specialization in Entrepreneurship launches at UCW](https://www.ucanwest.ca/media/university-news/specialization-in-entrepreneurship-launches-at-ucw)\n\n03-23-2026University Canada West\n\nUniversity Canada West’s Master of Business Administration (MBA) is getting another specialization. Students will have the opportunity to select a Specialization in Entrepreneurship. This goes along with the MBA specializations in Artificial Intelligence and Machine Learning Leadership, Supply Chain Management or Business Analytics that started in the Summer 2025 Term. The specialization includes courses in \\[…\\]\n\n[Learn More](https://www.ucanwest.ca/media/university-news/specialization-in-entrepreneurship-launches-at-ucw)\n\n## Student Testimonials\n\n[\n\nView More\n\n](https://www.ucanwest.ca/testimonial/students)\n\n![Mackenzie](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F03%2Ftestimonials-mackenzie-ucanwest-e1745433687535.png%3Fquality%3D100&w=1080&q=75)\n\n#### MackenzieMBA Student\n\n\"My name is Mackenzie. I’m in the online Master of Business program at UCW. I chose UCW over other institutions because of its flexibility and because it’s a BC school. I also wanted the valuable skills I could get from UCW.\"\n\n[Read More](https://www.ucanwest.ca/testimonial/students/mackenzie)\n\n![Jessie Fung](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F03%2Ftestimonials-jessie-ucanwest-e1743629365505.png%3Fquality%3D100&w=1080&q=75)\n\n#### Jessie FungMBA Alumna from Hong Kong\n\n\"I moved to Canada because I really wanted to expand my knowledge and broaden my horizons. UCW has helped me because it’s a business-oriented school and has helped me prepare to become a successful entrepreneur.\"\n\n[Read More](https://www.ucanwest.ca/testimonial/students/jessie-fung)\n\n![Anh](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2Ftestimonials-Anh-from-Vietnam-ucanwest.jpg%3Fquality%3D100&w=1080&q=75)\n\n#### AnhMBA Student from Vietnam\n\n\"UCW’s faculty and its departments will foster your growth. The thing I like most about the program is that it allows me to explore my strengths and development areas in leadership.\"\n\n[Read More](https://www.ucanwest.ca/testimonial/students/anh)\n\n![Mau](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2023%2F09%2Ftestimonials-mau-ucanwest.png%3Fquality%3D100&w=1080&q=75)\n\n#### MauAssociate of Arts Student from Mexico\n\n\"My name is Mau and I’m from Mexico. I’m a student at UCW enrolled in the Associate of Arts program. My experience has been really great. The instructors I’ve had at UCW for social justice courses have really helped me to critically think and engage with social issues.\"\n\n[Read More](https://www.ucanwest.ca/testimonial/students/mau)\n\n![Irene](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2Ftestimonials-Irene-MBA-ucanwest.jpg%3Fquality%3D100&w=1080&q=75)\n\n#### IreneMBA Student from Nigeria\n\n\"I find UCW to be a vibrant environment. People from various nationalities united by their drive for knowledge, who want to know more about Canadian society, more about global society, more about the corporate workplace. I’ve learned so much.\"\n\n[Read More](https://www.ucanwest.ca/testimonial/students/irene)\n\n![David](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2022%2F08%2FDavid.jpg%3Fquality%3D100&w=1080&q=75)\n\n#### DavidBABC Student from Columbia\n\n\"What I like about my program is that on one side, I have all the business knowledge of how to run a business and how to create a company. On the other hand, I have the communication techniques and know how to say things better.\"\n\n[Read More](https://www.ucanwest.ca/testimonial/students/david)\n\n## Accreditations & Memberships\n\n[\n\nView More\n\n](https://www.ucanwest.ca/about/memberships-designations)\n\n[\n\n![NCMA-Logo-200x88-1](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FNCMA-Logo-200x88-1.webp&w=3840&q=80)\n\n](https://cim.ca/accreditation/ncma-professionally-accredited-programs)\n\n[\n\n![educanada](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2Feducanada.png&w=3840&q=80)\n\n](https://www.educanada.ca/index.aspx?lang=eng)\n\n[\n\n![canadian-bureau](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2Fcanadian-bureau.png&w=3840&q=80)\n\n](https://cbie.ca/)\n\n[\n\n![AASHE-logo-200x80-1](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FAASHE-logo-200x80-1.png&w=3840&q=80)\n\n](https://www.aashe.org/)\n\n[\n\n![AACSB-logo-accredited-color-RGB-scaled-1](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FAACSB-logo-accredited-color-RGB-scaled-1.jpg&w=3840&q=80)\n\n](https://www.aacsb.edu/)\n\n[\n\n![BCCAT-4C-vert_1](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2022%2F05%2FBCCAT-4C-vert_1.png&w=3840&q=80)\n\n](https://www.bccat.ca/)\n\n[\n\n![GUS-Logo-Sticky-1](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F10%2FGUS-Logo-Sticky-1.webp&w=3840&q=80)\n\n](https://guscanada.com/)\n\n[\n\n![languages-canada-logo-transparent](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F12%2Flanguages-canada-logo-transparent.webp&w=3840&q=80)\n\n](https://www.languagescanada.ca/en)\n\n[\n\n![BC-AMA-logo](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2022%2F05%2FBC-AMA-logo.png&w=3840&q=80)\n\n](https://www.ama.org/)\n\n[\n\n![EQA-logo-small](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F03%2FEQA-logo-small.png&w=3840&q=80)\n\n](https://www2.gov.bc.ca/gov/content/education-training/post-secondary-education/institution-resources-administration/education-quality-assurance)\n\n[\n\n![QS-Logo-new](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2024%2F12%2FQS-Logo-new.webp&w=3840&q=80)\n\n](https://www.topuniversities.com/university-rankings)\n\n![membership-designation-Academy-Member-Institution-ucanwest](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2025%2F08%2Fmembership-designation-Academy-Member-Institution-ucanwest.png&w=3840&q=80)\n\n![membership-designation-pmi-atp-badge-ucanwest](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2025%2F08%2Fmembership-designation-pmi-atp-badge-ucanwest.png&w=3840&q=80)\n\n## Explore our campuses\n\nUniversity Canada West is an innovative business and technology-oriented institution located in the heart of vibrant Vancouver. Established in 2004, UCW offers a range of career-focused programs including the Bachelor of Commerce, Bachelor of Arts in Business Communication, Associate of Arts and Master of Business Administration. Courses are offered at our two downtown Vancouver campuses and online too. Offering courses online brings flexibility to education, allowing those who may not have otherwise had the opportunity to gain respected qualifications.\n\n[\n\nCampus tour\n\n](https://campus-tour.ucw.ca/)[\n\nButton 2\n\n](https://www.ucanwest.ca/#)\n\n## Start your program today!\n\nOffering courses online brings to education, allowing those who may not have otherwise had the opportunity to gain respected qualifications\n\n[\n\napply now\n\n](https://www.ucanwest.ca/students/new-students/speak-with-an-advisor)\n\n![UCW-logo-outline-2x](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2022%2F12%2FUCW-logo-outline-2x.webp&w=3840&q=75)\n\n1461 Granville Street\n\nVancouver, British Columbia\n\nV6Z 0E5, Canada\n\n[](https://www.instagram.com/university_canada_west)\n\n[](https://www.facebook.com/ucanwest)\n\n[](https://www.linkedin.com/school/ucanwest)\n\n[](https://www.youtube.com/user/CanadaUniversity)\n\n[](http://www.tiktok.com/@ucanwest)\n\n##### UCW is part of:\n\n![GUSlogo-whitewtransparency-01](https://www.ucanwest.ca/_next/image?url=https%3A%2F%2Fwpvip.guscancolleges.ca%2Fucanwest%2Fwp-content%2Fuploads%2Fsites%2F3%2F2021%2F05%2FGUSlogo-whitewtransparency-01.png&w=3840&q=75)\n\n#### Useful Links\n\n[MyUCW](https://www.myucwest.ca/login)\n\n[Staff & Faculty Directory](https://www.ucanwest.ca/directory)\n\n[Careers](https://www.ucanwest.ca/hr)\n\n[Alumni Portal](https://alumni.myucwest.ca/)\n\n[Policies](https://www.ucanwest.ca/about/policies)\n\n[Employers](https://www.ucanwest.ca/students/student-affairs/career-development-centre)\n\n#### Contact\n\n[Contact](https://www.ucanwest.ca/contact-us)\n\n[Whatsapp](https://api.whatsapp.com/send/?phone=17783571500&text&type=phone_number&app_absent=0)\n\n[Visit Us](https://www.ucanwest.ca/our-campuses/visit-us)\n\n[Media](https://www.ucanwest.ca/media)\n\n#### We are UCW\n\n[About UCW](https://www.ucanwest.ca/about)\n\n[Future Students](https://www.ucanwest.ca/future-students)\n\n[Current Students](https://www.ucanwest.ca/students)\n\n#### Study at UCW\n\n[Undergraduate Programs](https://www.ucanwest.ca/programs/undergraduate)\n\n[Graduate Programs](https://www.ucanwest.ca/programs/graduate)\n\n[Preparatory Programs](https://www.ucanwest.ca/programs/preparatory)\n\n[Micro-Credentials](https://www.ucanwest.ca/programs/micro-credentials)\n\nWe acknowledge that the territories on which UCW and its campuses are situated are the traditional, ancestral and unceded territories of the xʷməθkʷəy̓əm (Musqueam), Sḵwx̱wú7mesh (Squamish) and Sel̓íl̓witulh/səlilwətaɬ (Tsleil-Waututh) Nations. We thank them for having cared for this land since time immemorial, honour their graciousness to the students who seek knowledge here, and iterate our dedication to valuing the ongoing contributions of Indigenous peoples and communities.\n\n© Copyright 2005 - 2026 | University Canada West. All rights reserved. Learningwise Education Inc.\n\n[Privacy Policy](https://www.ucanwest.ca/privacy-policy)\n\n[Site map](https://www.ucanwest.ca/sitemap_index.xml)\n\n[Terms & Conditions](https://www.ucanwest.ca/terms-and-conditions)\n",
  "markdownStats": {
    "images": 5,
    "links": 1,
    "tables": 0,
    "codeBlocks": 0,
    "headings": 16
  },
  "tokens": {
    "htmlTokens": 234087,
    "markdownTokens": 938,
    "reduction": 233149,
    "reductionPercent": 100
  },
  "score": {
    "score": 56,
    "grade": "D",
    "dimensions": {
      "semanticHtml": {
        "score": 57,
        "weight": 20,
        "grade": "D",
        "checks": {
          "uses_article_or_main": {
            "score": 100,
            "weight": 20,
            "details": "Has both <article> and <main>"
          },
          "proper_heading_hierarchy": {
            "score": 25,
            "weight": 25,
            "details": "5 heading level skip(s)"
          },
          "semantic_elements": {
            "score": 14,
            "weight": 20,
            "details": "16 semantic elements, 354 divs (ratio: 4%)"
          },
          "meaningful_alt_texts": {
            "score": 75,
            "weight": 15,
            "details": "24/32 images with meaningful alt text"
          },
          "low_div_nesting": {
            "score": 82,
            "weight": 20,
            "details": "Avg div depth: 6.8, max: 17"
          }
        }
      },
      "contentEfficiency": {
        "score": 43,
        "weight": 25,
        "grade": "D",
        "checks": {
          "token_reduction_ratio": {
            "score": 100,
            "weight": 40,
            "details": "100% token reduction (HTML→Markdown)"
          },
          "content_to_noise_ratio": {
            "score": 0,
            "weight": 30,
            "details": "Content ratio: 0.4% (2676 content chars / 733652 HTML bytes)"
          },
          "minimal_inline_styles": {
            "score": 0,
            "weight": 15,
            "details": "283/1536 elements with inline styles (18.4%)"
          },
          "reasonable_page_weight": {
            "score": 20,
            "weight": 15,
            "details": "HTML size: 716KB"
          }
        }
      },
      "aiDiscoverability": {
        "score": 45,
        "weight": 25,
        "grade": "D",
        "checks": {
          "has_llms_txt": {
            "score": 100,
            "weight": 20,
            "details": "llms.txt exists and is valid"
          },
          "has_robots_txt": {
            "score": 100,
            "weight": 10,
            "details": "robots.txt exists"
          },
          "robots_allows_ai_bots": {
            "score": 100,
            "weight": 15,
            "details": "All major AI bots allowed"
          },
          "has_sitemap": {
            "score": 0,
            "weight": 10,
            "details": "No sitemap found"
          },
          "supports_markdown_negotiation": {
            "score": 0,
            "weight": 25,
            "details": "No Markdown for Agents support detected"
          },
          "has_content_signals": {
            "score": 0,
            "weight": 20,
            "details": "No Content-Signal found (robots.txt or HTTP headers)"
          }
        }
      },
      "structuredData": {
        "score": 70,
        "weight": 15,
        "grade": "C",
        "checks": {
          "has_schema_org": {
            "score": 0,
            "weight": 30,
            "details": "No JSON-LD / Schema.org found"
          },
          "has_open_graph": {
            "score": 100,
            "weight": 25,
            "details": "All OG tags present"
          },
          "has_meta_description": {
            "score": 100,
            "weight": 20,
            "details": "Meta description: 175 chars"
          },
          "has_canonical_url": {
            "score": 100,
            "weight": 15,
            "details": "Canonical URL present"
          },
          "has_lang_attribute": {
            "score": 100,
            "weight": 10,
            "details": "lang=\"en\""
          }
        }
      },
      "accessibility": {
        "score": 82,
        "weight": 15,
        "grade": "B",
        "checks": {
          "content_without_js": {
            "score": 100,
            "weight": 40,
            "details": "Content available without JavaScript"
          },
          "reasonable_page_size": {
            "score": 40,
            "weight": 30,
            "details": "Page size: 716KB"
          },
          "fast_content_position": {
            "score": 100,
            "weight": 30,
            "details": "Main content starts at 1% of HTML"
          }
        }
      }
    }
  },
  "recommendations": [
    {
      "id": "improve_content_ratio",
      "priority": "critical",
      "category": "contentEfficiency",
      "titleKey": "rec.improve_content_ratio.title",
      "descriptionKey": "rec.improve_content_ratio.description",
      "howToKey": "rec.improve_content_ratio.howto",
      "effort": "moderate",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "Content ratio: 0.4% (2676 content chars / 733652 HTML bytes)"
    },
    {
      "id": "add_markdown_negotiation",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_markdown_negotiation.title",
      "descriptionKey": "rec.add_markdown_negotiation.description",
      "howToKey": "rec.add_markdown_negotiation.howto",
      "effort": "significant",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "No Markdown for Agents support detected"
    },
    {
      "id": "add_sitemap",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_sitemap.title",
      "descriptionKey": "rec.add_sitemap.description",
      "howToKey": "rec.add_sitemap.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No sitemap found"
    },
    {
      "id": "add_content_signals",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_content_signals.title",
      "descriptionKey": "rec.add_content_signals.description",
      "howToKey": "rec.add_content_signals.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No Content-Signal found (robots.txt or HTTP headers)"
    },
    {
      "id": "remove_inline_styles",
      "priority": "critical",
      "category": "contentEfficiency",
      "titleKey": "rec.remove_inline_styles.title",
      "descriptionKey": "rec.remove_inline_styles.description",
      "howToKey": "rec.remove_inline_styles.howto",
      "effort": "moderate",
      "estimatedImpact": 3,
      "checkScore": 0,
      "checkDetails": "283/1536 elements with inline styles (18.4%)"
    },
    {
      "id": "fix_heading_hierarchy",
      "priority": "high",
      "category": "semanticHtml",
      "titleKey": "rec.fix_heading_hierarchy.title",
      "descriptionKey": "rec.fix_heading_hierarchy.description",
      "howToKey": "rec.fix_heading_hierarchy.howto",
      "effort": "quick-win",
      "estimatedImpact": 6,
      "checkScore": 25,
      "checkDetails": "5 heading level skip(s)"
    },
    {
      "id": "add_schema_org",
      "priority": "high",
      "category": "structuredData",
      "titleKey": "rec.add_schema_org.title",
      "descriptionKey": "rec.add_schema_org.description",
      "howToKey": "rec.add_schema_org.howto",
      "effort": "moderate",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "No JSON-LD / Schema.org found"
    },
    {
      "id": "add_semantic_elements",
      "priority": "high",
      "category": "semanticHtml",
      "titleKey": "rec.add_semantic_elements.title",
      "descriptionKey": "rec.add_semantic_elements.description",
      "howToKey": "rec.add_semantic_elements.howto",
      "effort": "moderate",
      "estimatedImpact": 5,
      "checkScore": 14,
      "checkDetails": "16 semantic elements, 354 divs (ratio: 4%)"
    },
    {
      "id": "reduce_page_size",
      "priority": "high",
      "category": "accessibility",
      "titleKey": "rec.reduce_page_size.title",
      "descriptionKey": "rec.reduce_page_size.description",
      "howToKey": "rec.reduce_page_size.howto",
      "effort": "moderate",
      "estimatedImpact": 4,
      "checkScore": 40,
      "checkDetails": "Page size: 716KB"
    },
    {
      "id": "reduce_page_weight",
      "priority": "high",
      "category": "contentEfficiency",
      "titleKey": "rec.reduce_page_weight.title",
      "descriptionKey": "rec.reduce_page_weight.description",
      "howToKey": "rec.reduce_page_weight.howto",
      "effort": "significant",
      "estimatedImpact": 4,
      "checkScore": 20,
      "checkDetails": "HTML size: 716KB"
    }
  ],
  "llmsTxtPreview": "# ucanwest.ca\n\n> UCW is a business-oriented university which offers Bachelor degrees that prepare you to be an effective leader in the workplace. Its Bachelor of Commerce are ACBSP-accredited.\n\n## Documentation\n- [FAQs](https://www.ucanwest.ca/faq)\n\n## Main\n- [University in Vancouver | University Canada West (UCW)](https://www.ucanwest.ca/): UCW is a business-oriented university which offers Bachelor degrees that prepare you to be an effective leader in the w…\n- [About](https://www.ucanwest.ca/about)\n- [President’s Message](https://www.ucanwest.ca/about/presidents-message)\n- [Mission & Goals](https://www.ucanwest.ca/about/mission-goals)\n- [Accreditations](https://www.ucanwest.ca/about/memberships-designations)\n- [Ratings and Awards](https://www.ucanwest.ca/about/ratings-and-awards)\n- [Governance & Administration](https://www.ucanwest.ca/about/governance)\n- [Senate](https://www.ucanwest.ca/about/senate)\n- [About the Senate](https://www.ucanwest.ca/about/senate/about)\n- [Committees](https://www.ucanwest.ca/about/senate/committees)\n- [Elections](https://www.ucanwest.ca/about/senate/elections)\n- [Membership](https://www.ucanwest.ca/about/senate/membership)\n- [Program Advisory Committees](https://www.ucanwest.ca/about/program-advisory-committees)\n- [University Initiatives](https://www.ucanwest.ca/about/university-initiatives)\n- [Sustainability](https://www.ucanwest.ca/about/university-initiatives/sustainability)\n- [Academics](https://www.ucanwest.ca/about/university-initiatives/sustainability/academics)\n- [Campus Buildings](https://www.ucanwest.ca/about/university-initiatives/sustainability/campus-buildings)\n- [Recycling](https://www.ucanwest.ca/about/university-initiatives/sustainability/recycling)\n- [Transportation](https://www.ucanwest.ca/about/university-initiatives/sustainability/transportation)\n- [Equality, Diversity and Inclusion (EDI)](https://www.ucanwest.ca/about/university-initiatives/equality-diversity-and-inclusion-edi)\n- [Policies](https://www.ucanwest.ca/about/policies)\n- [Accountability](https://www.ucanwest.ca/about/accountability)\n- [Our Team](https://www.ucanwest.ca/about/accountability/our-team)\n- [Quality Assurance](https://www.ucanwest.ca/about/accountability/quality-assurance)\n- [Surveys](https://www.ucanwest.ca/about/accountability/surveys)\n- [Ombudsperson](https://www.ucanwest.ca/about/ombudsperson)\n- [Brochures](https://www.ucanwest.ca/about/brochures)\n- [Academic Appeals](https://www.ucanwest.ca/about/senate/committees/academic-appeals)\n- [Library Services](https://www.ucanwest.ca/academics/library/services)\n- [Cyclial Program Reviews](https://www.ucanwest.ca/about/accountability/quality-assurance/cyclical-program-reviews)\n- [LEARN MORE](https://www.ucanwest.ca/directory)\n- [Leadership](https://www.ucanwest.ca/directory/leadership)\n- [Student Recruitment Advisors](https://www.ucanwest.ca/students/new-students/speak-with-an-advisor)\n- [Department Chairs](https://www.ucanwest.ca/academics/department-chairs)\n- [Our Campuses](https://www.ucanwest.ca/our-campuses)\n- [Virtual Campus Tour](https://www.ucanwest.ca/campus-tour)\n- [Visit Us](https://www.ucanwest.ca/our-campuses/visit-us)\n- [Careers](https://www.ucanwest.ca/hr)\n\n## Blog\n- [News](https://www.ucanwest.ca/news-and-events)\n- [News Releases](https://www.ucanwest.ca/media/news-releases)\n- [Blog](https://www.ucanwest.ca/blog)\n- [Business & Management](https://www.ucanwest.ca/blog/business-management)\n- [Media & Communication](https://www.ucanwest.ca/blog/media-communication)\n- [Education & Career Tips](https://www.ucanwest.ca/blog/education-careers-tips)\n- [Academic Writing](https://www.ucanwest.ca/blog/academic-writing)\n- [Lifestyle & Culture](https://www.ucanwest.ca/blog/lifestyle-culture)\n\n## Support\n- [Contact Us](https://www.ucanwest.ca/contact-us)\n- [FAQs](https://www.ucanwest.ca/faq)\n- [Contact Us](https://www.ucanwest.ca/academics/library/contact)\n- [Support for UCW Researchers](https://www.ucanwest.ca/academics/research/support-for-ucw-researchers)\n\n",
  "llmsTxtExisting": "# University Canada West (UCW)\n\n---\n\n\n## Pages\n\n- [Survey Management Committee](https://www.ucanwest.ca/about/accountability/surveys/survey-management-committee)\n- [Staying Safe from Fraud](https://www.ucanwest.ca/admissions/tuition-fees/staying-safe-from-fraud)\n- [Equality, Diversity and Inclusion (EDI)](https://www.ucanwest.ca/about/university-initiatives/equality-diversity-and-inclusion-edi)\n- [[ Test ] - Form Embed](https://www.ucanwest.ca/test-form-embed)\n- [Fall 2025 Convocation](https://www.ucanwest.ca/convocation/fall-2025)\n- [Academic Operations and Initiatives](https://www.ucanwest.ca/directory/department/academic-operations-and-initiatives)\n- [Contact the Library](https://www.ucanwest.ca/academics/library/contact)\n- [Instructional and Faculty Support and Resources](https://www.ucanwest.ca/academics/library/faculty-research-support)\n- [Learning Common Services](https://www.ucanwest.ca/academics/library/learning-commons)\n- [Library Services](https://www.ucanwest.ca/academics/library/services)\n- [Library Resources](https://www.ucanwest.ca/academics/library/resources)\n- [About the Senate](https://www.ucanwest.ca/about/senate/about)\n- [Join the MBA Games](https://www.ucanwest.ca/students/mba-games/join)\n- [Payment methods](https://www.ucanwest.ca/admissions/tuition-fees/payment-methods)\n- [Department Chairs](https://www.ucanwest.ca/academics/department-chairs)\n- [Spring 2025 Convocation](https://www.ucanwest.ca/convocation/spring-2025)\n- [2025 Overview](https://www.ucanwest.ca/convocation/2025-overview)\n- [Library and Learning Commons](https://www.ucanwest.ca/academics/library)\n- [Survey Platforms](https://www.ucanwest.ca/about/accountability/surveys/survey-platforms)\n- [Research Publications](https://www.ucanwest.ca/academics/research/publications)\n- [Speak with an advisor](https://www.ucanwest.ca/students/new-students/speak-with-an-advisor)\n- [University Access Program](https://www.ucanwest.ca/directory/department/university-access-program)\n- [Undergraduate Faculty Directory](https://www.ucanwest.ca/directory/department/undergraduate-faculty)\n- [Graduate Faculty Directory](https://www.ucanwest.ca/directory/department/graduate-faculty)\n- [Honorary Degree Recipients](https://www.ucanwest.ca/alumni/honorary-degree-recipients)\n- [Valedictorians](https://www.ucanwest.ca/alumni/valedictorians)\n- [Mission & Goals](https://www.ucanwest.ca/about/mission-goals)\n- [Medals for Academic Excellence](https://www.ucanwest.ca/alumni/medals-for-academic-excellence)\n- [Academic Calendar](https://www.ucanwest.ca/admissions/academic-calendar)\n- [Transportation](https://www.ucanwest.ca/students/new-students/transportation)\n- [Custodianship](https://www.ucanwest.ca/students/new-students/custodianship)\n- [Cost Of Living](https://www.ucanwest.ca/students/new-students/cost-of-living)\n- [MBA Games](https://www.ucanwest.ca/students/mba-games)\n- [Office of the Ombudsperson](https://www.ucanwest.ca/about/ombudsperson)\n- [Moving To Vancouver](https://www.ucanwest.ca/students/new-students/moving-to-vancouver)\n- [UCW Cohort Update FAQ](https://www.ucanwest.ca/faq/cohorts)\n- [MBA-ACCA Pathway](https://www.ucanwest.ca/programs/graduate/master-of-business-administration-mba-acca-pathway)\n- [Support for UCW Researchers](https://www.ucanwest.ca/academics/research/support-for-ucw-researchers)\n- [Partner with UCW Researchers](https://www.ucanwest.ca/academics/research/partner-with-ucw-researchers)\n- [Research](https://www.ucanwest.ca/academics/research)\n- [Collaborative Online International Learning](https://www.ucanwest.ca/partners/pathway-partners/collaborative-online-international-learning)\n- [Teaching &amp; Learning Committee](https://www.ucanwest.ca/about/senate/committees/teaching-learning-committee)\n- [Campus Health and Safety](https://www.ucanwest.ca/campus-health-safety)\n- [Canadian University Survey Consortium (CUSC) Survey](https://www.ucanwest.ca/about/accountability/surveys/cusc)\n- [Graduation and Professional Student Survey (CGPSS)](https://www.ucanwest.ca/about/accountability/surveys/cgpss)\n- [Student Advisors](https://www.ucanwest.ca/directory/student-advisors)\n- [2024 Overview](https://www.ucanwest.ca/convocation/2024-overview)\n- [2023 Overview](https://www.ucanwest.ca/convocation/2023-overview)\n- [2022 Overview](https://www.ucanwest.ca/convocation/2022-overview)\n- [Fall 2024 Convocation](https://www.ucanwest.ca/convocation/fall-2024)\n- [Leadership](https://www.ucanwest.ca/directory/department/leadership)\n- [Centre for Advanced Studies Overview](https://www.ucanwest.ca/academics/research/cas-mission/centre-for-advanced-studies)\n- [Centre for Advanced Studies](https://www.ucanwest.ca/academics/research/cas-mission)\n- [Podcast](https://www.ucanwest.ca/media/podcast)\n- [Alumni Success Stories](https://www.ucanwest.ca/alumni/alumni-success-stories)\n- [Student Life At UCW](https://www.ucanwest.ca/students/student-affairs/life-at-ucw)\n- [New Employees](https://www.ucanwest.ca/careers/new-employees)\n- [Current Employees](https://www.ucanwest.ca/careers/current-employees)\n- [News and Events](https://www.ucanwest.ca/news-and-events)\n- [UCW Experts Guide](https://www.ucanwest.ca/directory/experts-guide)\n- [Current Students](https://www.ucanwest.ca/students/current-students)\n- [Understanding Indigenous History: A Path Forward](https://www.ucanwest.ca/media/podcast/understanding-indigenous-history-a-path-forward)\n- [Executive Team](https://www.ucanwest.ca/directory/department/executive-team)\n- [Search](https://www.ucanwest.ca/search)\n- [Articulation Agreement](https://www.ucanwest.ca/partners/pathway-partners/articulation-agreement)\n- [ESL Pathways](https://www.ucanwest.ca/partners/pathway-partners/esl-pathways)\n- [International Credential Recognition](https://www.ucanwest.ca/partners/pathway-partners/international-credential-recognition)\n- [International Pathways into Bachelor Degrees](https://www.ucanwest.ca/partners/pathway-partners/international-pathways-into-bachelor-degrees)\n- [Semester Abroad &amp; Student Exchange](https://www.ucanwest.ca/partners/pathway-partners/semester-abroad-student-exchange)\n- [Department](https://www.ucanwest.ca/directory/department)\n- [Academic Affairs](https://www.ucanwest.ca/directory/department/academic-affairs)\n- [Administration](https://www.ucanwest.ca/directory/department/administration)\n- [Arts, Communications &amp; Social Sciences](https://www.ucanwest.ca/directory/department/arts-communications-social-sciences)\n- [BD Recruitment](https://www.ucanwest.ca/directory/department/bd-recruitment)\n- [Career Development](https://www.ucanwest.ca/directory/department/career-development)\n- [Community Engagement](https://www.ucanwest.ca/directory/department/community-engagement)\n- [Facilities &amp; Building Operations](https://www.ucanwest.ca/directory/department/facilities-building-operations)\n- [Faculty](https://www.ucanwest.ca/directory/department/faculty)\n- [Finance](https://www.ucanwest.ca/directory/department/finance)\n- [Health &amp; Safety](https://www.ucanwest.ca/directory/department/health-safety)\n- [IT](https://www.ucanwest.ca/directory/department/it)\n- [Staff Testimonials](https://www.ucanwest.ca/testimonial/staff)\n- [Alumni Testimonials](https://www.ucanwest.ca/testimonial/alumni)\n- [Students](https://www.ucanwest.ca/testimonial/students)\n- [Student Affairs](https://www.ucanwest.ca/directory/department/student-affairs)\n- [Student Recruitment Advisors](https://www.ucanwest.ca/directory/student-recruitment-advisors)\n- [Staff](https://www.ucanwest.ca/directory/department/staff)\n- [Registrar Office](https://www.ucanwest.ca/directory/department/registrar-office)\n- [Recruitment](https://www.ucanwest.ca/directory/department/recruitment)\n- [Library](https://www.ucanwest.ca/directory/department/library)\n- [Office of the President](https://www.ucanwest.ca/directory/department/office-of-the-president)\n- [Human Resources](https://www.ucanwest.ca/directory/department/human-resources)\n- [Leadership](https://www.ucanwest.ca/directory/leadership)\n- [MBA Department of Marketing, Strategy &amp; Entrepreneurship](https://www.ucanwest.ca/directory/department/mba-department-of-marketing-strategy-entrepreneurship)\n- [MBA Department of Quantitative Studies](https://www.ucanwest.ca/directory/department/mba-department-of-quantitative-studies)\n- [Marketing &amp; Communications](https://www.ucanwest.ca/directory/department/marketing-communications)\n- [MBA Department of Leadership &amp; People Management](https://www.ucanwest.ca/directory/department/mba-department-of-leadership-people-management)\n- [Testimonials](https://www.ucanwest.ca/testimonial)\n- [International Partners](https://www.ucanwest.ca/partners/international-partners)\n- [Summer 2023 Convocation](https://www.ucanwest.ca/convocation/summer-2023)\n\n---\n\n\n## Posts\n\n- [What Is Global Leadership and Why It Matters? ](https://www.ucanwest.ca/blog/business-management/what-is-global-leadership-and-why-it-matters)\n- [Why Financial Accounting Is Essential for Business Students?](https://www.ucanwest.ca/blog/business-management/why-financial-accounting-is-essential-for-business-students)\n- [Black History Month: Student and Faculty Reflections ](https://www.ucanwest.ca/blog/lifestyle-culture/black-history-month-student-and-faculty-reflections)\n- [What Are Business Ethics &amp; Why Are They Important? ](https://www.ucanwest.ca/blog/business-management/what-are-business-ethics-why-are-they-important)\n- [What makes a successful entrepreneur?](https://www.ucanwest.ca/blog/business-management/what-makes-a-successful-entrepreneur)\n- [What is Marketing Management: A Complete Guide](https://www.ucanwest.ca/blog/education-careers-tips/what-is-marketing-management-a-complete-guide)\n- [What Is Operations Management and Why Is It Important?](https://www.ucanwest.ca/blog/education-careers-tips/operations-management)\n- [What Is Business Statistics: Types, Benefits &amp; More](https://www.ucanwest.ca/blog/education-careers-tips/business-statistics-types-benefits-applications)\n- [What is Critical Thinking and How Does an MBA Help?](https://www.ucanwest.ca/blog/education-careers-tips/critical-thinking-skills)\n- [Festive things to do in Metro Vancouver this December](https://www.ucanwest.ca/blog/media-communication/festive-things-to-do-in-metro-vancouver-this-december)\n- [What is the significance of persuasive communication for a budding entrepreneur?](https://www.ucanwest.ca/blog/business-management/what-is-the-significance-of-persuasive-communication-for-a-budding-entrepreneur)\n- [What is Talent Management and Why is It Important? ](https://www.ucanwest.ca/blog/business-management/what-is-talent-management-importance)\n- [Microeconomics vs Macroeconomics – Key Differences Explained](https://www.ucanwest.ca/blog/education-careers-tips/microeconomics-vs-macroeconomics-key-differences-explained)\n- [What are Business Fundamentals? A Beginner’s Guide](https://www.ucanwest.ca/blog/education-careers-tips/what-are-business-fundamentals-a-beginners-guide)\n- [Top BCom Specializations: A Comprehensive Guide](https://www.ucanwest.ca/blog/education-careers-tips/top-bcom-specializations-a-comprehensive-guide)\n- [Importance of communication strategy within an organization](https://www.ucanwest.ca/blog/business-management/importance-of-communication-strategy-within-an-organization)\n- [Best Places to Stay in Vancouver Canada for Students](https://www.ucanwest.ca/blog/lifestyle-culture/best-places-to-stay-in-vancouver-canada-for-students)\n- [How to Become a Financial Analyst](https://www.ucanwest.ca/blog/education-careers-tips/how-to-become-a-financial-analyst)\n- [Top job opportunities with a Bachelor of Commerce degree](https://www.ucanwest.ca/blog/education-careers-tips/top-job-opportunities-with-a-bachelor-of-commerce-degree)\n- [Bachelor of Arts Degree Requirements: What You Need to Know ](https://www.ucanwest.ca/blog/education-careers-tips/bachelor-of-arts-degree-requirements)\n- [Top job roles after earning a business communication degree](https://www.ucanwest.ca/blog/education-careers-tips/top-job-roles-after-earning-a-business-communication-degree)\n- [Advantages and disadvantages of AI in education](https://www.ucanwest.ca/blog/education-careers-tips/advantages-and-disadvantages-of-ai-in-education)\n- [What Is an Undergraduate Degree in Canada?](https://www.ucanwest.ca/blog/education-careers-tips/what-is-an-undergraduate-degree-in-canada)\n- [How has social media emerged as a powerful communication medium?](https://www.ucanwest.ca/blog/media-communication/how-has-social-media-emerged-as-a-powerful-communication-medium)\n- [What is an Associate of Arts (AA) Degree?](https://www.ucanwest.ca/blog/business-management/what-is-an-associate-of-arts-aa-degree)\n- [Employee Retention Strategies: Best Practices for MBA Graduates](https://www.ucanwest.ca/blog/business-management/employee-retention-strategies-best-practices-for-mba-graduates)\n- [Top Strategic Management Strategies for Business Success](https://www.ucanwest.ca/blog/business-management/top-strategic-management-strategies-for-business-success)\n- [How to Become a Financial Planner](https://www.ucanwest.ca/blog/education-careers-tips/how-to-become-a-financial-planner)\n- [Associate vs. Bachelor’s Degree: What’s the Difference?](https://www.ucanwest.ca/blog/education-careers-tips/associate-vs-bachelors-degree-whats-the-difference)\n- [Job roles and responsibilities for BCom with Accounting elective area graduates](https://www.ucanwest.ca/blog/education-careers-tips/job-roles-and-responsibilities-for-bcom-with-accounting-elective-area-graduates)\n- [What Is Digital Transformation, Benefits, and Examples](https://www.ucanwest.ca/blog/business-management/what-is-digital-transformation)\n- [Truth and Reconciliation Day sparks national reflection](https://www.ucanwest.ca/blog/lifestyle-culture/truth-and-reconciliation-day-sparks-national-reflection)\n- [Why Vancouver is a top destination for job opportunities](https://www.ucanwest.ca/blog/education-careers-tips/why-vancouver-is-a-top-destination-for-job-opportunities)\n- [10 Best Productivity Apps for Students](https://www.ucanwest.ca/blog/education-careers-tips/10-best-productivity-apps-for-students)\n- [The Importance of Business Communication](https://www.ucanwest.ca/blog/business-management/the-importance-of-business-communication)\n- [Entrepreneurial Mindset: Key Traits and Characteristics](https://www.ucanwest.ca/blog/business-management/entrepreneurial-mindset-key-traits-and-characteristics)\n- [Effective Stress Management Techniques for Students](https://www.ucanwest.ca/blog/education-careers-tips/effective-stress-management-techniques-for-students)\n- [Innovative Business Startup Ideas for Students](https://www.ucanwest.ca/blog/education-careers-tips/innovative-business-startup-ideas-for-students)\n- [The Impact of Social Media on Marketing Strategies](https://www.ucanwest.ca/blog/business-management/the-impact-of-social-media-on-marketing-strategies)\n- [How should a beginner prepare for the GMAT?](https://www.ucanwest.ca/blog/education-careers-tips/how-should-a-beginner-prepare-for-the-gmat)\n- [The Magic of Multilingualism: Benefits Beyond Communication](https://www.ucanwest.ca/blog/education-careers-tips/the-magic-of-multilingualism-benefits-beyond-communication)\n- [Best study spots for university students in Vancouver](https://www.ucanwest.ca/blog/education-careers-tips/best-study-spots-for-university-students-in-vancouver)\n- [Preparing for Your First Term at UCW](https://www.ucanwest.ca/blog/education-careers-tips/preparing-for-your-first-term-at-ucw)\n- [What is IELTS? All You Need to Know About IELTS](https://www.ucanwest.ca/blog/education-careers-tips/what-is-ielts-all-you-need-to-know-about-ielts)\n- [Exploring British Columbia: 10 local weekend getaway ideas](https://www.ucanwest.ca/blog/lifestyle-culture/exploring-british-columbia-10-local-weekend-getaway-ideas)\n- [How will artificial intelligence change the future of work](https://www.ucanwest.ca/blog/education-careers-tips/how-will-artificial-intelligence-change-the-future-of-work)\n- [8 restaurants around UCW campuses to check out](https://www.ucanwest.ca/blog/lifestyle-culture/8-restaurants-around-ucw-campuses-to-check-out)\n- [10 fun things to do in Vancouver this summer](https://www.ucanwest.ca/blog/lifestyle-culture/10-fun-things-to-do-in-vancouver-this-summer)\n- [Applying for a Masters in Canada | A Guide for International Students](https://www.ucanwest.ca/blog/education-careers-tips/applying-masters-in-canada-a-guide-for-international-students)\n- [How to Make Your Resumé Stand Out: 7 Tips to Land That Dream Job](https://www.ucanwest.ca/blog/education-careers-tips/how-to-make-your-resume-stand-out-7-tips-to-land-that-dream-job)\n- [Discover the benefits of online learning at university](https://www.ucanwest.ca/blog/education-careers-tips/discover-the-benefits-of-online-learning-at-university)\n- [Crafting the future: Prototyping's role in design and innovation](https://www.ucanwest.ca/blog/education-careers-tips/crafting-the-future-prototypings-role-in-design-and-innovation)\n- [How to apply for a scholarship in Canada](https://www.ucanwest.ca/blog/education-careers-tips/how-to-apply-for-a-scholarship-in-canada)\n- [What can you do with a Bachelor of Arts degree?](https://www.ucanwest.ca/blog/education-careers-tips/what-can-you-do-with-a-bachelor-of-arts-degree)\n- [Navigating the Canadian job market for international students](https://www.ucanwest.ca/blog/education-careers-tips/navigating-the-canadian-job-market-for-international-students)\n- [What can you do with a business degree: Career paths and opportunities](https://www.ucanwest.ca/blog/education-careers-tips/what-can-you-do-with-a-business-degree-career-paths-and-opportunities)\n- [What employers are looking for in new graduates](https://www.ucanwest.ca/blog/education-careers-tips/what-employers-are-looking-for-in-new-graduates)\n- [How to make the most of your networking opportunities](https://www.ucanwest.ca/blog/education-careers-tips/how-to-make-the-most-of-your-networking-opportunities)\n- [Coping with homesickness and cultural adjustment as a university student](https://www.ucanwest.ca/blog/lifestyle-culture/coping-with-homesickness-and-cultural-adjustment)\n- [What is the difference between colleges and universities in Canada](https://www.ucanwest.ca/blog/education-careers-tips/what-is-the-difference-between-colleges-and-universities-in-canada)\n- [How to Utilize LinkedIn for Practicums and Job Hunting](https://www.ucanwest.ca/blog/education-careers-tips/how-to-utilize-linkedin-for-practicums-and-job-hunting)\n- [Is an Associate of Arts degree worth it?](https://www.ucanwest.ca/blog/education-careers-tips/is-an-associate-of-arts-degree-worth-it)\n- [The art of transformative travel: Exploring the world with purpose](https://www.ucanwest.ca/blog/lifestyle-culture/the-art-of-transformative-travel-exploring-the-world-with-purpose)\n- [MBA Degree: A gateway to global business success stories](https://www.ucanwest.ca/blog/education-careers-tips/mba-degree-a-gateway-to-global-business-success-stories)\n- [Cultural Exchange at UCW: Celebrating Diversity Through Food](https://www.ucanwest.ca/blog/lifestyle-culture/cultural-exchange-at-ucw-celebrating-diversity-through-food)\n- [5 best social media platforms for your business](https://www.ucanwest.ca/blog/media-communication/5-best-social-media-platforms-for-your-business)\n- [Nurturing nature: The therapeutic benefits of gardening](https://www.ucanwest.ca/blog/lifestyle-culture/nurturing-nature-the-therapeutic-benefits-of-gardening)\n- [Celebrating Black History Month in Canada and the people who shaped it](https://www.ucanwest.ca/blog/education-careers-tips/celebrating-black-history-month-in-canada)\n- [The Future of Marketing](https://www.ucanwest.ca/blog/education-careers-tips/the-future-of-marketing)\n- [Nurturing Unity and Diversity: Building connections with Filipino students through FILSA](https://www.ucanwest.ca/blog/lifestyle-culture/nurturing-unity-and-diversity-building-connections-with-filipino-students-through-filsa)\n- [Top 10 business and technology trends of 2024](https://www.ucanwest.ca/blog/business-management/top-10-business-and-technology-trends-of-2024)\n- [The Future of Work: Essential Skills for Success in 2024 and Beyond](https://www.ucanwest.ca/blog/education-careers-tips/the-future-of-work-essential-skills-for-success-in-2024-and-beyond)\n- [UCW's Most Read Blogs of 2023](https://www.ucanwest.ca/blog/media-communication/ucws-most-read-blogs-of-2023)\n- [The power of storytelling: How narratives shape our lives](https://www.ucanwest.ca/blog/education-careers-tips/the-power-of-storytelling-how-narratives-shape-our-lives)\n- [Creating a Spotify playlist for the holidays](https://www.ucanwest.ca/blog/education-careers-tips/creating-a-spotify-playlist-for-the-holidays)\n- [Beyond the screens: Rediscovering the joy of analog hobbies](https://www.ucanwest.ca/blog/lifestyle-culture/beyond-the-screens-rediscovering-the-joy-of-analog-hobbies)\n- [How to look after your mental health during the holidays while studying abroad](https://www.ucanwest.ca/blog/lifestyle-culture/how-to-look-after-your-mental-health-during-the-holidays-while-studying-abroad)\n- [Must-take photos around Vancouver over the holidays](https://www.ucanwest.ca/blog/lifestyle-culture/must-take-photos-around-vancouver-over-the-holidays)\n- [How to nail your elevator pitch](https://www.ucanwest.ca/blog/education-careers-tips/how-to-nail-your-elevator-pitch)\n- [The best way to save money in Canada as an international university student](https://www.ucanwest.ca/blog/education-careers-tips/the-best-way-to-save-money-in-canada-as-an-international-university-student)\n- [Unlocking the Future: How AI and Blockchain are working together](https://www.ucanwest.ca/blog/education-careers-tips/unlocking-the-future-how-ai-and-blockchain-are-working-together)\n- [How businesses can navigate inflation](https://www.ucanwest.ca/blog/education-careers-tips/how-businesses-can-navigate-inflation)\n- [Choosing an MBA exit course and why?](https://www.ucanwest.ca/blog/business-management/choosing-an-mba-exit-course-and-why)\n- [8 fun things to do this fall in Vancouver](https://www.ucanwest.ca/blog/lifestyle-culture/fun-things-to-do-this-fall-in-vancouver)\n- [Graduation day nears with UCW’s Fall Convocation 2023](https://www.ucanwest.ca/blog/education-careers-tips/graduation-day-nears-with-ucws-fall-convocation-2023)\n- [The power of daily habits: Its importance and how it impacts our lives](https://www.ucanwest.ca/blog/lifestyle-culture/the-power-of-daily-habits-its-importance-and-how-it-impacts-our-lives)\n- [Study strategies to kick off the new term](https://www.ucanwest.ca/blog/education-careers-tips/study-strategies-to-kick-off-the-new-term)\n- [The MBA job search: A comprehensive guide to landing your dream job](https://www.ucanwest.ca/blog/education-careers-tips/the-mba-job-search-a-comprehensive-guide-to-landing-your-dream-job)\n- [My Experience at the Ocean Wise Shoreline Cleanup Event at UCW](https://www.ucanwest.ca/blog/education-careers-tips/my-experience-at-the-ocean-wise-shoreline-cleanup-event-at-ucw)\n- [Truth and Reconciliation Day: A Journey Towards Healing and Understanding](https://www.ucanwest.ca/blog/lifestyle-culture/truth-and-reconciliation-day-a-journey-towards-healing-and-understanding)\n- [How to use social media to your advantage when job hunting](https://www.ucanwest.ca/blog/education-careers-tips/how-to-use-social-media-to-your-advantage-when-job-hunting)\n- [Effective communication strategies for leaders](https://www.ucanwest.ca/blog/education-careers-tips/effective-communication-strategies-for-leaders)\n- [How AI is reshaping the job market](https://www.ucanwest.ca/blog/business-management/how-ai-is-reshaping-the-job-market)\n- [How to be a better project manager](https://www.ucanwest.ca/blog/lifestyle-culture/how-to-be-a-better-project-manager)\n- [Vancouver ranks first in high tech job growth](https://www.ucanwest.ca/blog/lifestyle-culture/vancouver-ranks-first-in-high-tech-job-growth)\n- [How does social media affect mental health](https://www.ucanwest.ca/blog/media-communication/how-does-social-media-affect-mental-health)\n- [The history of BC Day](https://www.ucanwest.ca/blog/lifestyle-culture/history-of-bc-day)\n- [How to make a good impression in a virtual job interview](https://www.ucanwest.ca/blog/education-careers-tips/how-to-make-a-good-impression-in-a-virtual-job-interview)\n- [Vancouver ranks third best city in Canada for students](https://www.ucanwest.ca/blog/lifestyle-culture/vancouver-ranks-third-best-city-in-canada-for-students)\n- [How Bachelor of Commerce graduates can capitalize on online retail trends](https://www.ucanwest.ca/blog/education-careers-tips/how-bachelor-of-commerce-graduates-can-capitalize-on-online-retail-trends)\n\n---",
  "emergingProtocols": {
    "oauthDiscovery": {
      "exists": false,
      "url": "https://www.ucanwest.ca/.well-known/oauth-authorization-server"
    },
    "mcpServerCard": {
      "exists": false,
      "url": "https://www.ucanwest.ca/.well-known/mcp.json"
    },
    "a2aAgentCard": {
      "exists": false,
      "url": "https://www.ucanwest.ca/.well-known/agent.json"
    },
    "count": 0
  },
  "snippets": [
    {
      "id": "fix_heading_hierarchy",
      "title": "Fix heading hierarchy",
      "description": "Your page has 1 <h1> elements. Keep only one. Demote the rest to <h2>.",
      "language": "html",
      "code": "<!-- Keep only one <h1> per page -->\n<h1>University in Vancouver | University Canada West (UCW)</h1>",
      "filename": "<main> or <article>"
    },
    {
      "id": "add_schema_org",
      "title": "Add Schema.org JSON-LD",
      "description": "Structured data helps AI agents understand the type, author, and purpose of your content.",
      "language": "html",
      "code": "<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"WebPage\",\n  \"name\": \"University in Vancouver | University Canada West (UCW)\",\n  \"description\": \"UCW is a business-oriented university which offers Bachelor degrees that prepare you to be an effective leader in the workplace. Its Bachelor of Commerce are ACBSP-accredited.\",\n  \"url\": \"https://www.ucanwest.ca/\",\n  \"inLanguage\": \"en\"\n}\n</script>",
      "filename": "<head>"
    },
    {
      "id": "add_sitemap",
      "title": "Create /sitemap.xml",
      "description": "A sitemap helps AI agents discover all your pages. Most CMS platforms generate one automatically.",
      "language": "xml",
      "code": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n  <url>\n    <loc>https://www.ucanwest.ca/</loc>\n    <lastmod>2026-04-21</lastmod>\n  </url>\n</urlset>",
      "filename": "/sitemap.xml"
    },
    {
      "id": "add_content_signals",
      "title": "Add Content-Signal directives",
      "description": "Content-Signal tells AI agents how they may use your content. The canonical location is robots.txt, but you can also expose it as an HTTP header from any stack.",
      "language": "txt",
      "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no",
      "filename": "/robots.txt",
      "stacks": [
        {
          "id": "robots",
          "label": "robots.txt",
          "language": "txt",
          "filename": "/robots.txt",
          "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no"
        },
        {
          "id": "nginx",
          "label": "Nginx",
          "language": "nginx",
          "filename": "server block",
          "code": "# Inside your server { } block:\nadd_header Content-Signal \"search=yes, ai-input=yes, ai-train=no\" always;"
        },
        {
          "id": "apache",
          "label": "Apache",
          "language": "apache",
          "filename": ".htaccess",
          "code": "# In .htaccess (or VirtualHost):\nHeader set Content-Signal \"search=yes, ai-input=yes, ai-train=no\""
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// In your theme's functions.php or a small mu-plugin\nadd_action('send_headers', function () {\n    header('Content-Signal: search=yes, ai-input=yes, ai-train=no');\n});\n\n// Optional: also append the directive to the dynamic robots.txt\nadd_filter('robots_txt', function ($output) {\n    return $output . \"\\nContent-Signal: search=yes, ai-input=yes, ai-train=no\\n\";\n}, 10, 1);"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "middleware.ts",
          "code": "// middleware.ts (Next.js 13+ App Router or Pages Router)\nimport { NextResponse } from 'next/server';\nexport function middleware() {\n  const res = NextResponse.next();\n  res.headers.set(\n    'Content-Signal',\n    'search=yes, ai-input=yes, ai-train=no'\n  );\n  return res;\n}\nexport const config = { matcher: '/:path*' };"
        },
        {
          "id": "cloudflare",
          "label": "Cloudflare Workers",
          "language": "javascript",
          "filename": "worker.js",
          "code": "// Cloudflare Worker that proxies your origin and adds the header\nexport default {\n  async fetch(request, env, ctx) {\n    const res = await fetch(request);\n    const newRes = new Response(res.body, res);\n    newRes.headers.set(\n      'Content-Signal',\n      'search=yes, ai-input=yes, ai-train=no'\n    );\n    return newRes;\n  },\n};"
        },
        {
          "id": "express",
          "label": "Express / Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Express\napp.use((req, res, next) => {\n  res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n  reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  done();\n});"
        }
      ]
    },
    {
      "id": "add_markdown_negotiation",
      "title": "Support Markdown for Agents",
      "description": "Let AI agents request a clean Markdown version of any page via content negotiation, .md alternate URLs, link tags or Link headers.",
      "language": "html",
      "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">",
      "filename": "<head>",
      "stacks": [
        {
          "id": "html",
          "label": "HTML <head>",
          "language": "html",
          "filename": "<head>",
          "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        },
        {
          "id": "express",
          "label": "Express",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\napp.get('/page', (req, res) => {\n  res.setHeader('Vary', 'Accept');\n  res.setHeader('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    res.type('text/markdown; charset=utf-8');\n    return res.send(renderMarkdown('page'));\n  }\n  res.render('page');\n});"
        },
        {
          "id": "fastify",
          "label": "Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n  reply.header('Vary', 'Accept');\n  reply.header('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n  }\n  return reply.view('/page.ejs');\n});"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "app/page/route.ts",
          "code": "// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n  const accept = req.headers.get('accept') || '';\n  if (accept.includes('text/markdown')) {\n    return new Response(await renderMarkdown('page'), {\n      headers: {\n        'Content-Type': 'text/markdown; charset=utf-8',\n        'Vary': 'Accept',\n      },\n    });\n  }\n  // Fall through to the page component\n  return new Response(null, { status: 404 });\n}"
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// Mechanism 1: respond to Accept: text/markdown on the same URL\nadd_action('template_redirect', function () {\n    if (!is_singular()) return;\n    $accept = $_SERVER['HTTP_ACCEPT'] ?? '';\n    if (strpos($accept, 'text/markdown') === false) return;\n    header('Content-Type: text/markdown; charset=utf-8');\n    header('Vary: Accept');\n    $post = get_queried_object();\n    echo \"# \" . get_the_title($post) . \"\\n\\n\";\n    echo wp_strip_all_tags(apply_filters('the_content', $post->post_content));\n    exit;\n});"
        },
        {
          "id": "static",
          "label": "Hugo / Jekyll / Astro",
          "language": "txt",
          "filename": "static/page.md",
          "code": "# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in <head>:\n#   <link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        }
      ]
    }
  ]
}

APIを使用してプログラムで取得できます(近日公開)

このJSONは内部使用向けです — MarkdownやllMs.txtファイルとは異なり、サイトにアップロードするものではありません。スコアの経時変化を追跡するための基準値として保存するか、開発チームと共有するか、CI/CDパイプラインに統合してください。

結果を共有

Twitter LinkedIn

バッジを埋め込む

このバッジをサイトに追加してください。AI対応スコアが変わると自動的に更新されます。

AgentReady.md score for www.ucanwest.ca
Script 推奨
<script src="https://agentready.md/badge.js" data-id="eb22c778-532d-4d61-8577-76df73fdfe38" data-domain="www.ucanwest.ca"></script>
Markdown
[![AgentReady.md score for www.ucanwest.ca](https://agentready.md/badge/www.ucanwest.ca.svg)](https://agentready.md/ja/r/eb22c778-532d-4d61-8577-76df73fdfe38)

近日公開: ドメイン全体分析

ドメイン全体をクロールし、llms.txtを生成し、AI対応スコアを経時的にモニタリング。ウェイトリストに登録して通知を受け取りましょう。

リストに登録されました!サービス開始時にお知らせします。