themes-earthen/schemas/field_note.schema.json
Alex Dunmow 49401f1b41 initial: theme plugin earthen
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/earthen.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:27 +08:00

39 lines
955 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Field Note",
"description": "Article-style dispatch from the field with byline and location",
"type": "object",
"properties": {
"author": {
"type": "string",
"title": "Author",
"description": "Author name",
"x-editor": "text"
},
"location": {
"type": "string",
"title": "Location",
"description": "Location where the dispatch was filed",
"x-editor": "text"
},
"dateline": {
"type": "string",
"title": "Dateline",
"description": "Date the dispatch was filed",
"x-editor": "text"
},
"body": {
"type": "string",
"title": "Body",
"description": "Body copy of the field note",
"x-editor": "richtext"
},
"image": {
"type": "string",
"title": "Image",
"description": "Lede image for the dispatch",
"x-editor": "media"
}
}
}