Monorepo for Aesthetic.Computer aesthetic.computer
at main 89 lines 2.6 kB view raw
1{ 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "$id": "writing.schema.json", 4 "title": "Writing", 5 "description": "A text by or about Thomas Lawson — essay, review, interview, anthology entry, etc.", 6 "type": "object", 7 "properties": { 8 "id": { 9 "type": "string", 10 "description": "Unique identifier (nanoid)" 11 }, 12 "title": { 13 "type": "string", 14 "description": "Title of the writing" 15 }, 16 "slug": { 17 "type": "string", 18 "description": "URL-safe identifier", 19 "pattern": "^[a-z0-9][a-z0-9-]*[a-z0-9]$|^[a-z0-9]$" 20 }, 21 "year": { 22 "type": ["integer", "null"], 23 "description": "Year of publication", 24 "minimum": 1950, 25 "maximum": 2030 26 }, 27 "type": { 28 "type": "string", 29 "enum": ["essay", "review", "interview", "anthology", "book", "catalogue-text", "article", "other"], 30 "description": "Type of writing" 31 }, 32 "author": { 33 "type": ["string", "null"], 34 "description": "Author name — null if by Lawson, otherwise the other author's name" 35 }, 36 "publication": { 37 "type": ["string", "null"], 38 "description": "Publication name (e.g. 'Artforum', 'Afterall', 'East of Borneo', 'REALLIFE')" 39 }, 40 "issue": { 41 "type": ["string", "null"], 42 "description": "Issue number or volume info" 43 }, 44 "url": { 45 "type": ["string", "null"], 46 "format": "uri", 47 "description": "External link to the text if available online" 48 }, 49 "images": { 50 "type": "array", 51 "items": { 52 "type": "object", 53 "properties": { 54 "url": { "type": "string", "format": "uri" }, 55 "caption": { "type": ["string", "null"] } 56 }, 57 "required": ["url"] 58 } 59 }, 60 "description": { 61 "type": ["string", "null"], 62 "description": "Brief summary or notes" 63 }, 64 "artworkIds": { 65 "type": "array", 66 "items": { "type": "string" }, 67 "description": "IDs of artworks discussed in this writing" 68 }, 69 "sourceUrl": { 70 "type": ["string", "null"], 71 "format": "uri", 72 "description": "Original page URL on thomaslawson.com" 73 }, 74 "category": { 75 "type": "string", 76 "enum": ["afterall", "artforum", "east-of-borneo", "reallife", "anthologies", "interviews", "considering-other-artists", "writings-about-tl"], 77 "description": "Bookshelf category from the site" 78 }, 79 "createdAt": { 80 "type": "string", 81 "format": "date-time" 82 }, 83 "updatedAt": { 84 "type": "string", 85 "format": "date-time" 86 } 87 }, 88 "required": ["id", "title", "slug", "type", "category"] 89}