itemPatent resource type
Namespace: microsoft.graph
Represents a granted or filed patent which has been added to a user's profile.
Inherits from itemFacet.
Methods
Method | Return type | Description |
---|---|---|
List | itemPatent collection | Get the itemPatent resources from the patents navigation property. |
Create | itemPatent | Create a new itemPatent object. |
Get | itemPatent | Read the properties and relationships of an itemPatent object. |
Update | itemPatent | Update the properties of an itemPatent object. |
Delete | None | Deletes an itemPatent 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 . |
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. |
description | String | Descpription of the patent or filing. |
displayName | String | Title of the patent or filing. |
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. |
isPending | Boolean | Indicates the patent is pending. |
issuedDate | Date | The date that the patent was granted. |
issuingAuthority | String | Authority which granted the patent. |
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. |
number | String | The patent number. |
source | personDataSource | Where the values originated if synced from another service. Inherited from itemFacet. |
webUrl | String | URL referencing the patent or filing. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.itemPatent",
"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"
},
"description": "String",
"displayName": "String",
"isPending": "Boolean",
"issuedDate": "Date",
"issuingAuthority": "String",
"number": "String",
"webUrl": "String"
}