Initial commit: сайт-блог генеалога на Astro
This commit is contained in:
commit
6cfcc2f18f
42 changed files with 5738 additions and 0 deletions
46
.astro/collections/blog.schema.json
Normal file
46
.astro/collections/blog.schema.json
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"pubDate": {
|
||||
"type": "string",
|
||||
"format": "date-time"
|
||||
},
|
||||
"updatedDate": {
|
||||
"type": "string",
|
||||
"format": "date-time"
|
||||
},
|
||||
"author": {
|
||||
"default": "Генеалог",
|
||||
"type": "string"
|
||||
},
|
||||
"tags": {
|
||||
"default": [],
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"image": {
|
||||
"type": "string"
|
||||
},
|
||||
"draft": {
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
},
|
||||
"$schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"title",
|
||||
"description",
|
||||
"pubDate"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue