This commit is contained in:
도로롱
2025-11-24 12:22:35 +09:00
parent b6134d4b8b
commit 1dd9b7974c
10 changed files with 12305 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
{
"$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#"
}