feat(foundry): add composable subject detail profiles

This commit is contained in:
Codex
2026-07-22 19:06:33 +03:00
parent dd2febe7cf
commit dc82ae4c07
21 changed files with 1007 additions and 140 deletions
@@ -80,7 +80,27 @@
"properties": {
"id": { "type": "string", "minLength": 1 },
"displayName": { "type": "string", "minLength": 1, "maxLength": 120 },
"order": { "type": "integer", "minimum": 0, "maximum": 10000 }
"order": { "type": "integer", "minimum": 0, "maximum": 10000 },
"aspectId": { "type": "string", "minLength": 1, "maxLength": 160 },
"joinToBindingId": { "type": "string", "minLength": 1, "maxLength": 128 },
"subjectDetailProfileId": { "type": "string", "minLength": 1, "maxLength": 160 }
}
}
},
"subjectDetailProfiles": {
"type": "array",
"maxItems": 32,
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "version", "title", "semanticTypes", "defaultTabId", "tabs"],
"properties": {
"id": { "type": "string", "minLength": 1 },
"version": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+$" },
"title": { "type": "string", "minLength": 1, "maxLength": 120 },
"semanticTypes": { "type": "array", "minItems": 1, "maxItems": 8, "uniqueItems": true, "items": { "type": "string" } },
"defaultTabId": { "type": "string", "minLength": 1 },
"tabs": { "type": "array", "minItems": 1, "maxItems": 12, "items": { "type": "object" } }
}
}
},