Microsoft Entra · Schema

ODataReference

OData reference link used to add relationships

Access ManagementAuthenticationAzure ADEntraIdentityIdentity GovernanceMicrosoftNetwork SecuritySecurityZero Trust

Properties

Name Type Description
@odata.id string The full URL to the directory object to add as a member. Format: https://graph.microsoft.com/v1.0/directoryObjects/{id}
View JSON Schema on GitHub

JSON Schema

microsoft-entra-odatareference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ODataReference",
  "title": "ODataReference",
  "type": "object",
  "description": "OData reference link used to add relationships",
  "required": [
    "@odata.id"
  ],
  "properties": {
    "@odata.id": {
      "type": "string",
      "description": "The full URL to the directory object to add as a member. Format: https://graph.microsoft.com/v1.0/directoryObjects/{id}",
      "format": "uri",
      "example": "https://www.example.com"
    }
  }
}