acronym resource type

Namespace: microsoft.graph.search

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 an acronym that is an administrative answer in Microsoft Search results to define common acronyms in an organization.

Inherits from searchAnswer.

Methods

Method Return type Description
List acronyms microsoft.graph.search.acronym collection Get a list of the acronym objects and their properties.
Create acronym microsoft.graph.search.acronym Create a new acronym object.
Get acronym microsoft.graph.search.acronym Read the properties and relationships of an acronym object.
Update acronym microsoft.graph.search.acronym Update the properties of an acronym object.
Delete acronym None Delete an acronym object.

Properties

Property Type Description
description String A brief description of the acronym that gives users more information about the acronym and what it stands for. Inherited from searchAnswer.
displayName String The actual short form or acronym. Inherited from searchAnswer.
id String The unique identifier (GUID) for the acronym. Inherited from entity.
lastModifiedBy microsoft.graph.identitySet Details of the user who created or last modified the acronym. Inherited from searchAnswer. Read-only.
lastModifiedDateTime DateTimeOffset Date and time when the acronym was created or last edited. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Inherited from searchAnswer. Read-only.
standsFor String What the acronym stands for.
state microsoft.graph.search.answerState State of the acronym. Possible values are: published, draft, excluded, unknownFutureValue.
webUrl String The URL of the page or website where users can go for more information about the acronym. Inherited from searchAnswer.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.search.acronym",
  "description": "String",
  "displayName": "String",
  "id": "String (identifier)",
  "lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"},
  "lastModifiedDateTime": "String (timestamp)",
  "standsFor": "String",
  "state": "String",
  "webUrl": "String"
}