projectParticipation resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents detailed information about projects associated with a user.
Inherits from itemFacet.
Methods
Method | Return type | Description |
---|---|---|
List | projectParticipation collection | Get the projectParticipation resources from the projects navigation property. |
Create | projectParticipation | Create a new projectParticipation object. |
Get | projectParticipation | Read the properties and relationships of a projectParticipation object. |
Update | projectParticipation | Update the properties of a projectParticipation object. |
Delete | None | Deletes a projectParticipation object. |
Properties
Property | Type | Description |
---|---|---|
allowedAudiences | String | The audiences that are able to see the values contained within the entity. Inherited from itemFacet. Possible values are: me , family , contacts , groupMembers , organization , federatedOrganizations , everyone , unknownFutureValue . |
categories | String collection | Contains categories a user has associated with the project (for example, digital transformation, oil rig). |
client | companyDetail | Contains detailed information about the client the project was for. |
collaborationTags | String collection | Contains experience scenario tags a user has associated with the interest. Allowed values in the collection are: askMeAbout , ableToMentor , wantsToLearn , wantsToImprove . |
colleagues | relatedPerson collection | Lists people that also worked on the project. |
createdBy | identitySet | Provides the identifier of the user and/or application that created the entity. Inherited from itemFacet. |
createdDateTime | DateTimeOffset | Provides the dateTimeOffset for when the entity was created. Inherited from itemFacet. |
detail | positionDetail | Contains detail about the user's role on the project. |
displayName | String | Contains a friendly name for the project. |
id | String | Identifier used for individually addressing the entity. Inherited from entity |
inference | inferenceData | Contains inference detail if the entity is inferred by the creating or modifying application. Inherited from itemFacet. |
lastModifiedBy | identitySet | Provides the identifier of the user and/or application that last modified the entity. Inherited from itemFacet. |
lastModifiedDateTime | DateTimeOffset | Provides the dateTimeOffset for when the entity was created. Inherited from itemFacet. |
source | personDataSource | Where the values originated if synced from another service. Inherited from itemFacet. |
sponsors | relatedPerson collection | The Person or people who sponsored the project. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.projectParticipation",
"id": "String (identifier)",
"allowedAudiences": "String",
"inference": {
"@odata.type": "microsoft.graph.inferenceData"
},
"createdDateTime": "String (timestamp)",
"createdBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"lastModifiedDateTime": "String (timestamp)",
"lastModifiedBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"source": {
"@odata.type": "microsoft.graph.personDataSource"
},
"categories": [
"String"
],
"client": {
"@odata.type": "microsoft.graph.companyDetail"
},
"displayName": "String",
"detail": {
"@odata.type": "microsoft.graph.positionDetail"
},
"colleagues": [
{
"@odata.type": "microsoft.graph.relatedPerson"
}
],
"sponsors": [
{
"@odata.type": "microsoft.graph.relatedPerson"
}
],
"collaborationTags": [
"String"
]
}