mirror of https://github.com/eyhc1/rendercv.git
docs: update schema.json
This commit is contained in:
parent
e6153627df
commit
8a0fe5fbdf
43
schema.json
43
schema.json
|
@ -565,9 +565,9 @@
|
|||
"vertical_between_bullet_points": "0.10 cm"
|
||||
},
|
||||
"header": {
|
||||
"bottom": "0.3 cm",
|
||||
"horizontal_between_connections": "0.5 cm",
|
||||
"vertical_between_name_and_connections": "0.3 cm"
|
||||
"bottom": "5 pt",
|
||||
"horizontal_between_connections": "10 pt",
|
||||
"vertical_between_name_and_connections": "5 pt"
|
||||
}
|
||||
},
|
||||
"description": "Page, section title, entry field, and highlights field margins.",
|
||||
|
@ -830,6 +830,35 @@
|
|||
"type": "object",
|
||||
"additionalProperties": false
|
||||
},
|
||||
"HeaderMarginsForEngineeringresumes": {
|
||||
"description": "This class is a data model for the header margins.",
|
||||
"properties": {
|
||||
"vertical_between_name_and_connections": {
|
||||
"default": "5 pt",
|
||||
"description": "The vertical margin between the name of the person and the connections. The default value is 5 pt.",
|
||||
"pattern": "\\d+\\.?\\d* *(cm|in|pt|mm|ex|em)",
|
||||
"title": "Vertical Margin Between the Name and Connections",
|
||||
"type": "string"
|
||||
},
|
||||
"bottom": {
|
||||
"default": "5 pt",
|
||||
"description": "The bottom margin of the header, i.e., the vertical margin between the connections and the first section title. The default value is 5 pt.",
|
||||
"pattern": "\\d+\\.?\\d* *(cm|in|pt|mm|ex|em)",
|
||||
"title": "Bottom Margin",
|
||||
"type": "string"
|
||||
},
|
||||
"horizontal_between_connections": {
|
||||
"default": "10 pt",
|
||||
"description": "The space between the connections (like phone, email, and website). The default value is 20 pt.",
|
||||
"pattern": "\\d+\\.?\\d* *(cm|in|pt|mm|ex|em)",
|
||||
"title": "Space Between Connections",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"title": "HeaderMarginsForEngineeringresumes",
|
||||
"type": "object",
|
||||
"additionalProperties": false
|
||||
},
|
||||
"HighlightsAreaMargins": {
|
||||
"description": "This class is a data model for the highlights area margins.",
|
||||
"properties": {
|
||||
|
@ -1029,13 +1058,13 @@
|
|||
"header": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/$defs/HeaderMargins"
|
||||
"$ref": "#/$defs/HeaderMarginsForEngineeringresumes"
|
||||
}
|
||||
],
|
||||
"default": {
|
||||
"vertical_between_name_and_connections": "0.3 cm",
|
||||
"bottom": "0.3 cm",
|
||||
"horizontal_between_connections": "0.5 cm"
|
||||
"vertical_between_name_and_connections": "5 pt",
|
||||
"bottom": "5 pt",
|
||||
"horizontal_between_connections": "10 pt"
|
||||
},
|
||||
"description": "Header margins.",
|
||||
"title": "Header Margins"
|
||||
|
|
Loading…
Reference in New Issue