You've already forked HR-atlase-vertesana
Import UAPF package
37 lines
767 B
JSON
37 lines
767 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://processgit.org/schemas/openhr/vacancy-profile.schema.json",
|
|
"title": "OpenHR vacancy profile",
|
|
"type": "object",
|
|
"required": [
|
|
"roleTitle",
|
|
"mandatoryRequirements",
|
|
"profileDimensions"
|
|
],
|
|
"properties": {
|
|
"roleTitle": {
|
|
"type": "string"
|
|
},
|
|
"mandatoryRequirements": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object"
|
|
}
|
|
},
|
|
"profileDimensions": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object"
|
|
}
|
|
},
|
|
"weights": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 1
|
|
}
|
|
}
|
|
},
|
|
"additionalProperties": true
|
|
} |