MCP Server
Active
1
0

Import UAPF package: HR-atlase-vertesana-ProcessGit-v0.1.1.uapf

This commit is contained in:
2026-07-24 09:05:23 +00:00
parent 26a5827223
commit 69a09fac8c
19 changed files with 969 additions and 0 deletions

View File

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