Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions src/schemas/json/sigrid-scope-file.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,28 @@
"$ref": "#/definitions/architecture_group"
}
},
"architecture_component_role": {
"type": "object",
"properties": {
"role": {
"type": "string"
},
"include": {
"$ref": "#/definitions/file_pattern_list"
},
"exclude": {
"$ref": "#/definitions/file_pattern_list"
}
},
"required": ["role", "include"],
"additionalProperties": false
},
"architecture_component_role_list": {
"type": "array",
"items": {
"$ref": "#/definitions/architecture_component_role"
}
},
"architecture_patterns": {
"type": "array",
"items": {
Expand Down Expand Up @@ -435,6 +457,10 @@
"$ref": "#/definitions/architecture_group_list",
"description": "Annotate all top-level components matching the pattern, in order to divide them into logical groups."
},
"component_roles": {
"$ref": "#/definitions/architecture_component_role_list",
"description": "Attaches role labels to all matching components, describing their role in the architecture."
},
"history_enabled": {
"type": "boolean",
"description": "Deprecated. This option is obsolete."
Expand Down