schemas/Person.md. The canonical Person schemaVerbatim from the docs. This is the picoschema format. Required and optional fields, typed relations (capitalized like Organization), arrays, enums. Define the shape once for every entity that recurs across clients.
---
title: Person
type: schema
entity: person
version: 1
schema:
name: string, full name
role?: string, job title
email?: string, contact email
works_at?: Organization, employer
expertise?(array, areas of knowledge): string
settings:
validation: warn
frontmatter:
tags?(array): string
status?(enum):
- active
- inactive
- archived
---