Files
blog/.astro/collections/career.schema.json
도로롱 1dd9b7974c 03
2025-11-24 12:22:35 +09:00

66 lines
1.4 KiB
JSON

{
"$ref": "#/definitions/career",
"definitions": {
"career": {
"type": "object",
"properties": {
"company": {
"type": "string"
},
"role": {
"type": "string"
},
"dateStart": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "string",
"format": "date"
},
{
"type": "integer",
"format": "unix-time"
}
]
},
"dateEnd": {
"anyOf": [
{
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "string",
"format": "date"
},
{
"type": "integer",
"format": "unix-time"
}
]
},
{
"type": "string"
}
]
},
"$schema": {
"type": "string"
}
},
"required": [
"company",
"role",
"dateStart",
"dateEnd"
],
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}