# Demo resume adapted from https://github.com/jsonresume/resume-schema/blob/master/sample.resume.json

basics:
name: Richard Hendriks
label: Programmer
email: richard.hendriks@mail.com
phone: (912) 555-4321
url: http://richardhendricks.example.com
summary:
Richard hails from Tulsa. He has earned degrees from the
University of Oklahoma and Stanford. (Go Sooners and Cardinal!)
Before starting Pied Piper, he worked for Hooli as a part time
software developer. While his work focuses on applied information theory,
mostly optimizing lossless compression schema of both the length-limited
and adaptive variants, his non-work interests range widely, everything
from quantum computing to chaos theory. He could tell you about it, but
THAT would NOT be a “length-limited” conversation!
location:
city: San Francisco
countryCode: US
profiles:
- network: github
url: github.com/richardhendricks
- network: linkedin
url: linkedin.com/richardhendricks
work:
- name: Pied Piper
position: CEO/President
location: Palo Alto, CA
url: http://piedpiper.example.com
summary:
Pied Piper is a multi-platform technology based on a proprietary
universal compression algorithm that has consistently fielded high
Weisman Scores™ that are not merely competitive, but approach the
theoretical limit of lossless compression.
// Use this as a guide. It shows the supported fields from the JSON resume schema
// (jsonresume.org/schema) expressed in TypeScript so they're easier to read.
// -------------------------------------------------------------------
// Where noted you can use the following Markdown subset:
// *bold*, **italics**, [label](link).

type Resume = {
basics?: {
name?: string;
label?: string;
email?: string;
summary?: string; // supports Markdown subset
profiles?: Array<{
network?: "github" | "network";
};
};
work?: Array<{
name?: string;
location?: string;
position?: string;
url?: string;
summary?: string;
startDate?: string; // YYYY or YYYY-MM
endDate?: string; // YYYY or YYYY-MM
highlights?: Array<string>; // supports Markdown subset
};
skills?: Array<{
name?: string;
keywords?: Array<string>;
};
work?: Array<{
name?: string;
description?: string; // supports Markdown subset
url?: string;
startDate?: string; // YYYY or YYYY-MM
endDate?: string; // YYYY or YYYY-MM
highlights?: Array<string>; // supports Markdown subset
};
education?: Array<{
institution?: string;
url?: string;
area?: string;
score?: string; // supports Markdown subset
startDate?: string; // YYYY or YYYY-MM
endDate?: string; // YYYY or YYYY-MM
courses?: Array<string>;
};
awards?: Array<{
title?: string;
awarder?: string;
date?: string; // YYYY or YYYY-MM
summary?: string; // supports Markdown subset
};
certificates?: Array<{
name?: string;
url?: string;
date?: string; // YYYY or YYYY-MM
issuer?: string;
};
publications?: Array<{
name?: string;
publisher?: string;
releaseDate?: string; // YYYY or YYYY-MM
url?: string;
summary?: string; // supports Markdown subset
};
volunteer?: Array<{
organization?: string;
position?: string;
url?: string;
summary?: string; // supports Markdown subset
startDate?: string; // YYYY or YYYY-MM
endDate?: string; // YYYY or YYYY-MM
highlights?: Array<string>; // supports Markdown subset
};
meta?: {
accentColor?: string;
baseFontSize?: number;
sectionsOrder?: Array<string>; // how are sections ordered, e.g., ["basics", "work", "education", ...]
sectionsPageBreaks?: Array<string>; // which sections should start on a new page, e.g., ["basics", "work", "education", ...]
};
};