A photography collection: its /photo/<slug> gallery plus its cover tile on the /photo index grid.
Record Key
tid
Timestamp-based ID
Properties
comingSoon
boolean
Optional
No description available.
Default:
falsecover
string
Optional
No description available.
coverImage
object
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
deleted
boolean
Optional
No description available.
Default:
falseimages
array
of
object
Optional
No description available.
note
string
Optional
No description available.
maxGraphemes: 300 graphemesorder
integer
Optional
No description available.
slug
string
Required
URL + gallery-folder id, derived from the title.
maxLength: 128 bytestitle
string
Required
No description available.
maxGraphemes: 300 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"slug",
"title",
"createdAt"
],
"properties": {
"note": {
"type": "string",
"maxGraphemes": 300
},
"slug": {
"type": "string",
"maxLength": 128,
"description": "URL + gallery-folder id, derived from the title."
},
"cover": {
"type": "string"
},
"order": {
"type": "integer"
},
"title": {
"type": "string",
"maxGraphemes": 300
},
"images": {
"type": "array",
"items": {
"type": "object",
"required": [
"image"
],
"properties": {
"alt": {
"type": "string",
"maxGraphemes": 500
},
"image": {
"type": "blob",
"accept": [
"image/webp",
"image/jpeg",
"image/png"
],
"maxSize": 6000000
}
}
}
},
"deleted": {
"type": "boolean",
"default": false
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"comingSoon": {
"type": "boolean",
"default": false
},
"coverImage": {
"type": "object",
"required": [
"image"
],
"properties": {
"alt": {
"type": "string",
"maxGraphemes": 500
},
"image": {
"type": "blob",
"accept": [
"image/webp",
"image/jpeg",
"image/png"
],
"maxSize": 6000000
}
}
}
}
},
"description": "A photography collection: its /photo/<slug> gallery plus its cover tile on the /photo index grid."
}