Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$id": "https://developer.microsoft.com/json-schemas/fabric/item/databricksStorage/definition/databricksStorageDefinition/1.0.0/schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "Databricks Storage Definition",
"properties": {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@
"title": "Source Type",
"description": "The type of the source catalog provider. Additional source types may be added over time.",
"enum": [
"DremioIcebergCatalog",
"AzureMonitorMirroredCatalog"
"DremioIcebergCatalog"
]
},
"SourceTypeProperties": {
Expand Down
2 changes: 1 addition & 1 deletion teams/v1.23/MicrosoftTeams.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2586,7 +2586,7 @@
"properties": {
"fileName": {
"type": "string",
"pattern": "^(?!.*[\\r\\n\\f\\b\\v\\a\\t])[\\S]*\\.xll$",
"pattern": "^(?!.*[\\r\\n\\f\\b\\v\\u0007\\t])[\\S]*\\.xll$",
"minLength": 1,
"maxLength": 64
}
Expand Down
2 changes: 1 addition & 1 deletion teams/v1.24/MicrosoftTeams.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2687,7 +2687,7 @@
"fileName": {
"type": "string",
"description": "File name for the XLL extension. Maximum length is 254 characters.",
"pattern": "^(?!.*[\\r\\n\\f\\b\\v\\a\\t])[\\S]*\\.xll$",
"pattern": "^(?!.*[\\r\\n\\f\\b\\v\\u0007\\t])[\\S]*\\.xll$",
"minLength": 4,
"maxLength": 254
}
Expand Down
2 changes: 1 addition & 1 deletion teams/v1.25/MicrosoftTeams.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2804,7 +2804,7 @@
"fileName": {
"type": "string",
"description": "File name for the XLL extension. Maximum length is 254 characters.",
"pattern": "^(?!.*[\\r\\n\\f\\b\\v\\a\\t])[\\S]*\\.xll$",
"pattern": "^(?!.*[\\r\\n\\f\\b\\v\\u0007\\t])[\\S]*\\.xll$",
"minLength": 4,
"maxLength": 254
}
Expand Down
15 changes: 13 additions & 2 deletions teams/v1.26/MicrosoftTeams.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1352,7 +1352,18 @@
}
},
"additionalProperties": false,
"anyOf": []
"oneOf": [
{
"required": [
"declarativeAgents"
]
},
{
"required": [
"customEngineAgents"
]
}
]
},
"agenticUserTemplates": {
"type": "array",
Expand Down Expand Up @@ -3011,7 +3022,7 @@
"fileName": {
"type": "string",
"description": "File name for the XLL extension. Maximum length is 254 characters.",
"pattern": "^(?!.*[\\r\\n\\f\\b\\v\\a\\t])[\\S]*\\.xll$",
"pattern": "^(?!.*[\\r\\n\\f\\b\\v\\u0007\\t])[\\S]*\\.xll$",
"minLength": 4,
"maxLength": 254
}
Expand Down
44 changes: 44 additions & 0 deletions teams/v1.27/MicrosoftTeams.AgenticUser.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"title": "Microsoft 365 Agentic User Template Schema",
"description": "Schema for Microsoft 365 Agentic User Template configuration - Development Preview version 0.1.0",
"required": [
"id",
"schemaVersion",
"agentIdentityBlueprintId"
],
"properties": {
"$schema": {
"type": "string",
"description": "The JSON schema reference for this manifest"
},
"id": {
"type": "string",
"description": "Unique identifier for the agentic user template. Must contain only alphanumeric characters, dots, underscores, and hyphens.",
"pattern": "^[a-zA-Z0-9._-]+$",
"minLength": 1,
"maxLength": 64
},
"schemaVersion": {
"type": "string",
"const": "0.1.0-preview",
"description": "Version of the agentic user template schema."
},
"agentIdentityBlueprintId": {
"type": "string",
"description": "Agent Identity Blueprint ID registered in Azure AD portal. Must be a valid GUID.",
"pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$",
"format": "uuid"
},
"communicationProtocol": {
"type": "string",
"description": "Protocol used for communicating with the agentic user.",
"enum": [
"activityProtocol"
],
"default": "activityProtocol"
}
},
"additionalProperties": false
}
Loading
Loading