Three knowledge layers with promotion logic, platform-neutral canonical content with thin adapters, MCP gateway as the vendor bridge, two enrichment paths. Schemas encode the trust boundary (customer/project forbidden in layer 1). Neutrality audit: clean (D9). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PDKeXvpT6tENSvyQGLV1Uq
27 lines
805 B
JSON
27 lines
805 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://zeiterfassung.cloud/skillfactor/schemas/vocabulary.schema.json",
|
|
"title": "SkillFactor profession vocabulary",
|
|
"type": "object",
|
|
"required": ["profession", "terms"],
|
|
"properties": {
|
|
"profession": { "type": "string", "pattern": "^[a-z0-9-]+$" },
|
|
"source_pairs": { "type": "integer", "minimum": 0 },
|
|
"terms": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": ["term", "doc_freq"],
|
|
"properties": {
|
|
"term": { "type": "string", "minLength": 2 },
|
|
"doc_freq": { "type": "integer", "minimum": 1 }
|
|
}
|
|
}
|
|
},
|
|
"competence_terms": {
|
|
"type": "array", "items": { "type": "string" }
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|