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,47 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://processgit.org/schemas/openhr/candidate-evaluation-input.schema.json",
"title": "Candidate evaluation input",
"type": "object",
"required": [
"vacancy",
"candidate",
"application"
],
"properties": {
"vacancy": {
"type": "object"
},
"candidate": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string"
},
"displayName": {
"type": "string"
}
}
},
"application": {
"type": "object",
"properties": {
"cvText": {
"type": "string"
},
"questionnaire": {
"type": "object"
},
"consentConfirmed": {
"type": "boolean"
}
}
},
"reviewerContext": {
"type": "object"
}
}
}