Référence d’entité/de table Chatbot (bot)
Notes
Vous n’êtes pas sûr de la table par rapport à l’entité ? Voir Développeurs : Comprendre la terminologie dans Microsoft Dataverse.
Represents a Power Virtual Agents Chatbot. https://powerva.microsoft.com/
Ajouté par : solution Power Virtual Agents
Messages
Message | Opération de l'API web | Classe ou méthode SDK |
---|---|---|
Assign | PATCH [org URI]/api/data/v9.0/bots(botid) Mettre à jour la propriété ownerid . |
AssignRequest |
Create | POST [org URI]/api/data/v9.0/bots Voir Créer |
CreateRequest ou Create |
CreateMultiple | CreateMultiple Action | CreateMultipleRequest |
Delete | DELETE [org URI]/api/data/v9.0/bots(botid) Voir Supprimer |
DeleteRequest ou Delete |
GrantAccess | GrantAccess Action | GrantAccessRequest |
IsValidStateTransition | IsValidStateTransition Function | IsValidStateTransitionRequest |
ModifyAccess | ModifyAccess Action | ModifyAccessRequest |
PvaAuthorize | PvaAuthorize Action | Type généré par CrmSvcUtil.exe ou utilisez OrganizationRequest en définissant les paramètres requis pour le message. |
PvaCreateBotComponents | PvaCreateBotComponents Action | Type généré par CrmSvcUtil.exe ou utilisez OrganizationRequest en définissant les paramètres requis pour le message. |
PvaCreateContentSnapshot | PvaCreateContentSnapshot Action | Type généré par CrmSvcUtil.exe ou utilisez OrganizationRequest en définissant les paramètres requis pour le message. |
PvaDeleteBot | PvaDeleteBot Action | Type généré par CrmSvcUtil.exe ou utilisez OrganizationRequest en définissant les paramètres requis pour le message. |
PvaGetDirectLineEndpoint | PvaGetDirectLineEndpoint Action | Type généré par CrmSvcUtil.exe ou utilisez OrganizationRequest en définissant les paramètres requis pour le message. |
PvaProvision | PvaProvision Action | Type généré par CrmSvcUtil.exe ou utilisez OrganizationRequest en définissant les paramètres requis pour le message. |
PvaPublish | PvaPublish Action | Type généré par CrmSvcUtil.exe ou utilisez OrganizationRequest en définissant les paramètres requis pour le message. |
PvaPublishStatus | PvaPublishStatus Action | Type généré par CrmSvcUtil.exe ou utilisez OrganizationRequest en définissant les paramètres requis pour le message. |
Retrieve | GET [org URI]/api/data/v9.0/bots(botid) Voir Récupérer |
RetrieveRequest ou Retrieve |
RetrieveMultiple | GET [org URI]/api/data/v9.0/bots Voir Rechercher des données |
RetrieveMultipleRequest ou RetrieveMultiple |
RetrievePrincipalAccess | RetrievePrincipalAccess Function | RetrievePrincipalAccessRequest |
RetrieveSharedPrincipalsAndAccess | RetrieveSharedPrincipalsAndAccess Function | RetrieveSharedPrincipalsAndAccessRequest |
RevokeAccess | RevokeAccess Action | RevokeAccessRequest |
SetState | PATCH [org URI]/api/data/v9.0/bots(botid) Mettre à jour les propriétés statecode et statuscode . |
SetStateRequest |
Update | PATCH [org URI]/api/data/v9.0/bots(botid) Voir Mettre à jour |
UpdateRequest ou Update |
UpdateMultiple | UpdateMultiple Action | UpdateMultipleRequest |
Propriétés
Propriété | Valeur |
---|---|
CollectionSchemaName | bots |
DisplayCollectionName | Chatbots |
DisplayName | Chatbot |
EntitySetName | bots |
IsBPFEntity | False |
LogicalCollectionName | bots |
LogicalName | bot |
OwnershipType | UserOwned |
PrimaryIdAttribute | botid |
PrimaryNameAttribute | name |
SchemaName | bot |
Colonnes/Attributs inscriptibles
Ces colonnes/attributs renvoient la valeur true pour IsValidForCreate ou IsValidForUpdate (généralement les deux). Répertorié par SchemaName.
- accesscontrolpolicy
- applicationmanifestinformation
- authenticationconfiguration
- authenticationmode
- authenticationtrigger
- authorizedsecuritygroupids
- botId
- Configuration
- iconbase64
- ImportSequenceNumber
- IsCustomizable
- Language
- name
- OverriddenCreatedOn
- OwnerId
- OwnerIdType
- ProviderConnectionReferenceId
- publishedby
- publishedon
- RuntimeProvider
- SchemaName
- statecode
- statuscode
- SupportedLanguages
- SynchronizationStatus
- Template
- TimeZoneRuleVersionNumber
- UTCConversionTimeZoneCode
accesscontrolpolicy
Propriété | Valeur |
---|---|
Description | Defines which users may interact with the bot. |
DisplayName | Access Control Policy |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | accesscontrolpolicy |
RequiredLevel | ApplicationRequired |
Type | Picklist |
Choix/Options accesscontrolpolicy
Valeur | Étiquette | Description |
---|---|---|
0 | Any | Any signed in user is allowed to interact with the bot. |
1 | Chatbot readers | Authentication mode must be Integrated or Custom Azure Active Directory. User must have at least Read access to the Chatbot record. |
2 | Group membership | Authentication mode must be Integrated or Custom Azure Active Directory. To interact with the bot, users must be member of one of the security groups configured in the Authorized Security Groups field OR have Read access to the Chatbot. |
applicationmanifestinformation
Propriété | Valeur |
---|---|
Description | Stores information with application manifest data such as Teams application information. |
DisplayName | Application Manifest Information |
Format | Text |
IsLocalizable | False |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | applicationmanifestinformation |
MaxLength | 1048576 |
RequiredLevel | None |
Type | Memo |
authenticationconfiguration
Propriété | Valeur |
---|---|
Description | Stores information for the authentication configuration. |
DisplayName | Authentication Configuration Information |
Format | Text |
IsLocalizable | False |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | authenticationconfiguration |
MaxLength | 1048576 |
RequiredLevel | None |
Type | Memo |
authenticationmode
Propriété | Valeur |
---|---|
Description | Defines how the bot should be authenticated to the user. |
DisplayName | Authentication Mode |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | authenticationmode |
RequiredLevel | ApplicationRequired |
Type | Picklist |
Choix/Options authenticationmode
Valeur | Étiquette | Description |
---|---|---|
0 | Unspecified | Chatbot was created before the introduction of this field. The mode is either 'None' if no authentication was configured, or 'Generic OAuth2' if the bot had an authentication node. |
1 | None | The chatbot does not require authentication. |
2 | Integrated | Authentication uses integrated Azure AD configuration. Supports security group access control. The bot has access to the UserId and UserDisplayName variables and will be able to invoke Flows on behalf of the end user. No additional configuration required. |
3 | Custom Azure Active Directory | Provide a custom Azure AD application. Supports security group access control. The bot has access to the IsLoggedIn, AuthToken, UserId and UserDisplayName variables and will be able to invoke Flows on behalf of the user. Skills can leverage the auth token |
4 | Generic OAuth2 | A custom OAuth provider is configured. The chatbot will have access to the IsLoggedIn and AuthToken variables. |
authenticationtrigger
Propriété | Valeur |
---|---|
Description | Defines at which point authentication for the bot should be triggered. Security can be enforced at the bot entry point, removing the need for explicit authentication nodes in the dialog flow. |
DisplayName | Authentication trigger |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | authenticationtrigger |
RequiredLevel | ApplicationRequired |
Type | Picklist |
Choix/Options authenticationtrigger
Valeur | Étiquette | Description |
---|---|---|
0 | As Needed | Sign in happens when the bot reaches an authentication node or when an action requires user authentication. |
1 | Always | Sign-in happens when the conversation starts and any time a token expires. |
authorizedsecuritygroupids
Propriété | Valeur |
---|---|
Description | Contains a comma-delimited list of up to 20 Azure Active Directory Group IDs that are allowed to interact with the bot. This field is ignored if Access Control Policy is not set to Group membership. |
DisplayName | Authorized Security Groups |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | authorizedsecuritygroupids |
MaxLength | 739 |
RequiredLevel | None |
Type | String |
botId
Propriété | Valeur |
---|---|
Description | Unique identifier of the Chatbot. |
DisplayName | Bot |
IsValidForForm | False |
IsValidForRead | True |
IsValidForUpdate | False |
LogicalName | botid |
RequiredLevel | SystemRequired |
Type | Uniqueidentifier |
Configuration
Propriété | Valeur |
---|---|
Description | Used to store content of bot configuration data. |
DisplayName | Configuration |
Format | Text |
IsLocalizable | False |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | configuration |
MaxLength | 1048576 |
RequiredLevel | None |
Type | Memo |
iconbase64
Propriété | Valeur |
---|---|
Description | Used to visually identify your bot in channels and services. Represented in a base64 encoded string. Must be in PNG format, and no larger than 30K in size. This value can be changed at any time. |
DisplayName | Icon (Base64) |
Format | Text |
IsLocalizable | False |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | iconbase64 |
MaxLength | 51200 |
RequiredLevel | None |
Type | Memo |
ImportSequenceNumber
Ajouté par : solution Basic Solution
Propriété | Valeur |
---|---|
Description | Sequence number of the import that created this record. |
DisplayName | Import Sequence Number |
Format | None |
IsValidForForm | False |
IsValidForRead | True |
IsValidForUpdate | False |
LogicalName | importsequencenumber |
MaxValue | 2147483647 |
MinValue | -2147483648 |
RequiredLevel | None |
Type | Integer |
IsCustomizable
Ajouté par : solution Basic Solution
Propriété | Valeur |
---|---|
Description | For internal use only. |
DisplayName | Is Customizable |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | iscustomizable |
RequiredLevel | SystemRequired |
Type | ManagedProperty |
Language
Propriété | Valeur |
---|---|
Description | The language identifier (LCID) of this Chatbot. |
DisplayName | Language |
IsValidForForm | True |
IsValidForRead | True |
IsValidForUpdate | False |
LogicalName | language |
RequiredLevel | ApplicationRequired |
Type | Picklist |
Choix/Options Language
Valeur | Étiquette | Description |
---|---|---|
1025 | Arabic | |
1028 | Chinese (Traditional) | |
1029 | Czech | |
1030 | Danish | |
1031 | German | |
1032 | Greek | |
1033 | English | |
1034 | Spanish | |
1035 | Finnish | |
1036 | French | |
1040 | Italian | |
1041 | Japanese | |
1042 | Korean | |
1043 | Dutch | |
1044 | Norwegian | |
1045 | Polish | |
1046 | Portuguese (Brazilian) | |
1049 | Russian | |
1053 | Swedish | |
1054 | Thai | |
1055 | Turkish | |
1057 | Indonesian | |
1081 | Hindi | |
2052 | Chinese (Simplified) | |
2057 | English (United Kingdom) | |
3084 | French (Canada) | |
21514 | Spanish (United States) |
name
Propriété | Valeur |
---|---|
Description | The display name of the Chatbot. |
DisplayName | Name |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | name |
MaxLength | 100 |
RequiredLevel | None |
Type | String |
OverriddenCreatedOn
Propriété | Valeur |
---|---|
DateTimeBehavior | UserLocal |
Description | Date and time that the record was migrated. |
DisplayName | Record Created On |
Format | DateOnly |
IsValidForForm | False |
IsValidForRead | True |
IsValidForUpdate | False |
LogicalName | overriddencreatedon |
RequiredLevel | None |
Type | DateTime |
OwnerId
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Owner Id |
DisplayName | Owner |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | ownerid |
RequiredLevel | SystemRequired |
Targets | systemuser,team |
Type | Owner |
OwnerIdType
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Owner Id Type |
DisplayName | |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | owneridtype |
RequiredLevel | SystemRequired |
Type | EntityName |
ProviderConnectionReferenceId
Propriété | Valeur |
---|---|
Description | Unique identifier for Connection Reference associated with Chatbot. |
DisplayName | Provider connection reference |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | providerconnectionreferenceid |
RequiredLevel | None |
Targets | connectionreference |
Type | Lookup |
publishedby
Propriété | Valeur |
---|---|
Description | Unique identifier of the user who last published the bot. |
DisplayName | Published By |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | publishedby |
RequiredLevel | None |
Targets | systemuser |
Type | Lookup |
publishedon
Propriété | Valeur |
---|---|
DateTimeBehavior | UserLocal |
Description | Date and time when the Chatbot was last published |
DisplayName | Published On |
Format | DateAndTime |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | publishedon |
RequiredLevel | None |
Type | DateTime |
RuntimeProvider
Propriété | Valeur |
---|---|
Description | |
DisplayName | Runtime provider |
IsValidForForm | True |
IsValidForRead | True |
IsValidForUpdate | False |
LogicalName | runtimeprovider |
RequiredLevel | ApplicationRequired |
Type | Picklist |
Choix/Options RuntimeProvider
Valeur | Étiquette | Description |
---|---|---|
0 | Power Virtual Agents | |
1 | Nuance Mix Shell |
SchemaName
Propriété | Valeur |
---|---|
Description | Unique name identifying the Chatbot. |
DisplayName | SchemaName |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | True |
IsValidForRead | True |
IsValidForUpdate | False |
LogicalName | schemaname |
MaxLength | 100 |
RequiredLevel | SystemRequired |
Type | String |
statecode
Propriété | Valeur |
---|---|
Description | Status of the Chatbot |
DisplayName | Status |
IsValidForCreate | False |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | statecode |
RequiredLevel | SystemRequired |
Type | State |
Choix/Options statecode
Valeur | Étiquette | Statut par défaut | Nom invariant |
---|---|---|---|
0 | Active | 1 | Active |
1 | Inactive | 2 | Inactive |
statuscode
Propriété | Valeur |
---|---|
Description | Reason for the status of the Chatbot |
DisplayName | Status Reason |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | statuscode |
RequiredLevel | None |
Type | Status |
Choix/Options statuscode
Valeur | Étiquette | État |
---|---|---|
1 | Provisioned | 0 |
2 | Deprovisioned | 1 |
3 | Provisioning | 1 |
4 | ProvisionFailed | 1 |
5 | MissingLicense | 1 |
SupportedLanguages
Propriété | Valeur |
---|---|
Description | The list of supported languages by this bot |
DisplayName | Supported languages |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | supportedlanguages |
RequiredLevel | None |
Type | MultiSelectPicklist |
Choix/Options SupportedLanguages
Valeur | Étiquette | Description |
---|---|---|
1025 | Arabic | |
1028 | Chinese (Traditional) | |
1029 | Czech | |
1030 | Danish | |
1031 | German | |
1032 | Greek | |
1033 | English | |
1034 | Spanish | |
1035 | Finnish | |
1036 | French | |
1040 | Italian | |
1041 | Japanese | |
1042 | Korean | |
1043 | Dutch | |
1044 | Norwegian | |
1045 | Polish | |
1046 | Portuguese (Brazilian) | |
1049 | Russian | |
1053 | Swedish | |
1054 | Thai | |
1055 | Turkish | |
1057 | Indonesian | |
1081 | Hindi | |
2052 | Chinese (Simplified) | |
2057 | English (United Kingdom) | |
3084 | French (Canada) | |
21514 | Spanish (United States) |
SynchronizationStatus
Propriété | Valeur |
---|---|
Description | Used to store information about the synchronization operations of the bot |
DisplayName | SynchronizationStatus |
Format | Text |
IsLocalizable | False |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | synchronizationstatus |
MaxLength | 1048576 |
RequiredLevel | None |
Type | Memo |
Template
Propriété | Valeur |
---|---|
Description | Used to identify the template and version used for the bot default content |
DisplayName | Template |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | template |
MaxLength | 100 |
RequiredLevel | None |
Type | String |
TimeZoneRuleVersionNumber
Propriété | Valeur |
---|---|
Description | For internal use only. |
DisplayName | Time Zone Rule Version Number |
Format | None |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | timezoneruleversionnumber |
MaxValue | 2147483647 |
MinValue | -1 |
RequiredLevel | None |
Type | Integer |
UTCConversionTimeZoneCode
Propriété | Valeur |
---|---|
Description | Time zone code that was in use when the record was created. |
DisplayName | UTC Conversion Time Zone Code |
Format | None |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | utcconversiontimezonecode |
MaxValue | 2147483647 |
MinValue | -1 |
RequiredLevel | None |
Type | Integer |
Colonnes/Attributs en lecture seule
Ces colonnes/attributs renvoient la valeur false pour IsValidForCreate ou IsValidForUpdate. Répertorié par SchemaName.
- ComponentIdUnique
- ComponentState
- CreatedBy
- CreatedByName
- CreatedByYomiName
- CreatedOn
- CreatedOnBehalfBy
- CreatedOnBehalfByName
- CreatedOnBehalfByYomiName
- IsManaged
- ModifiedBy
- ModifiedByName
- ModifiedByYomiName
- ModifiedOn
- ModifiedOnBehalfBy
- ModifiedOnBehalfByName
- ModifiedOnBehalfByYomiName
- OverwriteTime
- OwnerIdName
- OwnerIdYomiName
- OwningBusinessUnit
- OwningBusinessUnitName
- OwningTeam
- OwningUser
- ProviderConnectionReferenceIdName
- publishedbyName
- publishedbyYomiName
- SolutionId
- SupportingSolutionId
- VersionNumber
ComponentIdUnique
Ajouté par : solution Basic Solution
Propriété | Valeur |
---|---|
Description | For internal use only. |
DisplayName | Row id unique |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | componentidunique |
RequiredLevel | SystemRequired |
Type | Uniqueidentifier |
ComponentState
Ajouté par : solution Basic Solution
Propriété | Valeur |
---|---|
Description | For internal use only. |
DisplayName | Component State |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | componentstate |
RequiredLevel | SystemRequired |
Type | Picklist |
Choix/Options ComponentState
Valeur | Étiquette | Description |
---|---|---|
0 | Published | |
1 | Unpublished | |
2 | Deleted | |
3 | Deleted Unpublished |
CreatedBy
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Unique identifier of the user who created the record. |
DisplayName | Created By |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | createdby |
RequiredLevel | None |
Targets | systemuser |
Type | Lookup |
CreatedByName
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | createdbyname |
MaxLength | 100 |
RequiredLevel | None |
Type | String |
CreatedByYomiName
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | createdbyyominame |
MaxLength | 100 |
RequiredLevel | SystemRequired |
Type | String |
CreatedOn
Propriété | Valeur |
---|---|
DateTimeBehavior | UserLocal |
Description | Date and time when the record was created. |
DisplayName | Created On |
Format | DateAndTime |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | createdon |
RequiredLevel | None |
Type | DateTime |
CreatedOnBehalfBy
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Unique identifier of the delegate user who created the record. |
DisplayName | Created By (Delegate) |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | createdonbehalfby |
RequiredLevel | None |
Targets | systemuser |
Type | Lookup |
CreatedOnBehalfByName
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | createdonbehalfbyname |
MaxLength | 100 |
RequiredLevel | None |
Type | String |
CreatedOnBehalfByYomiName
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | createdonbehalfbyyominame |
MaxLength | 100 |
RequiredLevel | SystemRequired |
Type | String |
IsManaged
Ajouté par : solution Basic Solution
Propriété | Valeur |
---|---|
Description | Indicates whether the solution component is part of a managed solution. |
DisplayName | Is Managed |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | ismanaged |
RequiredLevel | SystemRequired |
Type | Boolean |
Choix/Options IsManaged
Valeur | Étiquette | Description |
---|---|---|
1 | Managed | |
0 | Unmanaged |
Valeur par défaut : 0
ModifiedBy
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Unique identifier of the user who modified the record. |
DisplayName | Modified By |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | modifiedby |
RequiredLevel | None |
Targets | systemuser |
Type | Lookup |
ModifiedByName
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | modifiedbyname |
MaxLength | 100 |
RequiredLevel | None |
Type | String |
ModifiedByYomiName
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | modifiedbyyominame |
MaxLength | 100 |
RequiredLevel | SystemRequired |
Type | String |
ModifiedOn
Propriété | Valeur |
---|---|
DateTimeBehavior | UserLocal |
Description | Date and time when the record was modified. |
DisplayName | Modified On |
Format | DateAndTime |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | modifiedon |
RequiredLevel | None |
Type | DateTime |
ModifiedOnBehalfBy
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Unique identifier of the delegate user who modified the record. |
DisplayName | Modified By (Delegate) |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | modifiedonbehalfby |
RequiredLevel | None |
Targets | systemuser |
Type | Lookup |
ModifiedOnBehalfByName
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | modifiedonbehalfbyname |
MaxLength | 100 |
RequiredLevel | None |
Type | String |
ModifiedOnBehalfByYomiName
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | modifiedonbehalfbyyominame |
MaxLength | 100 |
RequiredLevel | SystemRequired |
Type | String |
OverwriteTime
Ajouté par : solution Basic Solution
Propriété | Valeur |
---|---|
DateTimeBehavior | UserLocal |
Description | For internal use only. |
DisplayName | Record Overwrite Time |
Format | DateAndTime |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | overwritetime |
RequiredLevel | SystemRequired |
Type | DateTime |
OwnerIdName
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Name of the owner |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | owneridname |
MaxLength | 100 |
RequiredLevel | SystemRequired |
Type | String |
OwnerIdYomiName
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Yomi name of the owner |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | owneridyominame |
MaxLength | 100 |
RequiredLevel | SystemRequired |
Type | String |
OwningBusinessUnit
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Unique identifier for the business unit that owns the record |
DisplayName | Owning Business Unit |
IsValidForForm | True |
IsValidForRead | True |
LogicalName | owningbusinessunit |
RequiredLevel | None |
Targets | businessunit |
Type | Lookup |
OwningBusinessUnitName
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | owningbusinessunitname |
MaxLength | 100 |
RequiredLevel | SystemRequired |
Type | String |
OwningTeam
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Unique identifier for the team that owns the record. |
DisplayName | Owning Team |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | owningteam |
RequiredLevel | None |
Targets | team |
Type | Lookup |
OwningUser
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Unique identifier for the user that owns the record. |
DisplayName | Owning User |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | owninguser |
RequiredLevel | None |
Targets | systemuser |
Type | Lookup |
ProviderConnectionReferenceIdName
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | providerconnectionreferenceidname |
MaxLength | 200 |
RequiredLevel | None |
Type | String |
publishedbyName
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | publishedbyname |
MaxLength | 200 |
RequiredLevel | None |
Type | String |
publishedbyYomiName
Propriété | Valeur |
---|---|
Description | |
DisplayName | |
FormatName | Text |
IsLocalizable | False |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | publishedbyyominame |
MaxLength | 200 |
RequiredLevel | None |
Type | String |
SolutionId
Ajouté par : solution Basic Solution
Propriété | Valeur |
---|---|
Description | Unique identifier of the associated solution. |
DisplayName | Solution |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | solutionid |
RequiredLevel | SystemRequired |
Type | Uniqueidentifier |
SupportingSolutionId
Ajouté par : solution Basic Solution
Propriété | Valeur |
---|---|
Description | For internal use only. |
DisplayName | Solution |
IsValidForForm | False |
IsValidForRead | False |
LogicalName | supportingsolutionid |
RequiredLevel | None |
Type | Uniqueidentifier |
VersionNumber
Ajouté par : solution Active Solution
Propriété | Valeur |
---|---|
Description | Version Number |
DisplayName | Version Number |
IsValidForForm | False |
IsValidForRead | True |
LogicalName | versionnumber |
MaxValue | 9223372036854775807 |
MinValue | -9223372036854775808 |
RequiredLevel | None |
Type | BigInt |
Relations un-à-plusieurs
Répertorié par SchemaName.
- bot_SyncErrors
- bot_AsyncOperations
- bot_MailboxTrackingFolders
- bot_ProcessSession
- bot_BulkDeleteFailures
- bot_PrincipalObjectAttributeAccesses
- botcomponent_parent_bot
- bot_conversationtranscript
bot_SyncErrors
Ajouté par : solution System Solution
Identique à la relation plusieurs à un bot_SyncErrors pour la table/entité syncerror.
Propriété | Valeur |
---|---|
ReferencingEntity | syncerror |
ReferencingAttribute | regardingobjectid |
IsHierarchical | False |
IsCustomizable | True |
ReferencedEntityNavigationPropertyName | bot_SyncErrors |
AssociatedMenuConfiguration | Behavior: DoNotDisplay Group: Details Label: Order: |
CascadeConfiguration | Assign: NoCascade Delete: Cascade Merge: NoCascade Reparent: NoCascade Share: NoCascade Unshare: NoCascade |
bot_AsyncOperations
Ajouté par : solution System Solution
Identique à la relation plusieurs à un bot_AsyncOperations pour la table/entité asyncoperation.
Propriété | Valeur |
---|---|
ReferencingEntity | asyncoperation |
ReferencingAttribute | regardingobjectid |
IsHierarchical | False |
IsCustomizable | True |
ReferencedEntityNavigationPropertyName | bot_AsyncOperations |
AssociatedMenuConfiguration | Behavior: DoNotDisplay Group: Details Label: Order: |
CascadeConfiguration | Assign: NoCascade Delete: NoCascade Merge: NoCascade Reparent: NoCascade Share: NoCascade Unshare: NoCascade |
bot_MailboxTrackingFolders
Ajouté par : solution System Solution
Identique à la relation plusieurs à un bot_MailboxTrackingFolders pour la table/entité mailboxtrackingfolder.
Propriété | Valeur |
---|---|
ReferencingEntity | mailboxtrackingfolder |
ReferencingAttribute | regardingobjectid |
IsHierarchical | False |
IsCustomizable | True |
ReferencedEntityNavigationPropertyName | bot_MailboxTrackingFolders |
AssociatedMenuConfiguration | Behavior: DoNotDisplay Group: Details Label: Order: |
CascadeConfiguration | Assign: NoCascade Delete: Cascade Merge: NoCascade Reparent: NoCascade Share: NoCascade Unshare: NoCascade |
bot_ProcessSession
Ajouté par : solution System Solution
Identique à la relation plusieurs à un bot_ProcessSession pour la table/entité processsession.
Propriété | Valeur |
---|---|
ReferencingEntity | processsession |
ReferencingAttribute | regardingobjectid |
IsHierarchical | False |
IsCustomizable | True |
ReferencedEntityNavigationPropertyName | bot_ProcessSession |
AssociatedMenuConfiguration | Behavior: DoNotDisplay Group: Details Label: Order: |
CascadeConfiguration | Assign: NoCascade Delete: NoCascade Merge: NoCascade Reparent: NoCascade Share: NoCascade Unshare: NoCascade |
bot_BulkDeleteFailures
Ajouté par : solution System Solution
Identique à la relation plusieurs à un bot_BulkDeleteFailures pour la table/entité bulkdeletefailure.
Propriété | Valeur |
---|---|
ReferencingEntity | bulkdeletefailure |
ReferencingAttribute | regardingobjectid |
IsHierarchical | False |
IsCustomizable | True |
ReferencedEntityNavigationPropertyName | bot_BulkDeleteFailures |
AssociatedMenuConfiguration | Behavior: DoNotDisplay Group: Details Label: Order: |
CascadeConfiguration | Assign: NoCascade Delete: Cascade Merge: NoCascade Reparent: NoCascade Share: NoCascade Unshare: NoCascade |
bot_PrincipalObjectAttributeAccesses
Ajouté par : solution System Solution
Identique à la relation plusieurs à un bot_PrincipalObjectAttributeAccesses pour la table/entité principalobjectattributeaccess.
Propriété | Valeur |
---|---|
ReferencingEntity | principalobjectattributeaccess |
ReferencingAttribute | objectid |
IsHierarchical | False |
IsCustomizable | True |
ReferencedEntityNavigationPropertyName | bot_PrincipalObjectAttributeAccesses |
AssociatedMenuConfiguration | Behavior: DoNotDisplay Group: Details Label: Order: |
CascadeConfiguration | Assign: NoCascade Delete: Cascade Merge: NoCascade Reparent: NoCascade Share: NoCascade Unshare: NoCascade |
botcomponent_parent_bot
Identique à la relation plusieurs à un botcomponent_parent_bot pour la table/entité botcomponent.
Propriété | Valeur |
---|---|
ReferencingEntity | botcomponent |
ReferencingAttribute | parentbotid |
IsHierarchical | False |
IsCustomizable | False |
ReferencedEntityNavigationPropertyName | botcomponent_parent_bot |
AssociatedMenuConfiguration | Behavior: UseCollectionName Group: Details Label: Order: 10000 |
CascadeConfiguration | Assign: NoCascade Delete: Restrict Merge: NoCascade Reparent: NoCascade Share: NoCascade Unshare: NoCascade |
bot_conversationtranscript
Identique à la relation plusieurs à un bot_conversationtranscript pour la table/entité conversationtranscript.
Propriété | Valeur |
---|---|
ReferencingEntity | conversationtranscript |
ReferencingAttribute | bot_conversationtranscriptid |
IsHierarchical | False |
IsCustomizable | False |
ReferencedEntityNavigationPropertyName | bot_conversationtranscript |
AssociatedMenuConfiguration | Behavior: UseCollectionName Group: Details Label: Order: 10000 |
CascadeConfiguration | Assign: Cascade Delete: RemoveLink Merge: NoCascade Reparent: Cascade Share: Cascade Unshare: Cascade |
Relations plusieurs-à-un
Chaque relation plusieurs-à-un est définie par une relation un-à-plusieurs correspondante avec la table associée. Répertorié par SchemaName.
- lk_bot_createdby
- lk_bot_createdonbehalfby
- lk_bot_modifiedby
- lk_bot_modifiedonbehalfby
- user_bot
- team_bot
- business_unit_bot
- bot_connectionreference
- systemuser_bot_publishedby
lk_bot_createdby
Ajouté par : solution System Solution
Voir la relation un à plusieurs lk_bot_createdby pour la table/entité systemuser.
lk_bot_createdonbehalfby
Ajouté par : solution System Solution
Voir la relation un à plusieurs lk_bot_createdonbehalfby pour la table/entité systemuser.
lk_bot_modifiedby
Ajouté par : solution System Solution
Voir la relation un à plusieurs lk_bot_modifiedby pour la table/entité systemuser.
lk_bot_modifiedonbehalfby
Ajouté par : solution System Solution
Voir la relation un à plusieurs lk_bot_modifiedonbehalfby pour la table/entité systemuser.
user_bot
Ajouté par : solution System Solution
Voir la relation un à plusieurs user_bot pour la table/entité systemuser.
team_bot
Ajouté par : solution System Solution
Voir la relation un à plusieurs team_bot pour la table/entité team.
business_unit_bot
Ajouté par : solution System Solution
Voir la relation un à plusieurs business_unit_bot pour la table/entité businessunit.
bot_connectionreference
Ajouté par : solution Power Platform Connection References
Voir la relation un à plusieurs bot_connectionreference pour la table/entité connectionreference.
systemuser_bot_publishedby
Ajouté par : solution System Solution
Voir la relation un à plusieurs systemuser_bot_publishedby pour la table/entité systemuser.
Relations plusieurs-à-plusieurs
Détails de la relation fournis où la table bot est la première table de la relation. Répertorié par SchemaName.
bot_botcomponent
IntersectEntityName: bot_botcomponent
Table 1
Propriété | Valeur |
---|---|
IntersectAttribute | botid |
IsCustomizable | False |
LogicalName | bot |
NavigationPropertyName | bot_botcomponent |
AssociatedMenuConfiguration | Behavior: UseCollectionName Group: Details Label: Order: 10000 |
Table 2
Propriété | Valeur |
---|---|
LogicalName | botcomponent |
IntersectAttribute | botcomponentid |
NavigationPropertyName | bot_botcomponent |
AssociatedMenuConfiguration | Behavior: UseCollectionName Group: Details Label: Order: 10000 |
bot_environmentvariabledefinition
IntersectEntityName: bot_environmentvariabledefinition
Table 1
Propriété | Valeur |
---|---|
IntersectAttribute | botid |
IsCustomizable | False |
LogicalName | bot |
NavigationPropertyName | bot_environmentvariabledefinition |
AssociatedMenuConfiguration | Behavior: UseCollectionName Group: Details Label: Order: 10000 |
Table 2
Propriété | Valeur |
---|---|
LogicalName | environmentvariabledefinition |
IntersectAttribute | environmentvariabledefinitionid |
NavigationPropertyName | bot_environmentvariabledefinition |
AssociatedMenuConfiguration | Behavior: UseCollectionName Group: Details Label: Order: 10000 |
bot_botcontentpack
IntersectEntityName: bot_botcontentpack
Table 1
Propriété | Valeur |
---|---|
IntersectAttribute | botid |
IsCustomizable | False |
LogicalName | bot |
NavigationPropertyName | bot_botcontentpack |
AssociatedMenuConfiguration | Behavior: DoNotDisplay Group: Details Label: Order: |
Table 2
Propriété | Valeur |
---|---|
LogicalName | botcontentpack |
IntersectAttribute | botcontentpackid |
NavigationPropertyName | bot_botcontentpack |
AssociatedMenuConfiguration | Behavior: DoNotDisplay Group: Details Label: Order: |
Voir aussi
Référence d’entité/de table Dataverse Référence d’API web bot EntityType