You've already forked HR-atlase-vertesana
Import UAPF package
Import UAPF package: HR-atlase-vertesana-ProcessGit-v0.1.1.uapf
This commit is contained in:
47
schemas/candidate-evaluation-input.schema.json
Normal file
47
schemas/candidate-evaluation-input.schema.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
82
schemas/candidate-profile-output.schema.json
Normal file
82
schemas/candidate-profile-output.schema.json
Normal file
@@ -0,0 +1,82 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "https://processgit.org/schemas/openhr/candidate-profile-output.schema.json",
|
||||
"title": "Candidate multidimensional profile",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"algorithm",
|
||||
"professionalProfile",
|
||||
"skillsProfile",
|
||||
"behaviouralProfile",
|
||||
"riskProfile",
|
||||
"recommendation",
|
||||
"confidence"
|
||||
],
|
||||
"properties": {
|
||||
"algorithm": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"id",
|
||||
"version"
|
||||
],
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"version": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"professionalProfile": {
|
||||
"type": "object"
|
||||
},
|
||||
"skillsProfile": {
|
||||
"type": "object"
|
||||
},
|
||||
"behaviouralProfile": {
|
||||
"type": "object"
|
||||
},
|
||||
"riskProfile": {
|
||||
"type": "object"
|
||||
},
|
||||
"recommendation": {
|
||||
"enum": [
|
||||
"NORMAL_REVIEW",
|
||||
"ENHANCED_REVIEW",
|
||||
"REQUEST_INFORMATION",
|
||||
"MANUAL_ONLY"
|
||||
]
|
||||
},
|
||||
"confidence": {
|
||||
"type": "number",
|
||||
"minimum": 0,
|
||||
"maximum": 1
|
||||
},
|
||||
"reasons": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"requiredHumanChecks": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"limitations": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"evidenceReferences": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
},
|
||||
"additionalProperties": true
|
||||
}
|
||||
37
schemas/vacancy-profile.schema.json
Normal file
37
schemas/vacancy-profile.schema.json
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user