-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcto_coaches.schema.yaml
More file actions
99 lines (96 loc) · 2.92 KB
/
Copy pathcto_coaches.schema.yaml
File metadata and controls
99 lines (96 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# CTO Coach Directory Schema (YAML)
# This schema defines the structure for each CTO coach entry in the directory.
# Each coach should be represented as an object in a YAML array.
# Example usage: Place all coach entries in a file like `cto_coaches.yaml` as a list.
- id: unique-string-id
name: "Full Name"
bio: |
Short professional biography, background, and coaching philosophy.
photo: "https://link-to-photo.jpg"
contact:
email: "coach@email.com"
website: "https://coachwebsite.com"
linkedin: "https://linkedin.com/in/coach"
calendly: "https://calendly.com/coach" # or other booking link
other:
- label: "Twitter"
url: "https://twitter.com/coach"
location:
country: "Country"
city: "City"
timezone: "Region/City"
remote: true # true if available for remote coaching
languages:
- "English"
- "Spanish"
tags:
- "SaaS"
- "Startups"
- "Scaleups"
- "Agile"
- "Leadership"
company_experience:
- name: "Company Name"
role: "CTO"
years: "2018-2022"
description: "Brief description of role and achievements."
industry: "Fintech"
size: "50-200"
stage: "Growth"
location: "Country"
coaching_specialties:
- "Technical Leadership"
- "Team Building"
- "Scaling Engineering"
- "Interim CTO"
- "Founder Coaching"
supported_company_types:
- "Startup"
- "Scaleup"
- "Enterprise"
- "Nonprofit"
supported_industries:
- "Fintech"
- "Healthtech"
- "E-commerce"
supported_geographies:
- "North America"
- "Europe"
- "Asia-Pacific"
pricing:
currency: "USD"
range: "200-400"
unit: "per hour"
notes: "Discounts for longer engagements"
availability:
accepting_new_clients: true
typical_response_time: "1-2 days"
notes: "Limited slots for Q3"
testimonials:
- author: "Client Name"
company: "Client Company"
quote: "Working with this coach was transformative for our team."
year: 2024
articles:
- title: "How to Scale Your Engineering Team"
url: "https://coachwebsite.com/articles/scale-team"
published: "2023-11-01"
type: "blog"
- title: "Podcast: CTOs in Startups"
url: "https://podcast.com/episode"
published: "2024-01-15"
type: "podcast"
resources:
- label: "YouTube Channel"
url: "https://youtube.com/coach"
- label: "Book"
url: "https://booklink.com"
submission_info:
submitted_by: "coach@email.com"
submitted_at: "2025-06-03"
last_updated: "2025-06-03"
status: "approved" # or "pending", "rejected"
notes: |
Any additional notes or admin comments.
# To add a new coach, copy the structure above and fill in the details.
# This schema is designed for extensibility and can be easily adapted for Markdown frontmatter or other static site generators.