Skip to content

Instantly share code, notes, and snippets.

{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"draft": { "type": "string" },
"company": { "type": "string" },
"firstname": { "type": "string" },
"surname": { "type": "string" }
},
"required": ["draft"]
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ResearchProject",
"type": "object",
"properties": {
"title": { "type": "string" },
"sub_topic_1_heading": { "type": "string" },
"sub_topic_1_overview": { "type": "string" },
"sub_topic_1_prompt": { "type": "string" },
"sub_topic_2_heading": { "type": "string" },
{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": { "type": "string" },
"contact": { "type": "string" },
"email": { "type": "string" },
"website": { "type": "string" },
"stage": { "type": "string", "enum": ["Venture", "Pre-Seed", "Seed"] },
"summary": {