Repository: microsoft/api-guidelines Branch: vNext Commit: 577874dc4909 Files: 39 Total size: 526.7 KB Directory structure: gitextract_y88h3vd0/ ├── .github/ │ └── CODEOWNERS ├── CONTRIBUTING.md ├── Guidelines.md ├── README.md ├── SECURITY.md ├── azure/ │ ├── .markdownlint.json │ ├── ConsiderationsForServiceDesign.md │ ├── Guidelines.md │ ├── README.md │ └── VersioningGuidelines.md ├── graph/ │ ├── Guidelines-deprecated.md │ ├── GuidelinesGraph.md │ ├── articles/ │ │ ├── collections.md │ │ ├── coreTypes.md │ │ ├── deprecation.md │ │ ├── errorResponses.md │ │ ├── filter-as-segment.md │ │ ├── naming.md │ │ └── nullable.md │ └── patterns/ │ ├── PatternDescriptionTemplate.md │ ├── alternate-key.md │ ├── antiPatternTemplate.md │ ├── change-tracking.md │ ├── default-properties.md │ ├── dictionary-client-guidance.md │ ├── dictionary.md │ ├── enums.md │ ├── evolvable-enums.md │ ├── facets.md │ ├── flat-bag.md │ ├── long-running-operations.md │ ├── namespace.md │ ├── navigation-property.md │ ├── operations.md │ ├── subsets.md │ ├── subtypes.md │ ├── upsert.md │ └── viewpoint.md └── license.txt ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/CODEOWNERS ================================================ # These are the set of folks who should review PRs on the azureRestUpdates branch. #* @microsoft/azure-api-stewardship-board @Azure/api-stewardship-board /graph/ @microsoft/graphguidelinesapprovers ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing to the Microsoft REST API Guidelines The Microsoft REST API Guidelines is a Microsoft-wide initiative to develop consistent design guidelines for REST APIs. The initiative requires input and feedback from a variety of individuals both inside and outside of Microsoft. To provide feedback, please follow the guidance in this document. Please note that these are just guidelines, not rules. Use your best judgment and feel free to propose changes to anything in this repository, including the contribution guidelines. Please note that this project is released with a [Contributor Code of Conduct][code-of-conduct]. By participating in this project you agree to abide by its terms. - [Creating issues](#creating-issues) - [Recommended setup for contributing](#recommended-setup-for-contributing) - [Documentation styleguide](#documentation-styleguide) - [Commit messages](#commit-messages) - [Pull requests](#pull-requests) ## Creating issues - You can [create an issue][new-issue], but before doing that please read the bullets below and include as many details as possible. - Perform a [cursory search][issue-search] to see if a similar issue has already been submitted. - Reference the version of the Microsoft REST API Guidelines you are using. - Include the guidance you expected and other places you've seen that guidance, e.g. [White House Web API Standards][white-house-api-guidelines]. - Include sample requests and responses whenever possible. ### Related repositories This is the repository for Microsoft REST API Guidelines documentation only. Please ensure that you are opening issues in the right repository. ## Recommended setup for contributing - Fork this repository on GitHub - Install [Git][git] to your computer and clone your new forked repository - Install [Atom][atom], [VS Code][vscode], or your favorite editor - Install [markdown-toc package][markdown-toc] ## Documentation styleguide - Use [GitHub-flavored markdown][gfm] - Use syntax-highlighted examples liberally - Trim trailing empty lines from HTTP requests - Retain only essential headers for understanding the example - Use valid (e.g., member names quoted), pretty-printed JSON with a 2 space indent - Minimize JSON payloads by using ellipses - Write one sentence per line. ### Example #### Request ```http GET http://services.odata.org/V4/TripPinServiceRW/People HTTP/1.1 Accept: application/json ``` #### Response ```http HTTP/1.1 200 OK Content-Type: application/json { "@nextLink":"http://services.odata.org/V4/TripPinServiceRW/People?$skiptoken=8", "value":[ { "userName":"russellwhyte", "firstName":"Russell", "lastName":"Whyte", "emails":[ "Russell@example.com", "Russell@contoso.com" ], "addressInfo":[ { "address":"187 Suffolk Ln.", "city":{ "countryRegion":"United States", "name":"Boise", "region":"ID" } } ], "gender":"Male", }, ... ] } ``` ## Commit messages - Use the present tense: "Change ...", not "Changed ..." - Use the imperative mood: "Change ...", not "Changes ..." - Limit the first line to 72 characters or less - Reference issues and pull requests liberally ## Pull requests Pull requests serve as the primary mechanism by which contributions are proposed and accepted. We recommend creating a [topic branch][topic-branch] and sending a pull request to the `vNext` branch from the topic branch. For additional guidance, read through the [GitHub Flow Guide][github-flow-guide]. Be prepared to address feedback on your pull request and iterate if necessary. [code-of-conduct]: https://opensource.microsoft.com/codeofconduct/ [new-issue]: https://github.com/Microsoft/api-guidelines/issues/new [issue-search]: https://github.com/Microsoft/api-guidelines/issues [white-house-api-guidelines]: https://github.com/WhiteHouse/api-standards/blob/master/README.md [topic-branch]: https://www.git-scm.com/book/en/v2/Git-Branching-Branching-Workflows#Topic-Branches [gfm]: https://guides.github.com/features/mastering-markdown/#GitHub-flavored-markdown [github-flow-guide]: https://guides.github.com/introduction/flow/ [atom-beautify]: https://atom.io/packages/atom-beautify [atom]: https://atom.io/ [markdown-toc]: https://atom.io/packages/markdown-toc [vscode]: https://code.visualstudio.com/ [git]: https://git-scm.com/ ================================================ FILE: Guidelines.md ================================================ > # NOTICE TO READERS > This document has been deprecated and has been moved to the [Microsoft REST API Guidelines deprecated](./graph/Guidelines-deprecated.md). Please refer to the notes below for the latest guidance. > > ## **Guidance for Azure service teams** > Azure service teams should use the companion documents, [Azure REST API Guidelines](./azure/Guidelines.md) and [Considerations for Service Design](./azure/ConsiderationsForServiceDesign.md), when building or modifying their services. These documents provide a refined set of guidance targeted specifically for Azure services. For more information, see the [README](./azure/README.md) in the Azure folder. > > ## **Guidance for Microsoft Graph service teams** > Graph service teams should reference the companion document, [Microsoft Graph REST API Guidelines](./graph/GuidelinesGraph.md) when building or modifying their services. This document and the associated pattern catalog provides a refined set of guidance targeted specifically for Microsoft Graph services. --- ================================================ FILE: README.md ================================================ # Microsoft REST API Guidelines Thank you for your interest in the Microsoft REST API Guidelines. If you have landed here, you're probably interested in learning about APIs. If so, you are in the right place! We publish these guidelines here with the aim of fostering dialogue and learning in the API community at large. We further hope that these guidelines might encourage other organizations to create guidelines that are appropriate for them and in turn, if they're able, to publish theirs. ### Guidance for Azure service teams Azure service teams should reference the companion documents, [Azure REST API Guidelines](./azure/Guidelines.md) and [Considerations for Service Design](./azure/ConsiderationsForServiceDesign.md), when building or modifying their services. These documents provide a refined set of guidance targeted specifically for Azure services. For more information, please refer to the [README](./azure/README.md) in the Azure folder. ### Guidance for Microsoft Graph service teams Graph service teams should reference the companion document, [Microsoft Graph REST API Guidelines](./graph/GuidelinesGraph.md) when building or modifying their services. This document and the associated pattern catalog provide a refined set of guidance targeted specifically for Microsoft Graph services. [![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/) ## Code of Conduct This project adopts the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information, see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. ## This repository This repository contains a collection of documents and related materials supporting the overall Microsoft REST API Guidelines initiative. To contribute to this repository, see the [contribution guidelines][contribution-guidance]. [contribution-guidance]: CONTRIBUTING.md ================================================ FILE: SECURITY.md ================================================ ## Security Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below. ## Reporting Security Issues **Please do not report security vulnerabilities through public GitHub issues.** Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report). If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey). You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc). Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) * Full paths of source file(s) related to the manifestation of the issue * The location of the affected source code (tag/branch/commit or direct URL) * Any special configuration required to reproduce the issue * Step-by-step instructions to reproduce the issue * Proof-of-concept or exploit code (if possible) * Impact of the issue, including how an attacker might exploit the issue This information will help us triage your report more quickly. If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs. ## Preferred Languages We prefer all communications to be in English. ## Policy Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd). ================================================ FILE: azure/.markdownlint.json ================================================ { "default": true, "MD012": { "maximum": 2 }, "MD013": { "line_length": 500 }, "MD022": false, "MD031": false, "MD032": false, "MD033": { "allowed_elements": [ "sup" ] }, "MD036": false } ================================================ FILE: azure/ConsiderationsForServiceDesign.md ================================================ # Considerations for Service Design ## History | Date | Notes | | ----------- | -------------------------------------------------------------- | | 2024-Mar-17 | Updated LRO guidelines | | 2024-Jan-17 | Added guidelines on returning string offsets & lengths | | 2022-Jul-15 | Update guidance on long-running operations | | 2022-Feb-01 | Updated error guidance | | 2021-Sep-11 | Add long-running operations guidance | | 2021-Aug-06 | Updated Azure REST Guidelines per Azure API Stewardship Board. | ## Introduction Great APIs make your service usable to customers. They are intuitive, naturally reflecting and communicating the underlying model and its behavior. They lend themselves easily to client library implementations in multiple programming languages. And they don't "get in the way" of the developer, by remaining stable and predictable, _especially over time_. This document provides Microsoft teams building Azure services with a set of guidelines that help service teams build great APIs. The guidelines create APIs that are approachable, sustainable, and consistent across the Azure platform. We do this by applying a common set of patterns and web standards to the design and development of the API. For developers, a well defined and constructed API enables them to build fault-tolerant applications that are easy to maintain, support, and grow. For Azure service teams, the API is often the source of code generation enabling a broad audience of developers across multiple languages. Azure Service teams should engage the Azure HTTP/REST Stewardship Board early in the development lifecycle for guidance, discussion, and review of their API. In addition, it is good practice to perform a security review, especially if you are concerned about PII leakage, compliance with GDPR, or any other considerations relative to your situation. It is critically important to design your service to avoid disrupting users as the API evolves: :white_check_mark: **DO** implement API versioning starting with the very first release of the service. :white_check_mark: **DO** ensure that customer workloads never break :white_check_mark: **DO** ensure that customers are able to adopt a new version of service or SDK client library **without requiring code changes** ## Azure Management Plane vs Data Plane _Note: Developing a new service requires the development of at least 1 (management plane) API and potentially one or more additional (data plane) APIs. When reviewing v1 service APIs, we see common advice provided during the review._ A **management plane** API is implemented through the Azure Resource Manager (ARM) and is used to provision and control the operational state of resources. A **data plane** API is used by developers to implement applications. Occasionally, some operations are useful for provisioning/control and applications. In this case, the operation can appear in both APIs. Although, best practices and patterns described in this document apply to all HTTP/REST APIs, they are especially important for **data plane** services because it is the primary interface for developers using your service. The **management plane** APIs may have other preferred practices based on the conventions of the [Azure RPC](https://aka.ms/azurerpc). ## Start with the Developer Experience A great API starts with a well thought out and designed service. Your service should define simple/understandable abstractions with each given a clear name that you use consistently throughout your API and documentation. There must also be an unambiguous relationship between these abstractions. Follow these practices to create clear names for your abstractions: - Don't invent fancy terms or use fancy words. Try explaining the abstraction to someone that is not a domain expert and then name the abstraction using similar verbiage. - Don't include "throwaway" words in names, like "response", "object", "payload", etc. - Avoid generic names. Names should be specific to the abstraction and highlight how it is different from other abstractions in your service or related services. - Pick one word/term out of a set of synonyms and stick to it. It is extremely difficult to create an elegant API that works well on top of a poorly designed service; the service team and customers will live with this pain for years to come. So, the service team should empathize with customers by: - Building apps that consume the API - Hold reviews and share what is learned with your team - Get customer feedback from API previews - Thinking about the code that a customer writes both before and after an HTTP operation - Initializing and reading from the data structures your service requires - Thinking about which errors are recoverable at runtime as opposed to indicating a bug in the customer code that must be fixed The whole purpose of a preview to address feedback by improving abstractions, naming, relationships, API operations, and so on. It is OK to make breaking changes during a preview to improve the experience now so that it is sustainable long term. ## Focus on Hero Scenarios It is important to realize that writing an API is, in many cases, the easiest part of providing a delightful developer experience. There are a large number of downstream activities for each API, e.g. testing, documentation, client libraries, examples, blog posts, videos, and supporting customers in perpetuity. In fact, implementing an API is of miniscule cost compared to all the other downstream activities. _For this reason, it is **much better** to ship with fewer features and only add new features over time as required by customers._ Focusing on hero scenarios reduces development, support, and maintenance costs; enables teams to align and reach consensus faster; and accelerates the time to delivery. A telltale sign of a service that has not focused on hero scenarios is "API drift," where endpoints are inconsistent, incomplete, or juxtaposed to one another. :white_check_mark: **DO** define "hero scenarios" first including abstractions, naming, relationships, and then define the API describing the operations required. :white_check_mark: **DO** provide example code demonstrating the "Hero Scenarios". :white_check_mark: **DO** consider how your abstractions will be represented in different high-level languages. :white_check_mark: **DO** develop code examples in at least one dynamically typed language (for example, Python or JavaScript) and one statically typed language (for example, Java or C#) to illustrate your abstractions and high-level language representations. :no_entry: **DO NOT** proactively add APIs for speculative features customers might want. ### Start with your API Definition Understanding how your service is used and defining its model and interaction patterns--its API--should be one of the earliest activities a service team undertakes. It reflects the abstractions & naming decisions and makes it easy for developers to implement the hero scenarios. :white_check_mark: **DO** create an [OpenAPI description](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/2.0.md) (with [autorest extensions](https://github.com/Azure/autorest/blob/master/docs/extensions/readme.md)) for the service API. The OpenAPI description is a key element of the Azure SDK plan and is essential for documentation, usability and discoverability of service APIs. ## Design for Change Resiliency As you build out your service and API, there are a number of decisions that can be made up front that add resiliency to client implementations. Addressing these as early as possible will help you iterate faster and avoid breaking changes. :ballot_box_with_check: **YOU SHOULD** use extensible enumerations. Extensible enumerations are modeled as strings - expanding an extensible enumeration is not a breaking change. :ballot_box_with_check: **YOU SHOULD** implement [conditional requests](https://tools.ietf.org/html/rfc7232) early. This allows you to support concurrency, which tends to be a concern later on. ## Use Good Names Good names for resources, properties, operations, and parameters are essential to a great developer experience. Resources are described by nouns. Resource and property names must be descriptive and easy for customers to understand. Use names that correspond to user scenarios rather than service implementation details, e.g. "Diagnosis" and not "TreeLeafNode". Names should convey the value's purpose and not simply describe its structure, e.g. "ConfigurationSetting" and not "KeyValuePair". Ease of understanding comes from familiarity and recognition; you should favor consistency with other Azure services, names in the product's portal/user interface, and industry standards. Names should aid developers in discovering functionality without having to constantly refer to documentation. Use common patterns and standard conventions to aid developers in correctly guessing common property names and meanings. Use verbose naming patterns and avoid abbreviations other than well-known acronyms in your service domain. :white_check_mark: **DO** use the same name for the same concept and different names for different concepts wherever possible. ### Recommended Naming Conventions The following are recommended naming conventions for Azure services: :white_check_mark: **DO** name collections as plural nouns or plural noun phrases using correct English. :white_check_mark: **DO** name values that are not collections as singular nouns or singular noun phrases. :ballot_box_with_check: **YOU SHOULD** should place the adjective before the noun in names that contain both a noun and an adjective. For example, `collectedItems` not `itemsCollected` :ballot_box_with_check: **YOU SHOULD** case all acronyms as though they were regular words (i.e. lower camelCase). For example, `nextUrl` not `nextURL`. :ballot_box_with_check: **YOU SHOULD** use an "At" suffix in names of `date-time` values. For example, `createdAt` not `created` or `createdDateTime`. :ballot_box_with_check: **YOU SHOULD** use a suffix of the unit of measurement for values with a clear unit of measurement (such as bytes, miles, and so on). Use a generally accepted abbreviation for the units (e.g. "Km" rather than "Kilometers") when appropriate. :ballot_box_with_check: **YOU SHOULD** use an int for time durations and include the time units in the name. For example, `expirationDays` as `int` and not `expiration` as `date-time`. :warning: **YOU SHOULD NOT** use brand names in resource or property names. :warning: **YOU SHOULD NOT** use acronyms or abbreviations unless they are broadly understood for example, "ID" or "URL", but not "Num" for "number". :warning: **YOU SHOULD NOT** use names that are reserved words in widely used programming languages (including C#, Java, JavaScript/TypeScript, Python, C++, and Go). :no_entry: **DO NOT** use "is" prefix in names of `boolean` values, e.g. "enabled" not "isEnabled". :no_entry: **DO NOT** use redundant words in names. For example, `/phones/number` and not `phone/phoneNumber`. ### Common names The following are recommended names for properties that match the associated description: | Name | Description | |------------- | --- | | createdAt | The date and time the resource was created. | | lastModifiedAt | The date and time the resource was last modified. | | deletedAt | The date and time the resource was deleted. | | kind | The discriminator value for a polymorphic resource | | etag | The entity tag used for optimistic concurrency control, when included as a property of a resource. | ### `name` vs `id` :white_check_mark: **DO** use "Id" suffix for the name of the identifier of a resource. This holds even in the case where the identifier is assigned by the user with a PUT/PATCH method. ## Use Previews to Iterate Before releasing your API plan to invest significant design effort, get customer feedback, & iterate through multiple preview releases. This is especially important for V1 as it establishes the abstractions and patterns that developers will use to interact with your service. :ballot_box_with_check: **YOU SHOULD** write and test hypotheses about how your customers will use the API. :ballot_box_with_check: **YOU SHOULD** release and evaluate a minimum of 2 preview versions prior to the first GA release. :ballot_box_with_check: **YOU SHOULD** identify key scenarios or design decisions in your API that you want to test with customers, and ask customers for feedback and to share relevant code samples. :ballot_box_with_check: **YOU SHOULD** consider doing a _code with_ exercise in which you actively develop with the customer, observing and learning from their API usage. :ballot_box_with_check: **YOU SHOULD** capture what you have learned during the preview stage and share these findings with your team and with the API Stewardship Board. ## Communicate Deprecations As your service evolves over time, it will be natural that you want to remove operations that are no longer needed. For example, additional requirements or new capability in your service, may have resulted in a new operation that, effectively, replaces an old one. Azure has a well established breaking changes policy that describes how to approach these kinds of changes. As part of this policy, the service team is required to clearly communicate to customers when their API is changing, e.g. deprecating operations. Often, this is done via an email to the address that is attached to the Azure subscription. However, given how many organizations are structured, it's common that this email address is different from the actual people writing code against your API. To address this, the service API should declare that it may return the `azure-deprecating` header, to indicate that this operation will be removed in the future. There is a simple string convention, specified in the [Azure REST API Guidelines](https://aka.ms/azapi/guidelines#deprecating-behavior-notification) that provides more information about the forthcoming deprecation. This header is targeted at developers or operation professionals, and it is intended to give them enough information and lead time to properly adapt to this change. Your documentation should reference this header and encourage logging and alerting practices based on its presence. ## Avoid Surprises A major inhibitor to adoption and usage is when an API behaves in an unexpected way. Often, these are subtle design decisions that seem benign at the time, but end up introducing significant downstream friction for developers. One common area of friction for developers is _polymorphism_ -- where a value may have any of several types or structures. Polymorphism can be beneficial in certain cases, e.g. as a way to express inheritance, but also creates friction because it requires the value to be introspected before being processed and cannot be represented in a natural/useful way in many nominally typed languages. The use of a discriminator field (`kind`) simplifies the introspection, but developers frequently end up having to explicitly cast the response to the appropriate type in order to use it. Collections are another common area of friction for developers. It is important to define collections in a consistent manner within your service and across services of the platform. In particular, features such as pagination, filtering, and sorting, when supported, should follow common API patterns. See [Collections](./Guidelines.md#collections) for specific guidance. An important consideration when defining a new service is support for pagination. :ballot_box_with_check: **YOU SHOULD** support server-side paging, even if your resource does not currently need paging. This avoids a breaking change when your service expands. See [Collections](./Guidelines.md#collections) for specific guidance. Another consideration for collections is support for sorting the set of returned items with the _orderby_ query parameter. Sorting collection results can be extremely expensive for a service to implement as it must retrieve all items to sort them. And if the operation supports paging (which is likely), then a client request to get another page may have to retrieve all items and sort them again to determine which items are on the desired page. :heavy_check_mark: **YOU MAY** support `orderby` if customer scenarios really demand it and the service is confident that it can support it in perpetuity (even if the backing storage service changes someday). Another important design pattern for avoiding surprises is idempotency. An operation is idempotent if it can be performed multiple times and have the same result as a single execution. HTTP requires certain operations like GET, PUT, and DELETE to be idempotent, but for cloud services it is important to make _all_ operations idempotent so that clients can use retry in failure scenarios without risk of unintended consequences. See the [HTTP Request / Response Pattern section of the Guidelines](./Guidelines.md#http-request--response-pattern) for detailed guidance on making operations idempotent. ## Action Operations Most operations conform to one of the standard REST Create, Read, Update, Delete, or List (CRUDL) style of operations. We refer to all other operations as "action" operations. Some examples of action operations are to reboot a VM, or send an email. It is good practice to define the path for action operations that is easily distinguished from any resource path of the service. When services allow user-specified resource ids (also a good practice), the recommended approach for this is: 1) constrain user-specified resource ids to allow only certain characters, such as alphanumeric and '-' or '_', and 2) use a special character not in the set of valid characters for resource names to distinguish the "action" in the path. In Azure we recommend distinguishing action operations by appending a ':' followed by an action verb to the final path segment. E.g. ```text https://...//:? ``` Other patterns are possible. The key consideration is to ensure that the path for an action operation cannot collide with a resource path that contains user-specified resource ids. ## Long-Running Operations Long-running operations (LROs) are an API design pattern that should be used when the processing of an operation may take a significant amount of time -- longer than a client will want to block waiting for the result. The request that initiates a long-running operation returns a response that points to or embeds a _status monitor_, which is an ephemeral resource that will track the status and final result of the operation. The status monitor resource is distinct from the target resource (if any) and specific to the individual operation request. There are four types of LROs allowed in Azure REST APIs: 1. An LRO to create or replace a resource that involves additional long-running processing. 2. An LRO to delete a resource. 3. An LRO to perform an action on or with an existing resource (or resource collection). 4. An LRO to perform an action not related to an existing resource (or resource collection). The following sections describe these patterns in detail. ### Create or replace a resource requiring additional long-running processing A special case of long-running operations that occurs often is a PUT operation to create or replace a resource that involves some additional long-running processing. One example is a resource that requires physical resources (e.g. servers) to be "provisioned" to make the resource functional. In this case: - The operation must use the PUT method (NOTE: PATCH is never allowed here) - The URL identifies the resource being created or replaced. - The request and response body have identical schemas & represent the resource. - The request may contain an `Operation-Id` header that the service will use as the ID of the status monitor created for the operation. - If the `Operation-Id` matches an existing operation and the request content is the same, treat as a retry and return the same response as the earlier request. Otherwise fail the request with a `409-Conflict`. ```text PUT /items/FooBar&api-version=2022-05-01 Operation-Id: 22 { "prop1": 555, "prop2": "something" } ``` In this case the response to the initial request is a `201 Created` to indicate that the resource has been created or `200 OK` when the resource was replaced. The response body should be a representation of the resource that was created, and should include a `status` field indicating the current status of the resource. A status monitor is created to track the additional processing and the ID of the status monitor is returned in the `Operation-Id` header of the response. The response must also include an `Operation-Location` header for backward compatibility. If the resource supports ETags, the response may contain an `etag` header and possibly an `etag` property in the resource. ```text HTTP/1.1 201 Created Operation-Id: 22 Operation-Location: https://items/operations/22 etag: "123abc" { "id": "FooBar", "status": "Provisioning", "prop1": 555, "prop2": "something", "etag": "123abc" } ``` The client will issue a GET to the status monitor to obtain the status of the operation performing the additional processing. ```text GET https://items/operations/22?api-version=2022-05-01 ``` When the additional processing completes, the status monitor indicates if it succeeded or failed. ```text HTTP/1.1 200 OK { "id": "22", "status": "Succeeded" } ``` If the additional processing failed, the service may delete the original resource if it is not usable in this state, but should clearly document this behavior. ### Long-running delete operation A long-running delete operation returns a `202 Accepted` with a status monitor which the client uses to determine the outcome of the delete. The resource being deleted should remain visible (returned from a GET) until the delete operation completes successfully. When the delete operation completes successfully, a client must be able to create a new resource with the same name without conflicts. This diagram illustrates how a long-running DELETE operation is initiated and then how the client determines it has completed and obtains its results: ```mermaid sequenceDiagram participant Client participant API Endpoint participant Status Monitor Client->>API Endpoint: DELETE API Endpoint->>Client: HTTP/1.1 202 Accepted
{ "id": "22", "status": "NotStarted" } Client->>Status Monitor: GET Status Monitor->>Client: HTTP/1.1 200 OK
Retry-After: 5
{ "id": "22", "status": "Running" } Client->>Status Monitor: GET Status Monitor->>Client: HTTP/1.1 200 OK
{ "id": "22", "status": "Succeeded" } ``` 1. The client sends the request to initiate the long-running DELETE operation. The request may contain an `Operation-Id` header that the service uses as the ID of the status monitor created for the operation. 2. The service validates the request and initiates the operation processing. If there are any problems with the request, the service responds with a `4xx` status code and error response body. Otherwise the service responds with a `202-Accepted` HTTP status code. The response body is the status monitor for the operation including the ID, either from the request header or generated by the service. When returning a status monitor whose status is not in a terminal state, the response must also include a `retry-after` header indicating the minimum number of seconds the client should wait before polling (GETing) the status monitor URL again for an update. For backward compatibility, the response must also include an `Operation-Location` header containing the absolute URL of the status monitor resource, including an api-version query parameter. 3. After waiting at least the amount of time specified by the previous response's `Retry-after` header, the client issues a GET request to the status monitor using the ID in the body of the initial response. The GET operation for the status monitor is documented in the REST API definition and the ID is the last URL path segment. 4. The status monitor responds with information about the operation including its current status, which should be represented as one of a fixed set of string values in a field named `status`. If the operation is still being processed, the status field will contain a "non-terminal" value, like `NotStarted` or `Running`. 5. After the operation processing completes, a GET request to the status monitor returns the status monitor with a status field set to a terminal value -- `Succeeded`, `Failed`, or `Canceled` -- that indicates the result of the operation. If the status is `Failed`, the status monitor resource contains an `error` field with a `code` and `message` that describes the failure. 6. There may be some cases where a long-running DELETE operation can be completed before the response to the initial request. In these cases, the operation should still return a `202 Accepted` with the `status` property set to the appropriate terminal state. 7. The service is responsible for purging the status monitor resource. It should auto-purge the status monitor resource after completion (at least 24 hours). The service may offer DELETE of the status monitor resource due to GDPR/privacy. ### Long-running Action Operations An action operation that is also long-running combines the [Action Operations](#action-operations) pattern with the [Long Running Operations](#long-running-operations) pattern. The operation is initiated with a POST operation and the operation path ends in `:`. A long-running POST should not be used for resource create: use PUT as described above. PATCH must never be used for long-running operations: it should be reserved for simple resource updates. If a long-running update is required it should be implemented with POST. ```text POST /:?api-version=2022-05-01 Operation-Id: 22 { "arg1": 123 "arg2": "abc" } ``` A long-running action operation returns a `202 Accepted` response with the status monitor in the response body. ```text HTTP/1.1 202 Accepted Operation-Location: https:///22 { "id": "22", "status": "NotStarted" } ``` The client will issue a GET to the status monitor to obtain the status and result of the operation. ```text GET https:///22?api-version=2022-05-01 ``` When the operation completes successfully, the result (if there is one) will be included in the `result` field of the status monitor. ```text HTTP/1.1 200 OK { "id": "22", "status": "Succeeded", "result": { ... } } ``` This diagram illustrates how a long-running action operation is initiated and then how the client determines it has completed and obtains its results: ```mermaid sequenceDiagram participant Client participant API Endpoint participant Status Monitor Client->>API Endpoint: POST API Endpoint->>Client: HTTP/1.1 202 Accepted
{ "id": "22", "status": "NotStarted" } Client->>Status Monitor: GET Status Monitor->>Client: HTTP/1.1 200 OK
Retry-After: 5
{ "id": "22", "status": "Running" } Client->>Status Monitor: GET Status Monitor->>Client: HTTP/1.1 200 OK
{ "id": "22", "status": "Succeeded", "result": { ... } } ``` 1. The client sends the request to initiate the long-running action operation. The request may contain an `Operation-Id` header that the service uses as the ID of the status monitor created for the operation. 2. The service validates the request and initiates the operation processing. If there are any problems with the request, the service responds with a `4xx` status code and error response body. Otherwise the service responds with a `202-Accepted` HTTP status code. The response body is the status monitor for the operation including the ID, either from the request header or generated by the service. When returning a status monitor whose status is not in a terminal state, the response must also include a `retry-after` header indicating the minimum number of seconds the client should wait before polling (GETing) the status monitor URL again for an update. For backward compatibility, the response may also include an `Operation-Location` header containing the absolute URL of the status monitor resource, including an api-version query parameter. 3. After waiting at least the amount of time specified by the previous response's `Retry-after` header, the client issues a GET request to the status monitor using the ID in the body of the initial response. The GET operation for the status monitor is documented in the REST API definition and the ID is the last URL path segment. 4. The status monitor responds with information about the operation including its current status, which should be represented as one of a fixed set of string values in a field named `status`. If the operation is still being processed, the status field will contain a "non-terminal" value, like `NotStarted` or `Running`. 5. After the operation processing completes, a GET request to the status monitor returns the status monitor with a status field set to a terminal value -- `Succeeded`, `Failed`, or `Canceled` -- that indicates the result of the operation. If the status is `Failed`, the status monitor resource contains an `error` field with a `code` and `message` that describes the failure. If the status is `Succeeded`, the operation results (if any) are returned in the `result` field of the status monitor. 6. There may be some cases where a long-running action operation can be completed before the response to the initial request. In these cases, the operation should still return a `202 Accepted` with the `status` property set to the appropriate terminal state. 7. The service is responsible for purging the status monitor resource. It should auto-purge the status monitor resource after completion (at least 24 hours). The service may offer DELETE of the status monitor resource due to GDPR/privacy. ### Long-running action operation not related to a resource When a long-running action operation is not related to a specific resource (a batch operation is one example), another approach is needed. This type of LRO should be initiated with a PUT method on a URL that represents the operation to be performed, and includes a final path parameter for the user-specified operation ID. The response of the PUT includes a response body containing a representation of the status monitor for the operation and an `Operation-Location` response header that contains the absolute URL of the status monitor. In this type of LRO, the status monitor should include any information from the request used to initiate the operation, so that a failed operation could be reissued if necessary. Clients will use a GET on the status monitor URL to obtain the status and results of the operation. Since the HTTP semantic for PUT is to create a resource, the same schema should be used for the PUT request body, the PUT response body, and the response body of the GET for the status monitor for the operation. For this type of LRO, the status monitor URL should be the same URL as the PUT operation. The following examples illustrate this pattern. ```text PUT /translate-operations/?api-version=2022-05-01 ``` Note that the client specifies the operation id in the URL path. A successful response to the PUT operation should have a `201 Created` status and response body that contains a representation of the status monitor _and_ any information from the request used to initiate the operation. The service is responsible for purging the status monitor after some period of time, but no earlier than 24 hours after the completion of the operation. The service may offer DELETE of the status monitor resource due to GDPR/privacy. ### Controlling a long-running operation It might be necessary to support some control action on a long-running operation, such as cancel. This is implemented as a POST on the status monitor endpoint with `:` added. ```text POST /:cancel?api-version=2022-05-01 ``` A successful response to a control operation should be a `200 OK` with a representation of the status monitor. ```text HTTP/1.1 200 OK { "id": "22", "status": "Canceled" } ``` ## Errors One of the most important parts of service design is also one of the most overlooked. The errors returned by your service are a critical part of your developer experience and are part of your API contract. Your service and your customer's application together form a distributed system. Errors are inevitable, but well-designed errors can help you avoid costly customer support incidents by empowering customers to self-diagnose problems. First, you should always try to design errors out of existence if possible. You'll get a lot of this for free by following the [API Guidelines](https://aka.ms/azapi/guidelines). Some examples include: - Idempotent APIs solve a whole class of network issues where customers have no idea how to proceed if they send a request to the service but never get a response. - Accessing resources from multiple microservices can quickly lead to complex race conditions. These can be avoided by supporting conditional requests through an [optimistic concurrency strategy](https://github.com/microsoft/api-guidelines/blob/vNext/azure/Guidelines.md#optimistic-concurrency), e.g. by leveraging `If-Match`/`If-None-Match` request headers. - Reframing the purpose of an API can obviate some errors. This is most often specific to your operations, but an [example from the API Guidelines](https://github.com/microsoft/api-guidelines/blob/vNext/azure/Guidelines.md#http-return-codes) is thinking about `DELETE`s as _"ensure no resource at this location exists"_ so they can return an easier to use `204` instead of _"delete this exact resource instance"_ which would fail with a `404`. There are two types of errors returned from your service and customers handle them differently. - Usage errors where the customer is calling your API incorrectly. The customer can easily make these errors go away by fixing their code. We expect most usage errors to be found during testing. - Runtime errors that can't be prevented by the customer and need to be recovered from. Some runtime errors like `429` throttling will be handled automatically by client libraries, but most will be situations like a `409` conflict requiring knowledge about the customer's application to remedy. You should use appropriate [HTTP status codes](https://developer.mozilla.org/docs/Web/HTTP/Status#client_error_responses) for customers to handle errors generically and error code strings in our common error schema and the `x-ms-error-code` header for customers to handle errors specifically. As an example, consider what a customer would do when trying to get the properties of a Storage blob: - A `404` status code tells them the blob doesn't exist and the customer can report the error to their users - A `BlobNotFound` or `ContainerNotFound` error code will tell them why the blob doesn't exist so they can take steps to recreate it The [common error schema in the Guidelines](https://github.com/microsoft/api-guidelines/blob/vNext/azure/Guidelines.md#handling-errors) allows nested details and inner errors that have their own error codes, but the top-level error code is the most important. The HTTP status code and the top-level error code are the only part of your error that we consider part of your API contract that follows the same compatibility requirements as the rest of your API. Importantly, this means you **changing the HTTP status code or top-level error code for an API is a breaking change**. You can only return new status codes and error codes in future API versions if customers make use of new features that trigger new classes of errors. Battle tested error handling is some of the hardest code to get right and we can't break that for customers when they upgrade to the latest version. The rest of the properties in your error like `message`, `details`, etc., are not considered part of your API contract and can change to improve the diagnosability of your service. You should also return the top-level error code as the `x-ms-error-code` response header so client libraries have the ability to automatically retry requests when possible without having to parse a JSON payload. We recommend unique error codes like `ContainerBeingDeleted` for every distinct recoverable error that can occur, but suggest reusing common error codes like `InvalidHeaderValue` for usage errors where a descriptive error message is more important for resolving the problem. The Storage [Common](https://docs.microsoft.com/rest/api/storageservices/common-rest-api-error-codes) and [Blob](https://docs.microsoft.com/rest/api/storageservices/blob-service-error-codes) error codes are a good starting point if you're looking for examples. You can [define an enum in your spec](https://github.com/Azure/azure-rest-api-specs/blob/main/specification/storage/data-plane/Microsoft.BlobStorage/preview/2021-04-10/blob.json#L10419) with `"modelAsString": true` that lists all of the top-level error codes to make it [easier for your customers to handle specific error codes](https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/storage/Azure.Storage.Blobs#troubleshooting). You should not document specific error status codes in your OpenAPI/Swagger spec. The `"default"` response is the only thing AutoRest considers an error response unless you provide other annotations. Every unique status code turns into a separate code path in your client libraries so we do not encourage this practice. The only reason to document specific error status codes is if they return a different error response than the default, but that is also heavily discouraged. Be as precise as possible when writing error messages. A message with just `Invalid Argument` is almost useless to a customer who sent 100KB of JSON to your endpoint. ``Query parameter `top` must be less than or equal to 1000`` tells a customer exactly what went wrong so they can quickly fix the problem. Don't go overboard while writing great, understandable error messages and include any sensitive customer information or secrets though. Many developers will blindly write any error to logs that don't have the same level of access control as Azure resources. All responses should include the `x-ms-request-id` header with a unique id for the request, but this is particularly important for error responses. Service logs for the request should contain the `x-ms-request-id` so that support staff can use this value to diagnose specific customer reported errors. Finally, write sample code for your service's workflow and add the code you'd want customers using to gracefully recover from errors. Is it actually graceful? Is it something you'd be comfortable asking most customers to write? We also highly encourage reaching out to customers during private preview and asking them for code they've written against your service. Their error handling might match your expectations, you might find a strong need for better documentation, or you might find important opportunities to improve the errors you're returning. ## Pagination Operations that return a collection of resources must consider pagination. There are hard limits to the payload size of HTTP responses, and when the size of a collection or the resources themselves can grow arbitrarily large there is the risk of exceeding this limit if the operation does not support pagination. Further, adding support for pagination is a breaking change so it should be supported in the initial GA of the service if there is any possibility that it will eventually be needed. There are two forms of pagination that MAY be supported by RESTful APIs. Server-driven paging mitigates against denial-of-service attacks by forcibly paginating a request over multiple response payloads. Client-driven paging enables clients to request only the number of resources that it can use at a given time. Services should almost always support server-driven paging and may optionally support client-driven paging. ### Server-driven paging In server-driven paging, the service includes a `nextLink` property in the response to indicate that additional elements exist in the collection. The value of the `nextLink` property should be an opaque absolute URL that will return the next page of results. The absence of a `nextLink` property means that no additional pages are available. Since `nextLink` is an opaque URL it should include any query parameters required by the service, including `api-version`. The service should honor a request to a URL derived from `nextLink` by replacing the value for the `apl-version` query parameter with a different but valid api version. The service may reject the request if any other element of `nextLink` was modified. The service determines how many items to include in the response and may choose a different number for different collections and even for different pages of the same collection. An operation may allow the client to specify a maximum number of items in a response with an optional `maxpagesize` parameter. Operations that support `maxpagesize` should return no more than the value specified in `maxpagesize` but may return fewer. ### Client-driven paging An operation may support `skip` and `top` query parameters to allow the client to specify an offset into the collection and the number of results to return, respectively. Note that when `top` specifies a value larger than the server-driven paging page size, the response will be paged accordingly. ## Conditional Requests When designing an API, you will almost certainly have to manage how your resource is updated. For example, if your resource is a bank account, you will want to ensure that one transaction--say depositing money--does not overwrite a previous transaction. Similarly, it could be very expensive to send a resource to a client. This could be because of its size, network conditions, or a myriad of other reasons. Both of these scenarios can be accomplished with conditional requests, where the client specifies a _precondition_ for execution of a request, based on its last modification date or entity tag ("ETag"). An ETag identifies a 'version' or 'instance' of a resource and is computed by the service and returned in an `ETag` response header for GET or other operations on the resource. ### Cache Control One of the more common uses for conditional requests is cache control. This is especially useful when resources are large in size, expensive to compute/calculate, or hard to reach (significant network latency). A client can make a "conditional GET request" for the resource, with a precondition header that requests that data be returned only when the version on the service does not match the ETag or last modified date in the header. If there are no changes, then there is no need to return the resource, as the client already has the most recent version. Implementing this strategy is relatively straightforward. First, you will return an `ETag` with a value that uniquely identifies the instance (or version) of the resource. The [Computing ETags](./Guidelines.md#computing-etags) section provides guidance on how to properly calculate the value of your `ETag`. In these scenarios, when a request is made by the client an `ETag` header is returned, with a value that uniquely identifies that specific instance (or version) of the resource. The `ETag` value can then be sent in subsequent requests as part of the `If-None-Match` header. This tells the service to compare the `ETag` that came in with the request, with the latest value that it has calculated. If the two values are the same, then it is not necessary to return the resource to the client--it already has it. If they are different, then the service will return the latest version of the resource, along with the updated `ETag` value in the header. ### Optimistic Concurrency Optimistic concurrency is a strategy used in HTTP to avoid the "lost update" problem that can occur when multiple clients attempt to update a resource simultaneously. Clients can use ETags returned by the service to specify a _precondition_ for the execution of an update, to ensure that the resource has not been updated since the client last observed it. For example, the client can specify an `If-Match` header with the last ETag value received by the client in an update request. The service processes the update only if the ETag value in the header matches the ETag of the current resource on the server. By computing and returning ETags for your resources, you enable clients to avoid using a strategy where the "last write always wins." ## Returning String Offsets & Lengths (Substrings) Some Azure services return substring offset & length values within a string. For example, the offset & length within a string to a name, email address, or phone number. When a service response includes a string, the client's programming language deserializes that string into that language's internal string encoding. Below are the possible encodings and examples of languages that use each encoding: | Encoding | Example languages | | -------- | ------- | | UTF-8 | Go, Rust, Ruby, PHP | | UTF-16 | JavaScript, Java, C# | | CodePoint (UTF-32) | Python | Because the service doesn't know in what language a client is written and what string encoding that language uses, the service can't return UTF-agnostic offset and length values that the client can use to index within the string. To address this, the service response must include offset & length values for all 3 possible encodings and then the client code must select the encoding required by its language's internal string encoding. For example, if a service response needed to identify offset & length values for "name" and "email" substrings, the JSON response would look like this: ```text { (... other properties not shown...) "fullString": "(...some string containing a name and an email address...)", "name": { "offset": { "utf8": 12, "utf16": 10,       "codePoint": 4    },    "length": {    "uft8": 10,       "utf16": 8,       "codePoint": 2     }   },   "email": {  "offset": {       "utf8": 12,       "utf16": 10,       "codePoint": 4     },     "length": {       "uft8": 10,       "utf16": 8,       "codePoint": 4     }   } } ``` Then, the Go developer, for example, would get the substring containing the name using code like this: ```go var response := client.SomeMethodReturningJSONShownAbove(...) name := response.fullString[ response.name.offset.utf8 : response.name.offset.utf8 + response.name.length.utf8] ``` The service must calculate the offset & length for all 3 encodings and return them because clients find it difficult working with Unicode encodings and how to convert from one encoding to another. In other words, we do this to simplify client development and ensure customer success when isolating a substring. ## Getting Help: The Azure REST API Stewardship Board The Azure REST API Stewardship board is a collection of dedicated architects that are passionate about helping Azure service teams build interfaces that are intuitive, maintainable, consistent, and most importantly, delight our customers. Because APIs affect nearly all downstream decisions, you are encouraged to reach out to the Stewardship board early in the development process. These architects will work with you to apply these guidelines and identify any hidden pitfalls in your design. ### Typical Review Session When engaging with the API REST Stewardship board, your working sessions will generally focus on three areas: - Correctness - Your service should leverage the proper HTTP verbs, return codes, and respect the core constructs of a REST API, e.g. idempotency, that are standard throughout the industry. - Consistency - Your services should look and behave as though they are natural part of the Azure platform. - Well formed - Do your services adhere to REST and Azure standards, e.g. proper return codes, use of headers. - Durable - Your APIs will grow and change over time and leveraging the common patterns described in this document will help you minimize your tech debt and move fast with confidence. It was once said that "all roads lead to Rome." For cloud services, the equivalent might be that "all 'roads' start with your API." That could not be more true than at Microsoft, where client libraries, documentation, and many other artifacts all originate from the fundamental way you choose to expose your service. With careful consideration at the outset of your development effort, the architectural stewardship of the API board, and the thoughtful application of these guidelines, you will be able to produce a consistent, well formed API that will delight our customers. ================================================ FILE: azure/Guidelines.md ================================================ # Microsoft Azure REST API Guidelines ## History
Expand change history | Date | Notes | | ----------- | -------------------------------------------------------------- | | 2025-Mar-28 | Added guidelines about JSON ID and null values | | 2024-Mar-17 | Updated LRO guidelines | | 2024-Jan-17 | Added guidelines on returning string offsets & lengths | | 2023-May-12 | Explain service response for missing/unsupported `api-version` | | 2023-Apr-21 | Update/clarify guidelines on POST method repeatability | | 2023-Apr-07 | Update/clarify guidelines on polymorphism | | 2022-Sep-07 | Updated URL guidelines for DNS Done Right | | 2022-Jul-15 | Update guidance on long-running operations | | 2022-May-11 | Drop guidance on version discovery | | 2022-Mar-29 | Add guidelines about using durations | | 2022-Mar-25 | Update guideline for date values in headers to follow RFC 7231 | | 2022-Feb-01 | Updated error guidance | | 2021-Sep-11 | Add long-running operations guidance | | 2021-Aug-06 | Updated Azure REST Guidelines per Azure API Stewardship Board. | | 2020-Jul-31 | Added service advice for initial versions | | 2020-Mar-31 | 1st public release of the Azure REST API Guidelines |
## Introduction These guidelines apply to Azure service teams implementing _data plane_ APIs. They offer prescriptive guidance that Azure service teams MUST follow ensuring that customers have a great experience by designing APIs meeting these goals: - Developer friendly via consistent patterns & web standards (HTTP, REST, JSON) - Efficient & cost-effective - Work well with SDKs in many programming languages - Customers can create fault-tolerant apps by supporting retries/idempotency/optimistic concurrency - Sustainable & versionable via clear API contracts with 2 requirements: 1. Customer workloads must never break due to a service change 2. Customers can adopt a version without requiring code changes Technology and software is constantly changing and evolving, and as such, this is intended to be a living document. [Open an issue](https://github.com/microsoft/api-guidelines/issues/new/choose) to suggest a change or propose a new idea. Please read the [Considerations for Service Design](./ConsiderationsForServiceDesign.md) for an introduction to the topic of API design for Azure services. *For an existing GA'd service, don't change/break its existing API; instead, leverage these concepts for future APIs while prioritizing consistency within your existing service.* *Note: If you are creating a management plane (ARM) API, please refer to the [Azure Resource Manager Resource Provider Contract](https://github.com/cloud-and-ai-microsoft/resource-provider-contract).* ### Prescriptive Guidance This document offers prescriptive guidance labeled as follows: :white_check_mark: **DO** adopt this pattern. If you feel you need an exception, contact the Azure HTTP/REST Stewardship Board **prior** to implementation. :ballot_box_with_check: **YOU SHOULD** adopt this pattern. If not following this advice, you MUST disclose your reason during the Azure HTTP/REST Stewardship Board review. :heavy_check_mark: **YOU MAY** consider this pattern if appropriate to your situation. No notification to the Azure HTTP/REST Stewardship Board is required. :warning: **YOU SHOULD NOT** adopt this pattern. If not following this advice, you MUST disclose your reason during the Azure HTTP/REST Stewardship Board review. :no_entry: **DO NOT** adopt this pattern. If you feel you need an exception, contact the Azure HTTP/REST Stewardship Board **prior** to implementation. *If you feel you need an exception, or need clarity based on your situation, please contact the Azure HTTP/REST Stewardship Board **prior** to release of your API.* ## Building Blocks: HTTP, REST, & JSON The Microsoft Azure Cloud platform exposes its APIs through the core building blocks of the Internet; namely HTTP, REST, and JSON. This section provides you with a general understanding of how these technologies should be applied when creating your service. ### HTTP Azure services must adhere to the HTTP specification, [RFC 7231](https://tools.ietf.org/html/rfc7231). This section further refines and constrains how service implementors should apply the constructs defined in the HTTP specification. It is therefore, important that you have a firm understanding of the following concepts: - [Uniform Resource Locators (URLs)](#uniform-resource-locators-urls) - [HTTP Request / Response Pattern](#http-request--response-pattern) - [HTTP Query Parameters and Header Values](#http-query-parameters-and-header-values) #### Uniform Resource Locators (URLs) A Uniform Resource Locator (URL) is how developers access the resources of your service. Ultimately, URLs are how developers form a cognitive model of your service's resources. :white_check_mark: **DO** use this URL pattern: ```text https://.../// ``` Where: | Field | Description | - | - | | tenant | Regionally-unique ID representing a tenant (used for isolation, billing, quota enforcement, lifetime of resources, etc.) | region | Identifies the tenant's selected region. This region string MUST match one of the strings in the "Name" column returned from running this Azure CLI's "az account list-locations -o table" | service | Name of the service (ex: blobstore, servicebus, directory, or management) | cloud | Cloud domain name, e.g. `azure.net` (see Azure CLI's "az cloud list") | service‑root | Service-specific path (ex: blobcontainer, myqueue) | resource‑collection | Name of the collection, unabbreviated, pluralized | resource‑id | Id of resource within the resource-collection. This MUST be the raw string/number/guid value with no quoting but properly escaped to fit in a URL segment. :white_check_mark: **DO** use kebab-casing (preferred) or camel-casing for URL path segments. If the segment refers to a JSON field, use camel casing. :white_check_mark: **DO** return `414-URI Too Long` if a URL exceeds 2083 characters :white_check_mark: **DO** treat service-defined URL path segments as case-sensitive. If the passed-in case doesn't match what the service expects, the request **MUST** fail with a `404-Not found` HTTP return code. Some customer-provided path segment values may be compared case-insensitivity if the abstraction they represent is normally compared with case-insensitivity. For example, a UUID path segment of 'c55f6b35-05f6-42da-8321-2af5099bd2a2' should be treated identical to 'C55F6B35-05F6-42DA-8321-2AF5099BD2A2' :white_check_mark: **DO** ensure proper casing when returning a URL in an HTTP response header value or inside a JSON response body :white_check_mark: **DO** restrict the characters in service-defined path segments to `0-9 A-Z a-z - . _ ~`, with `:` allowed only as described below to designate an action operation. :ballot_box_with_check: **YOU SHOULD** restrict the characters allowed in user-specified path segments (i.e. path parameters values) to `0-9 A-Z a-z - . _ ~` (do not allow `:`). :ballot_box_with_check: **YOU SHOULD** keep URLs readable; if possible, avoid UUIDs & %-encoding (ex: Cádiz is %-encoded as C%C3%A1diz) :heavy_check_mark: **YOU MAY** use these other characters in the URL path but they will likely require %-encoding [[RFC 3986](https://datatracker.ietf.org/doc/html/rfc3986#section-2.1)]: `/ ? # [ ] @ ! $ & ' ( ) * + , ; =` :heavy_check_mark: **YOU MAY** support a direct endpoint URL for performance/routing: ```text https://-../... ``` Examples: - Request URL: `https://blobstore.azure.net/contoso.com/account1/container1/blob2` - Response header ([RFC 2557](https://datatracker.ietf.org/doc/html/rfc2557#section-4)): `content-location : https://contoso-dot-com-account1.blobstore.azure.net/container1/blob2` - GUID format: `https://00000000-0000-0000-C000-000000000046-account1.blobstore.azure.net/container1/blob2` :white_check_mark: **DO** return URLs in response headers/bodies in a consistent form regardless of the URL used to reach the resource. Either always a UUID for `` or always a single verified domain. :heavy_check_mark: **YOU MAY** use URLs as values ```text https://api.contoso.com/items?url=https://resources.contoso.com/shoes/fancy ``` #### HTTP Request / Response Pattern The HTTP Request / Response pattern dictates how your API behaves. For example: POST methods that create resources must be idempotent, GET method results may be cached, the If-Modified and ETag headers offer optimistic concurrency. The URL of a service, along with its request/response bodies, establishes the overall contract that developers have with your service. As a service provider, how you manage the overall request / response pattern should be one of the first implementation decisions you make. Cloud applications embrace failure. Therefore, to enable customers to write fault-tolerant applications, _all_ service operations (including POST) **must** be idempotent. Implementing services in an idempotent manner, with an "exactly once" semantic, enables developers to retry requests without the risk of unintended consequences. ##### Exactly Once Behavior = Client Retries & Service Idempotency :white_check_mark: **DO** ensure that _all_ HTTP methods are idempotent. :ballot_box_with_check: **YOU SHOULD** use PUT or PATCH to create a resource as these HTTP methods are easy to implement, allow the customer to name their own resource, and are idempotent. :heavy_check_mark: **YOU MAY** use POST to create a resource but you must make it idempotent and, of course, the response **MUST** return the URL of the created resource with a 201-Created. One way to make POST idempotent is to use the Repeatability-Request-ID & Repeatability-First-Sent headers (See [Repeatability of requests](#repeatability-of-requests)). ##### HTTP Return Codes :white_check_mark: **DO** adhere to the return codes in the following table when the method completes synchronously and is successful: Method | Description | Response Status Code -------|-------------|--------------------- PATCH | Create/Modify the resource with JSON Merge Patch | `200-OK`, `201-Created` PUT | Create/Replace the _whole_ resource | `200-OK`, `201-Created` POST | Create new resource (ID set by service) | `201-Created` with URL of created resource POST | Action | `200-OK` GET | Read (i.e. list) a resource collection | `200-OK` GET | Read the resource | `200-OK` DELETE | Remove the resource | `204-No Content`\; avoid `404-Not Found` :white_check_mark: **DO** return status code `202-Accepted` and follow the guidance in [Long-Running Operations & Jobs](#long-running-operations--jobs) when a PUT, POST, or DELETE method completes asynchronously. :white_check_mark: **DO** treat method names as case sensitive and should always be in uppercase :white_check_mark: **DO** return the state of the resource after a PUT, PATCH, POST, or GET operation with a `200-OK` or `201-Created`. :white_check_mark: **DO** return a `204-No Content` without a resource/body for a DELETE operation (even if the URL identifies a resource that does not exist; do not return `404-Not Found`) :white_check_mark: **DO** return a `200-OK` from a POST Action. Include a body in the response, even if it has not properties, to allow properties to be added in the future if needed. :white_check_mark: **DO** return a `403-Forbidden` when the user does not have access to the resource _unless_ this would leak information about the existence of the resource that should not be revealed for security/privacy reasons, in which case the response should be `404-Not Found`. [Rationale: a `403-Forbidden` is easier to debug for customers, but should not be used if even admitting the existence of things could potentially leak customer secrets.] :white_check_mark: **DO** support caching and optimistic concurrency by honoring the the `If-Match`, `If-None-Match`, if-modified-since, and if-unmodified-since request headers and by returning the ETag and last-modified response headers #### HTTP Query Parameters and Header Values :white_check_mark: **DO** use camel case for query parameter names. Note: Certain legacy query parameter names use kebab-casing and are allowed only for backwards compatibility. Because information in the service URL, as well as the request / response, are strings, there must be a predictable, well-defined scheme to convert strings to their corresponding values. :white_check_mark: **DO** validate all query parameter and request header values and fail the operation with `400-Bad Request` if any value fails validation. Return an error response as described in the [Handling Errors](#handling-errors) section indicating what is wrong so customer can diagnose the issue and fix it themselves. :white_check_mark: **DO** use the following table when translating strings: Data type | Document that string must be --------- | ------- Boolean | true / false (all lowercase) Integer | -253+1 to +253-1 (for consistency with JSON limits on integers [RFC 8259](https://datatracker.ietf.org/doc/html/rfc8259)) Float | [IEEE-754 binary64](https://en.wikipedia.org/wiki/Double-precision_floating-point_format) String | (Un)quoted?, max length, legal characters, case-sensitive, multiple delimiter UUID | 123e4567-e89b-12d3-a456-426614174000 (no {}s, hyphens, case-insensitive) [RFC 4122](https://datatracker.ietf.org/doc/html/rfc4122) Date/Time (Header) | Sun, 06 Nov 1994 08:49:37 GMT [RFC 7231, Section 7.1.1.1](https://datatracker.ietf.org/doc/html/rfc7231#section-7.1.1.1) Date/Time (Query parameter) | YYYY-MM-DDTHH:mm:ss.sssZ (with at most 3 digits of fractional seconds) [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339) Byte array | Base-64 encoded, max length Array | One of a) a comma-separated list of values (preferred), or b) separate `name=value` parameter instances for each value of the array The table below lists the headers most used by Azure services: Header Key | Applies to | Example ------------------- | ---------- | ------------- _authorization_ | Request | Bearer eyJ0...Xd6j (Support Azure Active Directory) _x-ms-useragent_ | Request | (see [Distributed Tracing & Telemetry](#distributed-tracing--telemetry)) traceparent | Request | (see [Distributed Tracing & Telemetry](#distributed-tracing--telemetry)) tracecontext | Request | (see [Distributed Tracing & Telemetry](#distributed-tracing--telemetry)) accept | Request | application/json If-Match | Request | "67ab43" or * (no quotes) (see [Conditional Requests](#conditional-requests)) If-None-Match | Request | "67ab43" or * (no quotes) (see [Conditional Requests](#conditional-requests)) If-Modified-Since | Request | Sun, 06 Nov 1994 08:49:37 GMT (see [Conditional Requests](#conditional-requests)) If-Unmodified-Since | Request | Sun, 06 Nov 1994 08:49:37 GMT (see [Conditional Requests](#conditional-requests)) date | Both | Sun, 06 Nov 1994 08:49:37 GMT (see [RFC 7231, Section 7.1.1.2](https://datatracker.ietf.org/doc/html/rfc7231#section-7.1.1.2)) _content-type_ | Both | application/merge-patch+json _content-length_ | Both | 1024 _x-ms-request-id_ | Response | 4227cdc5-9f48-4e84-921a-10967cb785a0 ETag | Response | "67ab43" (see [Conditional Requests](#conditional-requests)) last-modified | Response | Sun, 06 Nov 1994 08:49:37 GMT _x-ms-error-code_ | Response | (see [Handling Errors](#handling-errors)) _azure-deprecating_ | Response | (see [Deprecating Behavior Notification](#deprecating-behavior-notification)) retry-after | Response | 180 (see [RFC 7231, Section 7.1.3](https://datatracker.ietf.org/doc/html/rfc7231#section-7.1.3)) :white_check_mark: **DO** support all headers shown in _italics_ :white_check_mark: **DO** specify headers using kebab-casing :white_check_mark: **DO** compare request header names using case-insensitivity :white_check_mark: **DO** compare request header values using case-sensitivity if the header name requires it :white_check_mark: **DO** accept date values in headers in HTTP-Date format and return date values in headers in the IMF-fixdate format as defined in [RFC 7231, Section 7.1.1.1](https://datatracker.ietf.org/doc/html/rfc7231#section-7.1.1.1), e.g. "Sun, 06 Nov 1994 08:49:37 GMT". Note: The RFC 7231 IMF-fixdate format is a "fixed-length and single-zone subset" of the RFC 1123 / RFC 5822 format, which means: a) year must be four digits, b) the seconds component of time is required, and c) the timezone must be GMT. :white_check_mark: **DO** create an opaque value that uniquely identifies the request and return this value in the `x-ms-request-id` response header. Your service should include the `x-ms-request-id` value in error logs so that users can submit support requests for specific failures using this value. :no_entry: **DO NOT** fail a request that contains an unrecognized header. Headers may be added by API gateways or middleware and this must be tolerated :no_entry: **DO NOT** use "x-" prefix for custom headers, unless the header already exists in production [[RFC 6648](https://datatracker.ietf.org/doc/html/rfc6648)]. **Additional References** - [StackOverflow - Difference between http parameters and http headers](https://stackoverflow.com/questions/40492782) - [Standard HTTP Headers](https://httpwg.org/specs/rfc7231.html#header.field.registration) - [Why isn't HTTP PUT allowed to do partial updates in a REST API?](https://stackoverflow.com/questions/19732423/why-isnt-http-put-allowed-to-do-partial-updates-in-a-rest-api) ### REpresentational State Transfer (REST) REST is an architectural style with broad reach that emphasizes scalability, generality, independent deployment, reduced latency via caching, and security. When applying REST to your API, you define your service’s resources as a collections of items. These are typically the nouns you use in the vocabulary of your service. Your service's [URLs](#uniform-resource-locators-urls) determine the hierarchical path developers use to perform CRUD (create, read, update, and delete) operations on resources. Note, it's important to model resource state, not behavior. There are patterns, later in these guidelines, that describe how to invoke behavior on your service. See [this article in the Azure Architecture Center](https://docs.microsoft.com/azure/architecture/best-practices/api-design) for a more detailed discussion of REST API design patterns. When designing your service, it is important to optimize for the developer using your API. :white_check_mark: **DO** focus heavily on clear & consistent naming :white_check_mark: **DO** ensure your resource paths make sense :white_check_mark: **DO** simplify operations with few required query parameters & JSON fields :white_check_mark: **DO** establish clear contracts for string values :white_check_mark: **DO** use proper response codes/bodies so customer can diagnose their own problems and fix them without contacting Azure support or the service team #### Resource Schema & Field Mutability :white_check_mark: **DO** use the same JSON schema for PUT request/response, PATCH response, GET response, and POST request/response on a given URL path. The PATCH request schema should contain all the same fields with no required fields. This allows one SDK type for input/output operations and enables the response to be passed back in a request. :white_check_mark: **DO** think about your resource's fields and how they are used: Field Mutability | Service Request's behavior for this field -----------------| ----------------------------------------- **Create** | Service honors field only when creating a resource. Minimize create-only fields so customers don't have to delete & re-create the resource. **Update** | Service honors field when creating or updating a resource **Read** | Service returns this field in a response. If the client passed a read-only field, the service **MUST** fail the request unless the passed-in value matches the resource's current value In addition to the above, a field may be "required" or "optional". A required field is guaranteed to always exist and will typically _not_ become a nullable field in a SDK's data structure. This allows customers to write code without performing a null-check. Because of this, required fields can only be introduced in the 1st version of a service; it is a breaking change to introduce required fields in a later version. In addition, it is a breaking change to remove a required field or make an optional field required or vice versa. :white_check_mark: **DO** make fields simple and maintain a shallow hierarchy. :white_check_mark: **DO** use GET for resource retrieval and return JSON in the response body :white_check_mark: **DO** create and update resources using PATCH [RFC 5789] with JSON Merge Patch [(RFC 7396)](https://datatracker.ietf.org/doc/html/rfc7396) request body. :white_check_mark: **DO** use PUT with JSON for wholesale create/replace operations. **NOTE:** If a v1 client PUTs a resource; any fields introduced in V2+ should be reset to their default values (the equivalent to DELETE followed by PUT). :white_check_mark: **DO** use DELETE to remove a resource. :white_check_mark: **DO** fail an operation with `400-Bad Request` if the request is improperly-formed or if any JSON field name or value is not fully understood by the specific version of the service. Return an error response as described in [Handling errors](#handling-errors) indicating what is wrong so customer can diagnose the issue and fix it themselves. :heavy_check_mark: **YOU MAY** return secret fields via POST **if absolutely necessary**. :no_entry: **DO NOT** return secret fields via GET. For example, do not return `administratorPassword` in JSON. :no_entry: **DO NOT** add fields to the JSON if the value is easily computable from other fields to avoid bloating the body. ##### Create / Update / Replace Processing Rules :white_check_mark: **DO** follow the processing below to create/update/replace a resource: When using this method | if this condition happens | use this response code ---------------------- | ------------------------- | ---------------------- PATCH/PUT | Any JSON field name/value not known/valid to the api-version | `400-Bad Request` PATCH/PUT | Any Read field passed (client can't set Read fields) | `400-Bad Request` | **If the resource does not exist** | PATCH/PUT | Any mandatory Create/Update field missing | `400-Bad Request` PATCH/PUT | Create resource using Create/Update fields | `201-Created` | **If the resource already exists** | PATCH | Any Create field doesn't match current value (allows retries) | `409-Conflict` PATCH | Update resource using Update fields | `200-OK` PUT | Any mandatory Create/Update field missing | `400-Bad Request` PUT | Overwrite resource entirely using Create/Update fields | `200-OK` #### Handling Errors There are 2 kinds of errors: - An error where you expect customer code to gracefully recover at runtime - An error indicating a bug in customer code that is unlikely to be recoverable at runtime; the customer must just fix their code :white_check_mark: **DO** return an `x-ms-error-code` response header with a string error code indicating what went wrong. *NOTE: `x-ms-error-code` values are part of your API contract (because customer code is likely to do comparisons against them) and cannot change in the future.* :heavy_check_mark: **YOU MAY** implement the `x-ms-error-code` values as an enum with `"modelAsString": true` because it's possible add new values over time. In particular, it's only a breaking change if the same conditions result in a *different* top-level error code. :warning: **YOU SHOULD NOT** add new top-level error codes to an existing API without bumping the service version. :white_check_mark: **DO** carefully craft unique `x-ms-error-code` string values for errors that are recoverable at runtime. Reuse common error codes for usage errors that are not recoverable. :heavy_check_mark: **YOU MAY** group common customer code errors into a few `x-ms-error-code` string values. :white_check_mark: **DO** ensure that the top-level error's `code` value is identical to the `x-ms-error-code` header's value. :white_check_mark: **DO** provide a response body with the following structure: **ErrorResponse** : Object Property | Type | Required | Description -------- | ---- | :------: | ----------- `error` | ErrorDetail | ✔ | The top-level error object whose `code` matches the `x-ms-error-code` response header **ErrorDetail** : Object Property | Type | Required | Description -------- | ---- | :------: | ----------- `code` | String | ✔ | One of a server-defined set of error codes. `message` | String | ✔ | A human-readable representation of the error. `target` | String | | The target of the error. `details` | ErrorDetail[] | | An array of details about specific errors that led to this reported error. `innererror` | InnerError | | An object containing more specific information than the current object about the error. _additional properties_ | | | Additional properties that can be useful when debugging. **InnerError** : Object Property | Type | Required | Description -------- | ---- | :------: | ----------- `code` | String | | A more specific error code than was provided by the containing error. `innererror` | InnerError | | An object containing more specific information than the current object about the error. Example: ```json { "error": { "code": "InvalidPasswordFormat", "message": "Human-readable description", "target": "target of error", "innererror": { "code": "PasswordTooShort", "minLength": 6, } } } ``` :white_check_mark: **DO** document the service's top-level error code strings; they are part of the API contract. :heavy_check_mark: **YOU MAY** treat the other fields as you wish as they are _not_ considered part of your service's API contract and customers should not take a dependency on them or their value. They exist to help customers self-diagnose issues. :heavy_check_mark: **YOU MAY** add additional properties for any data values in your error message so customers don't resort to parsing your error message. For example, an error with `"message": "A maximum of 16 keys are allowed per account."` might also add a `"maximumKeys": 16` property. This is not part of your API contract and should only be used for diagnosing problems. *Note: Do not use this mechanism to provide information developers need to rely on in code (ex: the error message can give details about why you've been throttled, but the `Retry-After` should be what developers rely on to back off).* :warning: **YOU SHOULD NOT** document specific error status codes in your OpenAPI/Swagger spec unless the "default" response cannot properly describe the specific error response (e.g. body schema is different). ### JSON :white_check_mark: **DO** use camel case for all JSON field names. Do not upper-case acronyms; use camel case. :white_check_mark: **DO** treat JSON field names with case-sensitivity. :white_check_mark: **DO** treat JSON field values with case-sensitivity. There may be some exceptions but avoid if at all possible. :white_check_mark: **DO** treat JSON field value representing a unique ID as an opaque string value and compare them with case-sensitivity. For example, IDs are frequently [UUIDs](https://en.wikipedia.org/wiki/Universally_unique_identifier), [CUIDs](https://github.com/paralleldrive/cuid2), [Nano ID](https://blog.openapihub.com/en-us/what-is-nano-id-its-difference-from-uuid-as-unique-identifiers/), or other formats. The choice of ID format is a service implementation detail. Customer code should only ever need to get, store, and send these values and should never perform any other kind of parsing or interpretation of ID values. Services, and the clients that access them, may be written in multiple languages. To ensure interoperability, JSON establishes the "lowest common denominator" type system, which is always sent over the wire as UTF-8 bytes. This system is very simple and consists of three types: Type | Description ---- | ----------- Boolean | true/false (always lowercase) Number | Signed floating point (IEEE-754 binary64; int range: -253+1 to +253-1) String | Used for everything else :no_entry: **DO NOT** send JSON fields with a null value from the service to the client. Instead, the service should just not send this field at all (this reduces payload size). Semantically, Azure services treat a missing field and a field with a value of null as identical. :white_check_mark: **DO** accept JSON fields with a null value only for a PATCH operation with a JSON Merge Patch payload. A field with a value of null instructs the service to delete the field. If the field cannot be deleted, then return 400-BadRequest, else return the resource with the deleted field missing from the response payload (see bullet above). :white_check_mark: **DO** use integers within the acceptable range of JSON number. :white_check_mark: **DO** establish a well-defined contract for the format of strings. For example, determine minimum length, maximum length, legal characters, case-(in)sensitive comparisons, etc. Where possible, use standard formats, e.g. RFC 3339 for date/time. :white_check_mark: **DO** use strings formats that are well-known and easily parsable/formattable by many programming languages, e.g. RFC 3339 for date/time. :white_check_mark: **DO** ensure that information exchanged between your service and any client is "round-trippable" across multiple programming languages. :white_check_mark: **DO** use [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339) for date/time. :white_check_mark: **DO** use a fixed time interval to express durations e.g., milliseconds, seconds, minutes, days, etc., and include the time unit in the property name e.g., `backupTimeInMinutes` or `ttlSeconds`. :heavy_check_mark: **YOU MAY** use [RFC 3339 time intervals](https://wikipedia.org/wiki/ISO_8601#Durations) only when users must be able to specify a time interval that may change from month to month or year to year e.g., "P3M" represents 3 months no matter how many days between the start and end dates, or "P1Y" represents 366 days on a leap year. The value must be round-trippable. :white_check_mark: **DO** use [RFC 4122](https://datatracker.ietf.org/doc/html/rfc4122) for UUIDs. :heavy_check_mark: **YOU MAY** use JSON objects to group sub-fields together. :heavy_check_mark: **YOU MAY** use JSON arrays if maintaining an order of values is required. Avoid arrays in other situations since arrays can be difficult and inefficient to work with, especially with JSON Merge Patch where the entire array needs to be read prior to any operation being applied to it. :ballot_box_with_check: **YOU SHOULD** use JSON objects instead of arrays whenever possible. #### Enums & SDKs (Client libraries) It is common for strings to have an explicit set of values. These are often reflected in the OpenAPI definition as enumerations. These are extremely useful for developer tooling, e.g. code completion, and client library generation. However, it is not uncommon for the set of values to grow over the life of a service. For this reason, Microsoft's tooling uses the concept of an "extensible enum," which indicates that the set of values should be treated as only a _partial_ list. This indicates to client libraries and customers that values of the enumeration field should be effectively treated as strings and that undocumented value may returned in the future. This enables the set of values to grow over time while ensuring stability in client libraries and customer code. :ballot_box_with_check: **YOU SHOULD** use extensible enumerations unless you are positive that the symbol set will NEVER change over time. :white_check_mark: **DO** document to customers that new values may appear in the future so that customers write their code today expecting these new values tomorrow. :heavy_check_mark: **YOU MAY** return a value for an extensible enum that is not one of the values defined for the api-version specified in the request. :warning: **YOU SHOULD NOT** accept a value for an extensible enum that is not one of the values defined for the api-version specified in the request. :no_entry: **DO NOT** remove values from your enumeration list as this breaks customer code. #### Polymorphic types Polymorphism types in REST APIs refers to the possibility to use the same property of a request or response to have similar but different shapes. This is commonly expressed as a `oneOf` in JsonSchema or OpenAPI. In order to simplify how to determine which specific type a given request or response payload corresponds to, Azure requires the use of an explicit discriminator field. Note: Polymorphic types can make your service more difficult for nominally typed languages to consume. See the corresponding section in the [Considerations for service design](./ConsiderationsForServiceDesign.md#avoid-surprises) for more information. :white_check_mark: **DO** define a discriminator field indicating the kind of the resource and include any kind-specific fields in the body. Below is an example of JSON for a Rectangle and Circle with a discriminator field named `kind`: **Rectangle** ```json { "kind": "rectangle", "x": 100, "y": 50, "width": 10, "length": 24, "fillColor": "Red", "lineColor": "White", "subscription": { "kind": "free" } } ``` **Circle** ```json { "kind": "circle", "x": 100, "y": 50, "radius": 10, "fillColor": "Green", "lineColor": "Black", "subscription": { "kind": "paid", "expiration": "2024", "invoice": "123456" } } ``` Both Rectangle and Circle have common fields: `kind`, `fillColor`, `lineColor`, and `subscription`. A Rectangle also has `x`, `y`, `width`, and `length` while a Circle has `x`, `y`, and `radius`. The `subscription` is a nested polymorphic type. A `free` subscription has no additional fields and a `paid` subscription has `expiration` and `invoice` fields. The [Azure Naming Guidelines](./ConsiderationsForServiceDesign.md#common-names) recommend that the discriminator field be named `kind`. :ballot_box_with_check: **YOU SHOULD** define the discriminator field of a polymorphic type to be an extensible enum. :warning: **YOU SHOULD NOT** allow an update (patch) to change the discriminator field of a polymorphic type. :warning: **YOU SHOULD NOT** return properties of a polymorphic type that are not defined for the api-version specified in the request. :warning: **YOU SHOULD NOT** have a property of an updatable resource whose value is an array of polymorphic objects. Updating an array property with JSON merge-patch is not version-resilient if the array contains polymorphic types. ## Common API Patterns ### Performing an Action The REST specification is used to model the state of a resource, and is primarily intended to handle CRUD (Create, Read, Update, Delete) operations. However, many services require the ability to perform an action on a resource, e.g. getting the thumbnail of an image or rebooting a VM. It is also sometimes useful to perform an action on a collection. :ballot_box_with_check: **YOU SHOULD** pattern your URL like this to perform an action on a resource **URL Pattern** ```text https://...//:? ``` **Example** ```text https://.../users/Bob:grant?access=read ``` :ballot_box_with_check: **YOU SHOULD** pattern your URL like this to perform an action on a collection **URL Pattern** ```text https://.../:? ``` **Example** ```text https://.../users:grant?access=read ``` Note: To avoid potential collision of actions and resource ids, you should disallow the use of the ":" character in resource ids. :white_check_mark: **DO** use a POST operation for any action on a resource or collection. :white_check_mark: **DO** support the Repeatability-Request-ID & Repeatability-First-Sent request headers if the action needs to be idempotent if retries occur. :white_check_mark: **DO** return a `200-OK` when the action completes synchronously and successfully. :ballot_box_with_check: **YOU SHOULD** use a verb as the `` component of the path. :no_entry: **DO NOT** use an action operation when the operation behavior could reasonably be defined as one of the standard REST Create, Read, Update, Delete, or List operations. ### Collections :white_check_mark: **DO** structure the response to a list operation as an object with a top-level array field containing the set (or subset) of resources. :ballot_box_with_check: **YOU SHOULD** support paging today if there is ever a chance in the future that the number of items can grow to be very large. NOTE: It is a breaking change to add paging in the future :heavy_check_mark: **YOU MAY** expose an operation that lists your resources by supporting a GET method with a URL to a resource-collection (as opposed to a resource-id). **Example Response Body** ```json { "value": [ { "id": "Item 01", "etag": "\"abc\"", "price": 99.95, "size": "Medium" }, { … }, { … }, { "id": "Item 99", "etag": "\"def\"", "price": 59.99, "size": "Large" } ], "nextLink": "{opaqueUrl}" } ``` :white_check_mark: **DO** include the _id_ field and _etag_ field (if supported) for each item as this allows the customer to modify the item in a future operation. Note that the etag field _must_ have escaped quotes embedded within it; for example, "\"abc\"" or W/"\"abc\"". :white_check_mark: **DO** clearly document that resources may be skipped or duplicated across pages of a paginated collection unless the operation has made special provisions to prevent this (like taking a time-expiring snapshot of the collection). :white_check_mark: **DO** return a `nextLink` field with an absolute URL that the client can GET in order to retrieve the next page of the collection. Note: The service is responsible for performing any URL-encoding required on the `nextLink` URL. :white_check_mark: **DO** include any query parameters required by the service in `nextLink`, including `api-version`. :ballot_box_with_check: **YOU SHOULD** use `value` as the name of the top-level array field unless a more appropriate name is available. :no_entry: **DO NOT** return the `nextLink` field at all when returning the last page of the collection. :no_entry: **DO NOT** return the `nextLink` field with a value of null. :warning: **YOU SHOULD NOT** return a `count` of all objects in the collection as this may be expensive to compute. #### Query options :heavy_check_mark: **YOU MAY** support the following query parameters allowing customers to control the list operation: Parameter name | Type | Description ------------------- | ---- | ----------- `filter` | string | an expression on the resource type that selects the resources to be returned `orderby` | string array | a list of expressions that specify the order of the returned resources `skip` | integer | an offset into the collection of the first resource to be returned `top` | integer | the maximum number of resources to return from the collection `maxpagesize` | integer | the maximum number of resources to include in a single response `select` | string array | a list of field names to be returned for each resource `expand` | string array | a list of the related resources to be included in line with each resource :white_check_mark: **DO** return an error if the client specifies any parameter not supported by the service. :white_check_mark: **DO** treat these query parameter names as case-sensitive. :white_check_mark: **DO** apply `select` or `expand` options after applying all the query options in the table above. :white_check_mark: **DO** apply the query options to the collection in the order shown in the table above. :no_entry: **DO NOT** prefix any of these query parameter names with "$" (the convention in the [OData standard](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_QueryingCollections)). #### filter :heavy_check_mark: **YOU MAY** support filtering of the results of a list operation with the `filter` query parameter. The value of the `filter` query parameter is an expression involving the fields of the resource that produces a Boolean value. This expression is evaluated for each resource in the collection and only items where the expression evaluates to true are included in the response. :white_check_mark: **DO** omit all resources from the collection for which the filter expression evaluates to false or to null, or references properties that are unavailable due to permissions. Example: return all Products whose Price is less than $10.00 ```text GET https://api.contoso.com/products?filter=price lt 10.00 ``` ##### filter operators :heavy_check_mark: **YOU MAY** support the following operators in filter expressions: Operator | Description | Example -------------------- | --------------------- | ----------------------------------------------------- **Comparison Operators** | | eq | Equal | city eq 'Redmond' ne | Not equal | city ne 'London' gt | Greater than | price gt 20 ge | Greater than or equal | price ge 10 lt | Less than | price lt 20 le | Less than or equal | price le 100 **Logical Operators** | | and | Logical and | price le 200 and price gt 3.5 or | Logical or | price le 3.5 or price gt 200 not | Logical negation | not price le 3.5 **Grouping Operators** | | ( ) | Precedence grouping | (priority eq 1 or city eq 'Redmond') and price gt 100 :white_check_mark: **DO** respond with an error message as defined in the [Handling Errors](#handling-errors) section if a client includes an operator in a filter expression that is not supported by the operation. :white_check_mark: **DO** use the following operator precedence for supported operators when evaluating filter expressions. Operators are listed by category in order of precedence from highest to lowest. Operators in the same category have equal precedence and should be evaluated left to right: | Group | Operator | Description | ----------------|----------|------------ | Grouping | ( ) | Precedence grouping | | Unary | not | Logical Negation | | Relational | gt | Greater Than | | | ge | Greater than or Equal | | | lt | Less Than | | | le | Less than or Equal | | Equality | eq | Equal | | | ne | Not Equal | | Conditional AND | and | Logical And | | Conditional OR | or | Logical Or | :heavy_check_mark: **YOU MAY** support orderby and filter functions such as concat and contains. For more information, see [odata Canonical Functions](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#_Toc31360979). ##### Operator examples The following examples illustrate the use and semantics of each of the logical operators. Example: all products with a name equal to 'Milk' ```text GET https://api.contoso.com/products?filter=name eq 'Milk' ``` Example: all products with a name not equal to 'Milk' ```text GET https://api.contoso.com/products?filter=name ne 'Milk' ``` Example: all products with the name 'Milk' that also have a price less than 2.55: ```text GET https://api.contoso.com/products?filter=name eq 'Milk' and price lt 2.55 ``` Example: all products that either have the name 'Milk' or have a price less than 2.55: ```text GET https://api.contoso.com/products?filter=name eq 'Milk' or price lt 2.55 ``` Example: all products that have the name 'Milk' or 'Eggs' and have a price less than 2.55: ```text GET https://api.contoso.com/products?filter=(name eq 'Milk' or name eq 'Eggs') and price lt 2.55 ``` #### orderby :heavy_check_mark: **YOU MAY** support sorting of the results of a list operation with the `orderby` query parameter. *NOTE: It is unusual for a service to support `orderby` because it is very expensive to implement as it requires sorting the entire large collection before being able to return any results.* The value of the `orderby` parameter is a comma-separated list of expressions used to sort the items. A special case of such an expression is a property path terminating on a primitive property. Each expression in the `orderby` parameter value may include the suffix "asc" for ascending or "desc" for descending, separated from the expression by one or more spaces. :white_check_mark: **DO** sort the collection in ascending order on an expression if "asc" or "desc" is not specified. :white_check_mark: **DO** sort NULL values as "less than" non-NULL values. :white_check_mark: **DO** sort items by the result values of the first expression, and then sort items with the same value for the first expression by the result value of the second expression, and so on. :white_check_mark: **DO** use the inherent sort order for the type of the field. For example, date-time values should be sorted chronologically and not alphabetically. :white_check_mark: **DO** respond with an error message as defined in the [Handling Errors](#handling-errors) section if the client requests sorting by a field that is not supported by the operation. For example, to return all people sorted by name in ascending order: ```text GET https://api.contoso.com/people?orderby=name ``` For example, to return all people sorted by name in descending order and a secondary sort order of hireDate in ascending order. ```text GET https://api.contoso.com/people?orderby=name desc,hireDate ``` Sorting MUST compose with filtering such that: ```text GET https://api.contoso.com/people?filter=name eq 'david'&orderby=hireDate ``` will return all people whose name is David sorted in ascending order by hireDate. ##### Considerations for sorting with pagination :white_check_mark: **DO** use the same filtering options and sort order for all pages of a paginated list operation response. ##### skip :white_check_mark: **DO** define the `skip` parameter as an integer with a default and minimum value of 0. :heavy_check_mark: **YOU MAY** allow clients to pass the `skip` query parameter to specify an offset into collection of the first resource to be returned. ##### top :heavy_check_mark: **YOU MAY** allow clients to pass the `top` query parameter to specify the maximum number of resources to return from the collection. If supporting `top`: :white_check_mark: **DO** define the `top` parameter as an integer with a minimum value of 1. If not specified, `top` has a default value of infinity. :white_check_mark: **DO** return the collection's `top` number of resources (if available), starting from `skip`. ##### maxpagesize :heavy_check_mark: **YOU MAY** allow clients to pass the `maxpagesize` query parameter to specify the maximum number of resources to include in a single page response. :white_check_mark: **DO** define the `maxpagesize` parameter as an optional integer with a default value appropriate for the collection. :white_check_mark: **DO** make clear in documentation of the `maxpagesize` parameter that the operation may choose to return fewer resources than the value specified. ### API Versioning Azure services need to change over time. However, when changing a service, there are 2 requirements: 1. Already-running customer workloads must not break due to a service change 2. Customers can adopt a new service version without requiring any code changes (Of course, the customer must modify code to leverage any new service features.) *NOTE: the [Azure Breaking Change Policy](http://aka.ms/AzBreakingChangesPolicy) has tables (section 5) describing what kinds of changes are considered breaking. Breaking changes are allowable (due to security/compliance/etc.) if approved by the [Azure Breaking Change Reviewers](mailto:azbreakchangereview@microsoft.com) but only following ample communication to customers and a lengthy deprecation period.* :white_check_mark: **DO** review any API changes with the Azure API Stewardship Board Clients specify the version of the API to be used in every request to the service, even requests to an `Operation-Location` or `nextLink` URL returned by the service. :white_check_mark: **DO** use a required query parameter named `api-version` on every operation for the client to specify the API version. :white_check_mark: **DO** use `YYYY-MM-DD` date values, with a `-preview` suffix for preview versions, as the valid values for `api-version`. :white_check_mark: **DO** return HTTP 400 with error code "MissingApiVersionParameter" and message "The api-version query parameter (?api-version=) is required for all requests" if client omits the `api-version` query parameter. :white_check_mark: **DO** return HTTP 400 with error code "UnsupportedApiVersionValue" and message "Unsupported api-version '{0}'. The supported api-versions are '{1}'." if client passes an `api-version` value unrecognized by the service. For the supported api-versions, just list all the stable versions still supported by the service and just the latest public preview version (if any). ```text PUT https://service.azure.com/users/Jeff?api-version=2021-06-04 ``` :white_check_mark: **DO** use a later date for each new preview version When releasing a new preview, the service team may completely retire any previous preview versions after giving customers at least 90 days to upgrade their code :no_entry: **DO NOT** introduce any breaking changes into the service. :no_entry: **DO NOT** include a version number segment in any operation path. :no_entry: **DO NOT** use the same date when transitioning from a preview API to a GA API. If the preview `api-version` is '2021-06-04-preview', the GA version of the API **must be** a date later than 2021-06-04 :no_entry: **DO NOT** keep a preview feature in preview for more than 1 year; it must go GA (or be removed) within 1 year after introduction. #### Use Extensible Enums While removing a value from an enum is a breaking change, adding value to an enum can be handled with an _extensible enum_. An extensible enum is a string value that has been marked with a special marker - setting `modelAsString` to true within an `x-ms-enum` block. For example: ```json "createdByType": { "type": "string", "description": "The type of identity that created the resource.", "enum": [ "User", "Application", "ManagedIdentity", "Key" ], "x-ms-enum": { "name": "createdByType", "modelAsString": true } } ``` :ballot_box_with_check: **YOU SHOULD** use extensible enums unless you are positive that the symbol set will **NEVER** change over time. ### Deprecating Behavior Notification When the [API Versioning](#api-versioning) guidance above cannot be followed and the [Azure Breaking Change Reviewers](mailto:azbreakchangereview@microsoft.com) approve a breaking change to a specific API version it must be communicated to its callers. The API version that is being deprecated must add the `azure-deprecating` response header with a semicolon-delimited string notifying the caller what is being deprecated, when it will no longer function, and a URL linking to more information such as what new operation they should use instead. The purpose is to inform customers (when debugging/logging responses) that they must take action to modify their call to the service's operation and use a newer API version or their call will soon stop working entirely. It is not expected that client code will examine/parse this header's value in any way; it is purely informational to a human being. The string is _not_ part of an API contract (except for the semi-colon delimiters) and may be changed/improved at any time without incurring a breaking change. :white_check_mark: **DO** include the `azure-deprecating` header in the operation's response _only if_ the operation will stop working in the future and the client _must take_ action in order for it to keep working. > NOTE: We do not want to scare customers with this header. :white_check_mark: **DO** make the header's value a semicolon-delimited string indicating a set of deprecations where each one indicates what is deprecating, when it is deprecating, and a URL to more information. Deprecations should use the following pattern: ```text will retire on () ``` Multiple deprecations are allowed, semicolon delimited. Where the following placeholders should be provided: - `description`: a human-readable description of what is being deprecated - `date`: the target date that this will be deprecated. This should be expressed following the format in [ISO 8601](https://datatracker.ietf.org/doc/html/rfc7231#section-7.1.1.1), e.g. "2022-10-31". - `url`: a fully qualified url that the user can follow to learn more about what is being deprecated, preferably to Azure Updates. For example: - `azure-deprecating: API version 2009-27-07 will retire on 2022-12-01 (https://azure.microsoft.com/updates/video-analyzer-retirement);TLS 1.0 & 1.1 will retire on 2020-10-30 (https://azure.microsoft.com/updates/azure-active-directory-registration-service-is-ending-support-for-tls-10-and-11/)` - `azure-deprecating: Model version 2021-01-15 used in Sentiment analysis will retire on 2022-12-01 (https://aka.ms/ta-modelversions?sentimentAnalysis)` - `azure-deprecating: TLS 1.0 & 1.1 support will retire on 2022-10-01 (https://devblogs.microsoft.com/devops/deprecating-weak-cryptographic-standards-tls-1-0-and-1-1-in-azure-devops-services/)` :no_entry: **DO NOT** introduce this header without approval from [Azure Breaking Change Reviewers](mailto:azbreakchangereview@microsoft.com) and an official deprecation notice on [Azure Updates](https://azure.microsoft.com/updates/). ### Repeatability of requests Fault tolerant applications require that clients retry requests for which they never got a response, and services must handle these retried requests idempotently. In Azure, all HTTP operations are naturally idempotent except for POST used to create a resource and [POST when used to invoke an action]( https://github.com/microsoft/api-guidelines/blob/vNext/azure/Guidelines.md#performing-an-action). :ballot_box_with_check: **YOU SHOULD** support repeatable requests as defined in [OASIS Repeatable Requests Version 1.0](https://docs.oasis-open.org/odata/repeatable-requests/v1.0/repeatable-requests-v1.0.html) for POST operations to make them retriable. - The tracked time window (difference between the `Repeatability-First-Sent` value and the current time) **MUST** be at least 5 minutes. - Document the POST operation's support for the `Repeatability-First-Sent`, `Repeatability-Request-ID`, and `Repeatability-Result` headers in the API contract and documentation. - Any operation that does not support repeatability headers should return a 501 (Not Implemented) response for any request that contains valid repeatability request headers. ### Long-Running Operations & Jobs A _long-running operation (LRO)_ is typically an operation that should execute synchronously, but due to services not wanting to maintain long-lived connections (>1 seconds) and load-balancer timeouts, the operation must execute asynchronously. For this pattern, the client initiates the operation on the service, and then the client repeatedly polls the service (via another API call) to track the operation's progress/completion. LROs are always started by 1 logical client and may be polled (have their status checked) by the same client, another client, or even multiple clients/browsers. An example would be a dashboard or portal that shows all the operations along with their status. See the [Long Running Operations section](./ConsiderationsForServiceDesign.md#long-running-operations) in Considerations for Service Design for an introduction to the design of long-running operations. :white_check_mark: **DO** implement an operation as an LRO if the 99th percentile response time is greater than 1 second and when the client should poll the operation before making more progress. :no_entry: **DO NOT** implement PATCH as an LRO. If LRO update semantics are required, implement it using the [LRO POST action pattern](#lro-existing-resource) . #### Patterns to Initiate a Long-Running Operation :white_check_mark: **DO** perform as much validation as practical when initiating an LRO operation to alert clients of errors early. :white_check_mark: **DO** include an `operation-location` response header with the absolute URL of the status monitor for the operation. :ballot_box_with_check: **YOU SHOULD** include the `api-version` query parameter in the `operation-location` response header with the same version passed on the initial request but expect a client to change the `api-version` value to whatever a new/different client desires it to be. :white_check_mark: **DO** include response headers with any additional values needed for a [GET polling request](#lro-poll) to the status monitor (e.g. location). #### Create or replace operation with additional long-running processing :white_check_mark: **DO** use the following pattern when implementing an operation that creates or replaces a resource that involves additional long-running processing: ```text PUT /UrlToResourceBeingCreated?api-version= operation-id: ``` The response must look like this: ```text 201 Created operation-id: operation-location: https://operations/?api-version= ``` The request and response body schemas must be identical and represent the resource. The PUT creates or replaces the resource immediately and returns but the additional long-running processing can take time to complete. For an idempotent PUT (same `operation-id` or same request body within some short time window), the service should return the same response as shown above. For a non-idempotent PUT, the service can choose to overwrite the existing resource (as if the resource were deleted) or the service can return `409-Conflict` with the error's code property indicated why this PUT operation failed. :white_check_mark: **DO** allow the client to pass an `Operation-Id` header with a ID for the status monitor for the operation. If the `Operation-Id` header is not specified, the service may create an operation-id (typically a GUID) and return it via the `operation-id` and `operation-location` response headers; in this case the service must figure out how to deal with retries/idempotency. :white_check_mark: **DO** generate an ID (typically a GUID) for the status monitor if the `Operation-Id` header was not passed by the client. :white_check_mark: **DO** fail a request with a `409-Conflict` if the `Operation-Id` header matches an existing operation unless the request is identical to the prior request (a retry scenario). :white_check_mark: **DO** perform as much validation as practical when initiating the operation to alert clients of errors early. :white_check_mark: **DO** return a `201-Created` status code for create or `200-OK` for replace from the initial request with a representation of the resource, if the resource was created or replaced successfully. :white_check_mark: **DO** include an `Operation-Id` header in the response with the ID of the status monitor for the operation. :ballot_box_with_check: **YOU SHOULD** include an `Operation-Location` header in the response with the absolute URL of the status monitor for the operation. :ballot_box_with_check: **YOU SHOULD** include the `api-version` query parameter in the `Operation-Location` header with the same version passed on the initial request. #### DELETE LRO pattern :white_check_mark: **DO** use the following pattern when implementing an LRO operation to delete a resource: ```text DELETE /UrlToResourceBeingDeleted?api-version= operation-id: ``` The response must look like this: ```text 202 Accepted operation-id: operation-location: https://operations/ ``` Consistent with non-LRO DELETE operations, if a request body is specified, return `400-Bad Request`. :white_check_mark: **DO** allow the client to pass an `Operation-Id` header with an ID for the operation's status monitor. :white_check_mark: **DO** generate an ID (typically a GUID) for the status monitor if the `Operation-Id` header was not passed by the client. :white_check_mark: **DO** return a `202-Accepted` status code from the request that initiates an LRO if the processing of the operation was successfully initiated. :warning: **YOU SHOULD NOT** return any other `2xx` status code from the initial request of an LRO -- return `202-Accepted` and a status monitor even if processing was completed before the initiating request returns. #### LRO action on a resource pattern :white_check_mark: **DO** use the following pattern when implementing an LRO action operating on an existing resource: ```text POST /UrlToExistingResource:?api-version=& operation-id: ` ``` The response must look like this: ```text 202 Accepted operation-id: operation-location: https://operations/ ``` The request body contains information to be used to execute the action. For an idempotent POST (same `operation-id` and request body within some short time window), the service should return the same response as the initial request. For a non-idempotent POST, the service can treat the POST operation as idempotent (if performed within a short time window) or can treat the POST operation as initiating a brand new LRO action operation. :no_entry: **DO NOT** use a long-running POST to create a resource -- use PUT as described above. :white_check_mark: **DO** allow the client to pass an `Operation-Id` header with an ID for the operation's status monitor. :white_check_mark: **DO** generate an ID (typically a GUID) for the status monitor if the `Operation-Id` header was not passed by the client. :white_check_mark: **DO** fail a request with a `409-Conflict` if the `Operation-Id` header matches an existing operation unless the request is identical to the prior request (a retry scenario). :white_check_mark: **DO** return a `202-Accepted` status code from the request that initiates an LRO action on a resource if the processing of the operation was successfully initiated. :warning: **YOU SHOULD NOT** return any other `2xx` status code from the initial request of an LRO -- return `202-Accepted` and a status monitor even if processing was completed before the initiating request returns. :white_check_mark: **DO** return a status monitor in the response body as described in [Obtaining status and results of long-running operations](#obtaining-status-and-results-of-long-running-operations). #### LRO action with no related resource pattern :white_check_mark: **DO** use the following pattern when implementing an LRO action not related to a specific resource (such as a batch operation): ```text PUT /?api-version= > ``` The response must look like this: ```text 201 Created operation-location: ``` :ballot_box_with_check: **YOU SHOULD** define a unique operation endpoint for each LRO action with no related resource. :white_check_mark: **DO** require the `Operation-Id` as the final path segment in the URL. Note: The `operation-id` URL segment (not header) is *required*, forcing the client to specify the status monitor's resource ID and is also used for retries/idempotency. :white_check_mark: **DO** return a `201 Created` status code with an `operation-location` response header if the LRO Action operation was accepted for processing. :white_check_mark: **DO** return a status monitor in the response body that contains the operation status, request parameters, and when the operation completes either the operation result or error. Note: Since all request parameters must be present in the status monitor, the request and response body of the PUT can be defined with a single schema. :ballot_box_with_check: **YOU SHOULD** return the status monitor for an operation for a subsequent GET on the URL that initiates the LRO, and use this endpoint as the status monitor URL returned in the `operation-location` response header. #### The Status Monitor Resource All patterns that initiate a LRO either implicitly or explicitly create a [Status Monitor resource](https://datatracker.ietf.org/doc/html/rfc7231#section-6.3.3) in the service's `operations` collection. :white_check_mark: **DO** return a status monitor in the response body that conforms with the following structure: Property | Type | Required | Description -------- | ----------- | :------: | ----------- `id` | string | true | The unique id of the operation `kind` | string enum | true(*) | The kind of operation `status` | string enum | true | The operation's current status: "NotStarted", "Running", "Succeeded", "Failed", and "Canceled" `error` | ErrorDetail | | If `status`=="Failed", contains reason for failure `result` | object | | If `status`=="Succeeded" && Action LRO (POST or PUT), contains success result if needed additional
properties | | | Additional named or dynamic properties of the operation (*): When a status monitor endpoint supports multiple operations with different result structures or additional properties, the status monitor **must** be polymorphic -- it **must** contain a required `kind` property that indicates the kind of long-running operation. #### Obtaining status and results of long-running operations :white_check_mark: **DO** use the following pattern to allow clients to poll the current state of a Status Monitor resource: ```text GET /?api-version= ``` The response must look like this: ```text 200 OK retry-after: (if status not terminal) ``` :white_check_mark: **DO** support the GET method on the status monitor endpoint that returns a `200-OK` response with the current state of the status monitor. :ballot_box_with_check: **YOU SHOULD** allow any valid value of the `api-version` query parameter to be used in the GET operation on the status monitor. - Note: Clients may replace the value of `api-version` in the `operation-location` URL with a value appropriate for their application. Remember that the client initiating the LRO may not be the same client polling the LRO's status. :white_check_mark: **DO** include the `id` of the operation and any other values needed for the client to form a GET request to the status monitor (e.g. a `location` path parameter). :white_check_mark: **DO** include the `result` property (if any) in the status monitor for a POST action-type long-running operation when the operation completes successfully. :no_entry: **DO NOT** include a `result` property in the status monitor for a long-running operation that is not an action-type long-running operation. :white_check_mark: **DO** include a `retry-after` header in the response if the operation is not complete. The value of this header should be an integer number of seconds that the client should wait before polling the status monitor again. :white_check_mark: **DO** retain the status monitor resource for some publicly documented period of time (at least 24 hours) after the operation completes. #### Pattern to List Status Monitors Use the following patterns to allow clients to list Status Monitor resources. :ballot_box_with_check: **YOU MAY** support a GET method on any status monitor collection URL that returns a list of the status monitors in that collection. :ballot_box_with_check: **YOU SHOULD** support a list operation for any status monitor collection that includes status monitors for LRO Actions with no related resource. :ballot_box_with_check: **YOU SHOULD** support the `filter` query parameter on the list operation for any polymorphic status monitor collection and support filtering on the `kind` value of the status monitor. For example, the following request should return all status monitor resources whose `kind` is either "VMInitializing" *or* "VMRebooting" and whose status is "NotStarted" *or* "Succeeded". ```text GET /operations?filter=(kind eq 'VMInitializing' or kind eq 'VMRebooting') and (status eq 'NotStarted' or status eq 'Succeeded') ``` ### Bring your own Storage (BYOS) Many services need to store and retrieve data files. For this scenario, the service should not implement its own storage APIs and should instead leverage the existing Azure Storage service. When doing this, the customer "owns" the storage account and just tells your service to use it. Colloquially, we call this Bring Your Own Storage as the customer is bringing their storage account to another service. BYOS provides significant benefits to service implementors: security, performance, uptime, etc. And, of course, most Azure customers are already familiar with the Azure Storage service. While Azure Managed Storage may be easier to get started with, as your service evolves and matures, BYOS provides the most flexibility and implementation choices. Further, when designing your APIs, be cognizant of expressing storage concepts and how clients will access your data. For example, if you are working with blobs, then you should not expose the concept of folders. :white_check_mark: **DO** use the Bring Your Own Storage pattern. :white_check_mark: **DO** use a blob prefix for a logical folder (avoid terms such as `directory`, `folder`, or `path`). :no_entry: **DO NOT** require a fresh container per operation. :white_check_mark: **DO** use managed identity and Role Based Access Control ([RBAC](https://docs.microsoft.com/azure/role-based-access-control/overview)) as the mechanism allowing customers to grant permission to their Storage account to your service. :white_check_mark: **DO** Add RBAC roles for every service operation that requires accessing Storage scoped to the exact permissions. :white_check_mark: **DO** Ensure that RBAC roles are backward compatible, and specifically, do not take away permissions from a role that would break the operation of the service. Any change of RBAC roles that results in a change of the service behavior is considered a breaking change. #### Handling 'downstream' errors It is not uncommon to rely on other services, e.g. storage, when implementing your service. Inevitably, the services you depend on will fail. In these situations, you can include the downstream error code and text in the inner-error of the response body. This provides a consistent pattern for handling errors in the services you depend upon. :white_check_mark: **DO** include error from downstream services as the 'inner-error' section of the response body. #### Working with files Generally speaking, there are two patterns that you will encounter when working with files; single file access, and file collections. ##### Single file access Designing an API for accessing a single file, depending on your scenario, is relatively straight forward. :heavy_check_mark: **YOU MAY** use a Shared Access Signature [SAS](https://docs.microsoft.com/azure/storage/common/storage-sas-overview) to provide access to a single file. SAS is considered the minimum security for files and can be used in lieu of, or in addition to, RBAC. :ballot_box_with_check: **YOU SHOULD** if using HTTP (not HTTPS) document to users that all information is sent over the wire in clear text. :white_check_mark: **DO** return an HTTP status code representing the result of your service operation's behavior. :white_check_mark: **DO** include the Storage error information in the 'inner-error' section of an error response if the error was the result of an internal Storage operation failure. This helps the client determine the underlying cause of the error, e.g.: a missing storage object or insufficient permissions. :white_check_mark: **DO** allow the customer to specify a URL path to a single Storage object if your service requires access to a single file. :heavy_check_mark: **YOU MAY** allow the customer to provide a [last-modified](https://datatracker.ietf.org/doc/html/rfc7232#section-2.2) timestamp (in RFC 7231 format) for read-only files. This allows the client to specify exactly which version of the files your service should use. When reading a file, your service passes this timestamp to Azure Storage using the [if-unmodified-since](https://datatracker.ietf.org/doc/html/rfc7232#section-3.4) request header. If the Storage operation fails with 412, the Storage object was modified and your service operation should return an appropriate 4xx status code and return the Storage error in your operation's 'inner-error' (see guideline above). :white_check_mark: **DO** allow the customer to specify a URL path to a logical folder (via prefix and delimiter) if your service requires access to multiple files (within this folder). For more information, see [List Blobs API](https://docs.microsoft.com/rest/api/storageservices/list-blobs) :heavy_check_mark: **YOU MAY** offer an `extensions` field representing an array of strings indicating file extensions of desired blobs within the logical folder. A common pattern when working with multiple files is for your service to receive requests that contain the location(s) of files to process ("input") and a location(s) to place any files that result from processing ("output"). Note: the terms "input" and "output" are just examples; use terms more appropriate to your service's domain. For example, a service's request body to configure BYOS may look like this: ```json { "input":{ "location": "https://mycompany.blob.core.windows.net/documents/english/?", "delimiter": "/", "extensions" : [ ".bmp", ".jpg", ".tif", ".png" ], "lastModified": "Wed, 21 Oct 2015 07:28:00 GMT" }, "output":{ "location": "https://mycompany.blob.core.windows.net/documents/spanish/?", "delimiter":"/" } } ``` Depending on the requirements of the service, there can be any number of "input" and "output" sections, including none. :white_check_mark: **DO** include a JSON object that has string values for "location" and "delimiter". For "location", the customer must pass a URL to a blob prefix which represents a directory. For "delimiter", the customer must specify the delimiter character they desire to use in the location URL; typically "/" or "\". :heavy_check_mark: **YOU MAY** support the "lastModified" field for input directories (see guideline above). :white_check_mark: **DO** support a "location" URL with a container-scoped SAS that has a minimum of `listing` and `read` permissions for input directories. :white_check_mark: **DO** support a "location" URL with a container-scoped SAS that has a minimum of `write` permissions for output directories. ### Conditional Requests The [HTTP Standard][] defines request headers that clients may use to specify a _precondition_ for execution of an operation. These headers allow clients to implement efficient caching mechanisms and avoid data loss in the event of concurrent updates to a resource. The headers that specify conditional execution are `If-Match`, `If-None-Match`, `If-Modified-Since`, `If-Unmodified-Since`, and `If-Range`. [HTTP Standard]: https://datatracker.ietf.org/doc/html/rfc9110 :white_check_mark: **DO** honor any precondition headers received as part of a client request. The HTTP Standard does not allow precondition headers to be ignored, as it can be unsafe to do so. :white_check_mark: **DO** return the appropriate precondition failed error response if the service cannot verify the truth of the precondition. Note: The Azure Breaking Changes review board will allow a GA service that currently ignores precondition headers to begin honoring them in a new API version without a formal breaking change notification. The potential for disruption to customer applications is low and outweighed by the value of conforming to HTTP standards. While conditional requests can be implemented using last modified dates, entity tags ("ETags") are strongly preferred since last modified dates cannot distinguish updates made less than a second apart. :ballot_box_with_check: **YOU SHOULD** return an `ETag` with any operation returning the resource or part of a resource or any update of the resource (whether the resource is returned or not). #### Conditional Request behavior This section gives a summary of the processing to perform for precondition headers. See the [Conditional Requests section of the HTTP Standard][] for details on how and when to evaluate these headers. [Conditional Requests section of the HTTP Standard]: https://datatracker.ietf.org/doc/html/rfc9110#name-conditional-requests :white_check_mark: **DO** adhere to the following table for processing a GET request with precondition headers: | GET Request | Return code | Response | |:------------|:------------|:--------------------------------------------| | ETag value = `If-None-Match` value | `304-Not Modified` | no additional information | | ETag value != `If-None-Match` value | `200-OK` | Response body include the serialized value of the resource (typically JSON) | For more control over caching, please refer to the `cache-control` [HTTP header](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control). :white_check_mark: **DO** adhere to the following table for processing a PUT, PATCH, or DELETE request with precondition headers: | Operation | Header | Value | ETag check | Return code | Response | |:------------|:--------------|:------|:-----------|:------------|----------------| | PATCH / PUT | `If-None-Match` | * | check for _any_ version of the resource ('*' is a wildcard used to match anything), if none are found, create the resource. | `200-OK` or
`201-Created`
| Response header MUST include the new `ETag` value. Response body SHOULD include the serialized value of the resource (typically JSON). | | PATCH / PUT | `If-None-Match` | * | check for _any_ version of the resource, if one is found, fail the operation | `412-Precondition Failed` | Response body SHOULD return the serialized value of the resource (typically JSON) that was passed along with the request.| | PATCH / PUT | `If-Match` | value of ETag | value of `If-Match` equals the latest ETag value on the server, confirming that the version of the resource is the most current | `200-OK` or
`201-Created`
| Response header MUST include the new `ETag` value. Response body SHOULD include the serialized value of the resource (typically JSON). | | PATCH / PUT | `If-Match` | value of ETag | value of `If-Match` header DOES NOT equal the latest ETag value on the server, indicating a change has ocurred since after the client fetched the resource| `412-Precondition Failed` | Response body SHOULD return the serialized value of the resource (typically JSON) that was passed along with the request.| | DELETE | `If-Match` | value of ETag | value matches the latest value on the server | `204-No Content` | Response body SHOULD be empty. | | DELETE | `If-Match` | value of ETag | value does NOT match the latest value on the server | `412-Preconditioned Failed` | Response body SHOULD be empty.| #### Computing ETags The strategy that you use to compute the `ETag` depends on its semantic. For example, it is natural, for resources that are inherently versioned, to use the version as the value of the `ETag`. Another common strategy for determining the value of an `ETag` is to use a hash of the resource. If a resource is not versioned, and unless computing a hash is prohibitively expensive, this is the preferred mechanism. :ballot_box_with_check: **YOU SHOULD** use a hash of the representation of a resource rather than a last modified/version number While it may be tempting to use a revision/version number for the resource as the ETag, it interferes with client's ability to retry update requests. If a client sends a conditional update request, the service acts on the request, but the client never receives a response, a subsequent identical update will be seen as a conflict even though the retried request is attempting to make the same update. :ballot_box_with_check: **YOU SHOULD**, if using a hash strategy, hash the entire resource. :ballot_box_with_check: **YOU SHOULD**, if supporting range requests, use a strong ETag in order to support caching. :heavy_check_mark: **YOU MAY** use or, include, a timestamp in your resource schema. If you do this, the timestamp shouldn't be returned with more than subsecond precision, and it SHOULD be consistent with the data and format returned, e.g. consistent on milliseconds. :heavy_check_mark: **YOU MAY** consider Weak ETags if you have a valid scenario for distinguishing between meaningful and cosmetic changes or if it is too expensive to compute a hash. :white_check_mark: **DO**, when supporting multiple representations (e.g. Content-Encodings) for the same resource, generate different ETag values for the different representations. ### Returning String Offsets & Lengths (Substrings) All string values in JSON are inherently Unicode and UTF-8 encoded, but clients written in a high-level programming language must work with strings in that language's string encoding, which may be UTF-8, UTF-16, or CodePoints (UTF-32). When a service response includes a string offset or length value, it should specify these values in all 3 encodings to simplify client development and ensure customer success when isolating a substring. See the [Returning String Offsets & Lengths] section in Considerations for Service Design for more detail, including an example JSON response containing string offset and length fields. [Returning String Offsets & Lengths]: https://github.com/microsoft/api-guidelines/blob/vNext/azure/ConsiderationsForServiceDesign.md#returning-string-offsets--lengths-substrings :white_check_mark: **DO** include all 3 encodings (UTF-8, UTF-16, and CodePoint) for every string offset or length value in a service response. :white_check_mark: **DO** define every string offset or length value in a service response as an object with the following structure: | Property | Type | Required | Description | | ----------- | ------- | :------: | ----------- | | `utf8` | integer | true | The offset or length of the substring in UTF-8 encoding | | `utf16` | integer | true | The offset or length of the substring in UTF-16 encoding | | `codePoint` | integer | true | The offset or length of the substring in CodePoint encoding | ### Distributed Tracing & Telemetry Azure SDK client guidelines specify that client libraries must send telemetry data through the `User-Agent` header, `X-MS-UserAgent` header, and Open Telemetry. Client libraries are required to send telemetry and distributed tracing information on every request. Telemetry information is vital to the effective operation of your service and should be a consideration from the outset of design and implementation efforts. :white_check_mark: **DO** follow the Azure SDK client guidelines for supporting telemetry headers and Open Telemetry. :no_entry: **DO NOT** reject a call if you have custom headers you don't understand, and specifically, distributed tracing headers. **Additional References** - [Azure SDK client guidelines](https://azure.github.io/azure-sdk/general_azurecore.html) - [Azure SDK User-Agent header policy](https://azure.github.io/azure-sdk/general_azurecore.html#azurecore-http-telemetry-x-ms-useragent) - [Azure SDK Distributed tracing policy](https://azure.github.io/azure-sdk/general_azurecore.html#distributed-tracing-policy) - [Open Telemetry](https://opentelemetry.io/) In addition to distributed tracing, Azure also uses a set of common correlation headers: |Name |Applies to|Description| |-----------------------------|----------|-----------| |x-ms-client-request-id |Both |Optional. Caller-specified value identifying the request, in the form of a GUID with no decoration such as curly braces (e.g. `x-ms-client-request-id: 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0`). If the caller provides this header the service **must** include this in their log entries to facilitate correlation of log entries for a single request. Because this header can be client-generated, it should not be assumed to be unique by the service implementation. |x-ms-request-id |Response |Required. Service generated correlation id identifying the request, in the form of a GUID with no decoration such as curly braces. In contrast to the the `x-ms-client-request-id`, the service **must** ensure that this value is globally unique. Services should log this value with their traces to facilitate correlation of log entries for a single request. ## Final thoughts These guidelines describe the upfront design considerations, technology building blocks, and common patterns that Azure teams encounter when building an API for their service. There is a great deal of information in them that can be difficult to follow. Fortunately, at Microsoft, there is a team committed to ensuring your success. The Azure REST API Stewardship board is a collection of dedicated architects that are passionate about helping Azure service teams build interfaces that are intuitive, maintainable, consistent, and most importantly, delight our customers. Because APIs affect nearly all downstream decisions, you are encouraged to reach out to the Stewardship board early in the development process. These architects will work with you to apply these guidelines and identify any hidden pitfalls in your design. For more information on how to part with the Stewardship board, please refer to [Considerations for Service Design](./ConsiderationsForServiceDesign.md). ================================================ FILE: azure/README.md ================================================ # Azure REST API Guidance When building software components that will be used by developers to build other software, providing APIs that are easy to use, fit to purpose, scalable, maintainable, and consistent across your product can make the difference between success and failure for your software. Designing powerful APIs with strong defaults, consistent behavior across related projects, and ease of use for developers arises from putting yourself in the shoes of the person using your interfaces, and taking their concerns to heart. The APIs you ship can have a dramatic long term effect on the health of your software product, and that is why the **REST API Stewardship Board** is here to help! We have published a collection of best practices, REST guidance, and OpenAPI style guidelines to help you create an amazing developer experience. * [Considerations for Service Design](ConsiderationsForServiceDesign.md) * [REST API Guidelines](Guidelines.md) * [OpenAPI Style Guidelines](https://github.com/Azure/azure-api-style-guide/blob/main/README.md) * [Versioning policy for Azure services, SDKs, and CLI tools](https://learn.microsoft.com/en-us/azure/developer/intro/azure-service-sdk-tool-versioning) * [Breaking Changes](https://aka.ms/azapi/breakingchanges) Note: Internal Microsoft link You can reach out to us via [email](mailto://azureapirbcore@microsoft.com) or in our [Teams](https://teams.microsoft.com/l/team/19%3a3ebb18fded0e47938f998e196a52952f%40thread.tacv2/conversations?groupId=1a10b50c-e870-4fe0-8483-bf5542a8d2d8&tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47) channel. Note: The Teams channel is internal MS. ================================================ FILE: azure/VersioningGuidelines.md ================================================ # Azure Versioning Guidelines ## History
Expand change history | Date | Notes | | ----------- | -------------------------------------------------------------- | | 2024-Nov-14 | Azure Service Versioning & Breaking Change Guidelines |
## Guidelines This document provides a "Dos and Don'ts" list for complying with the Azure Versioning and Breaking Change Policy, as documented [internally](aka.ms/AzBreakingChangesPolicy) and [externally](https://learn.microsoft.com/azure/developer/intro/azure-service-sdk-tool-versioning). :white_check_mark: **DO** thoroughly ensure/test the API contract is entirely correct before merging it into a production branch of the specs repo. Testing helps avoid "BugFix" changes to the API definition. Testing should be done at the HTTP level as well as through generated SDKs. :white_check_mark: **DO** retire all prior preview API versions 90 days after a new GA or preview API version is released. :white_check_mark: **DO** contact the Azure Breaking Change Review board to coordinate communications to customers when releasing an API version requiring the retirement of a prior version. :white_check_mark: **DO** create a new preview API version for any features that should remain in preview following a new GA release. :white_check_mark: **DO** use a date strictly later than the most recent GA API version when releasing a new preview API version. :white_check_mark: **DO** deprovision any API version that has been retired. Retired APIs versions should behave like an unknown API version (see [ref](https://aka.ms/azapi/guidelines#versioning-api-version-unsupported)). :white_check_mark: **DO** remove retired API versions from the azure-rest-api-specs repo. :white_check_mark: **DO** review any change to service behavior that could disrupt customers with the Azure Breaking Changes review board, even if the change is not part of the API definition. Some examples of behavior changes that must be reviewed are: - Introducing or changing rate limits to be more restrictive than previously - Changing the permissions required to successfully execute an operation :no_entry: **DO NOT** change the behavior of an API version that is available to customers either in public preview or GA. Changes in behavior should always be introduced in a new API version, with prior versions working as before. :no_entry: **DO NOT** introduce breaking changes from a prior GA version just to satisfy ARM or Azure API guidelines. Avoiding breaking changes in a GA API takes precedence over adherence to API guidelines and resolving linter errors. :no_entry: **DO NOT** keep a preview feature in preview for more than 1 year; it must go GA (or be removed) within 1 year after introduction. ================================================ FILE: graph/Guidelines-deprecated.md ================================================ > # DEPRECATION NOTICE TO READERS > > This document is being deprecated and merged with the [Microsoft Graph REST API Guidelines](GuidelinesGraph.md), with a removal date of July 1, 2024. Please refer to the notes below for the latest guidance. > > ## **Guidance for Microsoft Graph service teams** > > Graph service teams should reference the companion document, [Microsoft Graph REST API Guidelines](GuidelinesGraph.md) when building or modifying their services. This document and the associated pattern catalog provides a refined set of guidance targeted specifically for Microsoft Graph services. > --- # Microsoft REST API Guidelines This are Microsoft's internal company-wide REST API design guidelines. Teams at Microsoft typically reference this document when setting API design policy. They may additionally create documents specific to their team, adding further guidance or making adjustments as appropriate to their circumstances. ## Microsoft REST API Guidelines Working Group Name | Name | Name | ---------------------------- | -------------------------------------- | ---------------------------------------- Dave Campbell (CTO C+E) | Rick Rashid (CTO ASG) | John Shewchuk (Technical Fellow, TED HQ) Mark Russinovich (CTO Azure) | Steve Lucco (Technical Fellow, DevDiv) | Murali Krishnaprasad (Azure App Plat) Rob Howard (ASG) | Peter Torr (OSG) | Chris Mullins (ASG)
Document editors: John Gossman (C+E), Chris Mullins (ASG), Gareth Jones (ASG), Rob Dolin (C+E), Mark Stafford (C+E)
# Microsoft REST API Guidelines ## 1. Abstract The Microsoft REST API Guidelines, as a design principle, encourages application developers to have resources accessible to them via a RESTful HTTP interface. To provide the smoothest possible experience for developers on platforms following the Microsoft REST API Guidelines, REST APIs SHOULD follow consistent design guidelines to make using them easy and intuitive. This document establishes the guidelines Microsoft REST APIs SHOULD follow so RESTful interfaces are developed consistently. ## 2. Table of contents - [Microsoft REST API Guidelines](#microsoft-rest-api-guidelines) - [Microsoft REST API Guidelines Working Group](#microsoft-rest-api-guidelines-working-group) - [Microsoft REST API Guidelines](#microsoft-rest-api-guidelines-1) - [1. Abstract](#1-abstract) - [2. Table of contents](#2-table-of-contents) - [3. Introduction](#3-introduction) - [3.1. Recommended reading](#31-recommended-reading) - [4. Interpreting the guidelines](#4-interpreting-the-guidelines) - [4.1. Application of the guidelines](#41-application-of-the-guidelines) - [4.2. Guidelines for existing services and versioning of services](#42-guidelines-for-existing-services-and-versioning-of-services) - [4.3. Requirements language](#43-requirements-language) - [4.4. License](#44-license) - [5. Taxonomy](#5-taxonomy) - [5.1. Errors](#51-errors) - [5.2. Faults](#52-faults) - [5.3. Latency](#53-latency) - [5.4. Time to complete](#54-time-to-complete) - [5.5. Long running API faults](#55-long-running-api-faults) - [6. Client guidance](#6-client-guidance) - [6.1. Ignore rule](#61-ignore-rule) - [6.2. Variable order rule](#62-variable-order-rule) - [6.3. Silent fail rule](#63-silent-fail-rule) - [7. Consistency fundamentals](#7-consistency-fundamentals) - [7.1. URL structure](#71-url-structure) - [7.2. URL length](#72-url-length) - [7.3. Canonical identifier](#73-canonical-identifier) - [7.4. Supported methods](#74-supported-methods) - [7.4.1. POST](#741-post) - [7.4.2. PATCH](#742-patch) - [7.4.3. Creating resources via PATCH (UPSERT semantics)](#743-creating-resources-via-patch-upsert-semantics) - [7.4.4. Options and link headers](#744-options-and-link-headers) - [7.5. Standard request headers](#75-standard-request-headers) - [7.6. Standard response headers](#76-standard-response-headers) - [7.7. Custom headers](#77-custom-headers) - [7.8. Specifying headers as query parameters](#78-specifying-headers-as-query-parameters) - [7.9. PII parameters](#79-pii-parameters) - [7.10. Response formats](#710-response-formats) - [7.10.1. Clients-specified response format](#7101-clients-specified-response-format) - [7.10.2. Error condition responses](#7102-error-condition-responses) - [ErrorResponse : Object](#errorresponse--object) - [Error : Object](#error--object) - [InnerError : Object](#innererror--object) - [Examples](#examples) - [7.11. HTTP Status Codes](#711-http-status-codes) - [7.12. Client library optional](#712-client-library-optional) - [8. CORS](#8-cors) - [8.1. Client guidance](#81-client-guidance) - [8.1.1. Avoiding preflight](#811-avoiding-preflight) - [8.2. Service guidance](#82-service-guidance) - [9. Collections](#9-collections) - [9.1. Item keys](#91-item-keys) - [9.2. Serialization](#92-serialization) - [9.3. Collection URL patterns](#93-collection-url-patterns) - [9.3.1. Nested collections and properties](#931-nested-collections-and-properties) - [9.4. Big collections](#94-big-collections) - [9.5. Changing collections](#95-changing-collections) - [9.6. Sorting collections](#96-sorting-collections) - [9.6.1. Interpreting a sorting expression](#961-interpreting-a-sorting-expression) - [9.7. Filtering](#97-filtering) - [9.7.1. Filter operations](#971-filter-operations) - [9.7.2. Operator examples](#972-operator-examples) - [9.7.3. Operator precedence](#973-operator-precedence) - [9.8. Pagination](#98-pagination) - [9.8.1. Server-driven paging](#981-server-driven-paging) - [9.8.2. Client-driven paging](#982-client-driven-paging) - [9.8.3. Additional considerations](#983-additional-considerations) - [9.9. Compound collection operations](#99-compound-collection-operations) - [9.10. Empty Results](#910-empty-results) - [10. Delta queries](#10-delta-queries) - [10.1. Delta links](#101-delta-links) - [10.2. Entity representation](#102-entity-representation) - [10.3. Obtaining a delta link](#103-obtaining-a-delta-link) - [10.4. Contents of a delta link response](#104-contents-of-a-delta-link-response) - [10.5. Using a delta link](#105-using-a-delta-link) - [11. JSON standardizations](#11-json-standardizations) - [11.1. JSON formatting standardization for primitive types](#111-json-formatting-standardization-for-primitive-types) - [11.2. Guidelines for dates and times](#112-guidelines-for-dates-and-times) - [11.2.1. Producing dates](#1121-producing-dates) - [11.2.2. Consuming dates](#1122-consuming-dates) - [11.2.3. Compatibility](#1123-compatibility) - [11.3. JSON serialization of dates and times](#113-json-serialization-of-dates-and-times) - [11.3.1. The `DateLiteral` format](#1131-the-dateliteral-format) - [11.3.2. Commentary on date formatting](#1132-commentary-on-date-formatting) - [11.4. Durations](#114-durations) - [11.5. Intervals](#115-intervals) - [11.6. Repeating intervals](#116-repeating-intervals) - [12. Versioning](#12-versioning) - [12.1. Versioning formats](#121-versioning-formats) - [12.1.1. Group versioning](#1211-group-versioning) - [Examples of group versioning](#examples-of-group-versioning) - [12.2. When to version](#122-when-to-version) - [12.3. Definition of a breaking change](#123-definition-of-a-breaking-change) - [13. Long running operations](#13-long-running-operations) - [13.1. Resource based long running operations (RELO)](#131-resource-based-long-running-operations-relo) - [13.2. Stepwise long running operations](#132-stepwise-long-running-operations) - [13.2.1. PUT](#1321-put) - [13.2.2. POST](#1322-post) - [13.2.3. POST, hybrid model](#1323-post-hybrid-model) - [13.2.4. Operations resource](#1324-operations-resource) - [13.2.5. Operation resource](#1325-operation-resource) - [Percent complete](#percent-complete) - [Target resource location](#target-resource-location) - [13.2.6. Operation tombstones](#1326-operation-tombstones) - [13.2.7. The typical flow, polling](#1327-the-typical-flow-polling) - [Example of the typical flow, polling](#example-of-the-typical-flow-polling) - [13.2.8. The typical flow, push notifications](#1328-the-typical-flow-push-notifications) - [Example of the typical flow, push notifications existing subscription](#example-of-the-typical-flow-push-notifications-existing-subscription) - [13.2.9. Retry-After](#1329-retry-after) - [13.3. Retention policy for operation results](#133-retention-policy-for-operation-results) - [14. Throttling, Quotas, and Limits](#14-throttling-quotas-and-limits) - [14.1. Principles](#141-principles) - [14.2. Return Codes (429 vs 503)](#142-return-codes-429-vs-503) - [14.3. Retry-After and RateLimit Headers](#143-retry-after-and-ratelimit-headers) - [14.4. Service Guidance](#144-service-guidance) - [14.4.1. Responsiveness](#1441-responsiveness) - [14.4.2. Rate Limits and Quotas](#1442-rate-limits-and-quotas) - [14.4.3. Overloaded services](#1443-overloaded-services) - [14.4.4. Example Response](#1444-example-response) - [14.5. Caller Guidance](#145-caller-guidance) - [14.6. Handling callers that ignore Retry-After headers](#146-handling-callers-that-ignore-retry-after-headers) - [15. Push notifications via webhooks](#15-push-notifications-via-webhooks) - [15.1. Scope](#151-scope) - [15.2. Principles](#152-principles) - [15.3. Types of subscriptions](#153-types-of-subscriptions) - [15.4. Call sequences](#154-call-sequences) - [15.5. Verifying subscriptions](#155-verifying-subscriptions) - [15.6. Receiving notifications](#156-receiving-notifications) - [15.6.1. Notification payload](#1561-notification-payload) - [15.7. Managing subscriptions programmatically](#157-managing-subscriptions-programmatically) - [15.7.1. Creating subscriptions](#1571-creating-subscriptions) - [15.7.2. Updating subscriptions](#1572-updating-subscriptions) - [15.7.3. Deleting subscriptions](#1573-deleting-subscriptions) - [15.7.4. Enumerating subscriptions](#1574-enumerating-subscriptions) - [15.8. Security](#158-security) - [16. Unsupported requests](#16-unsupported-requests) - [16.1. Essential guidance](#161-essential-guidance) - [16.2. Feature allow list](#162-feature-allow-list) - [16.2.1. Error response](#1621-error-response) - [17. Naming guidelines](#17-naming-guidelines) - [17.1. Approach](#171-approach) - [17.2. Casing](#172-casing) - [17.3. Names to avoid](#173-names-to-avoid) - [17.4. Forming compound names](#174-forming-compound-names) - [17.5. Identity properties](#175-identity-properties) - [17.6. Date and time properties](#176-date-and-time-properties) - [17.7. Name properties](#177-name-properties) - [17.8. Collections and counts](#178-collections-and-counts) - [17.9. Common property names](#179-common-property-names) - [18. Appendix](#18-appendix) - [18.1. Sequence diagram notes](#181-sequence-diagram-notes) - [18.1.1. Push notifications, per user flow](#1811-push-notifications-per-user-flow) - [18.1.2. Push notifications, firehose flow](#1812-push-notifications-firehose-flow) ## 3. Introduction Developers access most Microsoft Cloud Platform resources via HTTP interfaces. Although each service typically provides language-specific frameworks to wrap their APIs, all of their operations eventually boil down to HTTP requests. Microsoft must support a wide range of clients and services and cannot rely on rich frameworks being available for every development environment. Thus, a goal of these guidelines is to ensure Microsoft REST APIs can be easily and consistently consumed by any client with basic HTTP support. To provide the smoothest possible experience for developers, it's important to have these APIs follow consistent design guidelines, thus making using them easy and intuitive. This document establishes the guidelines to be followed by Microsoft REST API developers for developing such APIs consistently. The benefits of consistency accrue in aggregate as well; consistency allows teams to leverage common code, patterns, documentation and design decisions. These guidelines aim to achieve the following: - Define consistent practices and patterns for all API endpoints across Microsoft. - Adhere as closely as possible to accepted REST/HTTP best practices in the industry at-large. [\*] - Make accessing Microsoft Services via REST interfaces easy for all application developers. - Allow service developers to leverage the prior work of other services to implement, test and document REST endpoints defined consistently. - Allow for partners (e.g., non-Microsoft entities) to use these guidelines for their own REST endpoint design. [\*] Note: The guidelines are designed to align with building services which comply with the REST architectural style, though they do not address or require building services that follow the REST constraints. The term "REST" is used throughout this document to mean services that are in the spirit of REST rather than adhering to REST by the book.* ### 3.1. Recommended reading Understanding the philosophy behind the REST Architectural Style is recommended for developing good HTTP-based services. If you are new to RESTful design, here are some good resources: [REST on Wikipedia][rest-on-wikipedia] -- Overview of common definitions and core ideas behind REST. [REST Dissertation][fielding] -- The chapter on REST in Roy Fielding's dissertation on Network Architecture, "Architectural Styles and the Design of Network-based Software Architectures" [RFC 7231][rfc-7231] -- Defines the specification for HTTP/1.1 semantics, and is considered the authoritative resource. [REST in Practice][rest-in-practice] -- Book on the fundamentals of REST. ## 4. Interpreting the guidelines ### 4.1. Application of the guidelines These guidelines are applicable to any REST API exposed publicly by Microsoft or any partner service. Private or internal APIs SHOULD also try to follow these guidelines because internal services tend to eventually be exposed publicly. Consistency is valuable to not only external customers but also internal service consumers, and these guidelines offer best practices useful for any service. There are legitimate reasons for exemption from these guidelines. Obviously, a REST service that implements or must interoperate with some externally defined REST API must be compatible with that API and not necessarily these guidelines. Some services MAY also have special performance needs that require a different format, such as a binary protocol. ### 4.2. Guidelines for existing services and versioning of services We do not recommend making a breaking change to a service that predates these guidelines simply for the sake of compliance. The service SHOULD try to become compliant at the next version release when compatibility is being broken anyway. When a service adds a new API, that API SHOULD be consistent with the other APIs of the same version. So if a service was written against version 1.0 of the guidelines, new APIs added incrementally to the service SHOULD also follow version 1.0. The service can then upgrade to align with the latest version of the guidelines at the service's next major release. ### 4.3. Requirements language The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC 2119][rfc-2119]. ### 4.4. License This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. ## 5. Taxonomy As part of onboarding to Microsoft REST API Guidelines, services MUST comply with the taxonomy defined below. ### 5.1. Errors Errors, or more specifically Service Errors, are defined as a client passing invalid data to the service and the service _correctly_ rejecting that data. Examples include invalid credentials, incorrect parameters, unknown version IDs, or similar. These are generally "4xx" HTTP error codes and are the result of a client passing incorrect or invalid data. Errors do _not_ contribute to overall API availability. ### 5.2. Faults Faults, or more specifically Service Faults, are defined as the service failing to correctly return in response to a valid client request. These are generally "5xx" HTTP error codes. Faults _do_ contribute to the overall API availability. Calls that fail due to rate limiting or quota failures MUST NOT count as faults. Calls that fail as the result of a service fast-failing requests (often for its own protection) do count as faults. ### 5.3. Latency Latency is defined as how long a particular API call takes to complete, measured as closely to the client as possible. This metric applies to both synchronous and asynchronous APIs in the same way. For long running calls, the latency is measured on the initial request and measures how long that call (not the overall operation) takes to complete. ### 5.4. Time to complete Services that expose long operations MUST track "Time to Complete" metrics around those operations. ### 5.5. Long running API faults For a Long Running API, it's possible for both the initial request which begins the operation and the request which retrieves the results to technically work (each passing back a 200) but for the underlying operation to have failed. Long Running faults MUST roll up as faults into the overall Availability metrics. ## 6. Client guidance To ensure the best possible experience for clients talking to a REST service, clients SHOULD adhere to the following best practices: ### 6.1. Ignore rule For loosely coupled clients where the exact shape of the data is not known before the call, if the server returns something the client wasn't expecting, the client MUST safely ignore it. Some services MAY add fields to responses without changing versions numbers. Services that do so MUST make this clear in their documentation and clients MUST ignore unknown fields. ### 6.2. Variable order rule Clients MUST NOT rely on the order in which data appears in JSON service responses. For example, clients SHOULD be resilient to the reordering of fields within a JSON object. When supported by the service, clients MAY request that data be returned in a specific order. For example, services MAY support the use of the _$orderBy_ querystring parameter to specify the order of elements within a JSON array. Services MAY also explicitly specify the ordering of some elements as part of the service contract. For example, a service MAY always return a JSON object's "type" information as the first field in an object to simplify response parsing on the client. Clients MAY rely on ordering behavior explicitly identified by the service. ### 6.3. Silent fail rule Clients requesting OPTIONAL server functionality (such as optional headers) MUST be resilient to the server ignoring that particular functionality. ## 7. Consistency fundamentals ### 7.1. URL structure Humans SHOULD be able to easily read and construct URLs. This facilitates discovery and eases adoption on platforms without a well-supported client library. An example of a well-structured URL is: ``` https://api.contoso.com/v1.0/people/jdoe@contoso.com/inbox ``` An example URL that is not friendly is: ``` https://api.contoso.com/EWS/OData/Users('jdoe@microsoft.com')/Folders('AAMkADdiYzI1MjUzLTk4MjQtNDQ1Yy05YjJkLWNlMzMzYmIzNTY0MwAuAAAAAACzMsPHYH6HQoSwfdpDx-2bAQCXhUk6PC1dS7AERFluCgBfAAABo58UAAA=') ``` A frequent pattern that comes up is the use of URLs as values. Services MAY use URLs as values. For example, the following is acceptable: ``` https://api.contoso.com/v1.0/items?url=https://resources.contoso.com/shoes/fancy ``` ### 7.2. URL length The HTTP 1.1 message format, defined in RFC 7230, in section [3.1.1][rfc-7230-3-1-1], defines no length limit on the Request Line, which includes the target URL. From the RFC: > HTTP does not place a predefined limit on the length of a request-line. [...] A server that receives a request-target longer than any URI it wishes to parse MUST respond with a 414 (URI Too Long) status code. Services that can generate URLs longer than 2,083 characters MUST make accommodations for the clients they wish to support. Here are some sources for determining what target clients support: * [https://stackoverflow.com/a/417184](https://stackoverflow.com/a/417184) * [https://blogs.msdn.microsoft.com/ieinternals/2014/08/13/url-length-limits/](https://blogs.msdn.microsoft.com/ieinternals/2014/08/13/url-length-limits/) Also note that some technology stacks have hard and adjustable URL limits, so keep this in mind as you design your services. ### 7.3. Canonical identifier In addition to friendly URLs, resources that can be moved or be renamed SHOULD expose a URL that contains a unique stable identifier. It MAY be necessary to interact with the service to obtain a stable URL from the friendly name for the resource, as in the case of the "/my" shortcut used by some services. The stable identifier is not required to be a GUID. An example of a URL containing a canonical identifier is: ``` https://api.contoso.com/v1.0/people/7011042402/inbox ``` ### 7.4. Supported methods Operations MUST use the proper HTTP methods whenever possible, and operation idempotency MUST be respected. HTTP methods are frequently referred to as the HTTP verbs. The terms are synonymous in this context, however the HTTP specification uses the term method. Below is a list of methods that Microsoft REST services SHOULD support. Not all resources will support all methods, but all resources using the methods below MUST conform to their usage. Method | Description | Is Idempotent ------- | -------------------------------------------------------------------------------------------------------------------------- | ------------- GET | Return the current value of an object | True PUT | Replace an object, or create a named object, when applicable | True DELETE | Delete an object | True POST | Create a new object based on the data provided, or submit a command | False HEAD | Return metadata of an object for a GET response. Resources that support the GET method MAY support the HEAD method as well | True PATCH | Apply a partial update to an object | False OPTIONS | Get information about a request; see below for details. | True Table 1 #### 7.4.1. POST POST operations SHOULD support the Location response header to specify the location of any created resource that was not explicitly named, via the Location header. As an example, imagine a service that allows creation of hosted servers, which will be named by the service: ```http POST http://api.contoso.com/account1/servers ``` The response would be something like: ```http 201 Created Location: http://api.contoso.com/account1/servers/server321 ``` Where "server321" is the service-allocated server name. Services MAY also return the full metadata for the created item in the response. #### 7.4.2. PATCH PATCH has been standardized by IETF as the method to be used for updating an existing object incrementally (see [RFC 5789][rfc-5789]). Microsoft REST API Guidelines compliant APIs SHOULD support PATCH. #### 7.4.3. Creating resources via PATCH (UPSERT semantics) Services that allow callers to specify key values on create SHOULD support UPSERT semantics, and those that do MUST support creating resources using PATCH. Because PUT is defined as a complete replacement of the content, it is dangerous for clients to use PUT to modify data. Clients that do not understand (and hence ignore) properties on a resource are not likely to provide them on a PUT when trying to update a resource, hence such properties could be inadvertently removed. Services MAY optionally support PUT to update existing resources, but if they do they MUST use replacement semantics (that is, after the PUT, the resource's properties MUST match what was provided in the request, including deleting any server properties that were not provided). Under UPSERT semantics, a PATCH call to a nonexistent resource is handled by the server as a "create", and a PATCH call to an existing resource is handled as an "update". To ensure that an update request is not treated as a create or vice versa, the client MAY specify precondition HTTP headers in the request. The service MUST NOT treat a PATCH request as an insert if it contains an If-Match header and MUST NOT treat a PATCH request as an update if it contains an If-None-Match header with a value of "*". If a service does not support UPSERT, then a PATCH call against a resource that does not exist MUST result in an HTTP "409 Conflict" error. #### 7.4.4. Options and link headers OPTIONS allows a client to retrieve information about a resource, at a minimum by returning the Allow header denoting the valid methods for this resource. In addition, services SHOULD include a Link header (see [RFC 5988][rfc-5988]) to point to documentation for the resource in question: ```http Link: <{help}>; rel="help" ``` Where {help} is the URL to a documentation resource. For examples on use of OPTIONS, see [preflighting CORS cross-domain calls][cors-preflight]. ### 7.5. Standard request headers The table of request headers below SHOULD be used by Microsoft REST API Guidelines services. Using these headers is not mandated, but if used they MUST be used consistently. All header values MUST follow the syntax rules set forth in the specification where the header field is defined. Many HTTP headers are defined in [RFC7231][rfc-7231], however a complete list of approved headers can be found in the [IANA Header Registry][IANA-headers]." Header | Type | Description --------------------------------- | ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Authorization | String | Authorization header for the request Date | Date | Timestamp of the request, based on the client's clock, in [RFC 5322][rfc-5322-3-3] date and time format. The server SHOULD NOT make any assumptions about the accuracy of the client's clock. This header MAY be included in the request, but MUST be in this format when supplied. Greenwich Mean Time (GMT) MUST be used as the time zone reference for this header when it is provided. For example: `Wed, 24 Aug 2016 18:41:30 GMT`. Note that GMT is exactly equal to UTC (Coordinated Universal Time) for this purpose. Accept | Content type | The requested content type for the response such as:
  • application/xml
  • text/xml
  • application/json
  • text/javascript (for JSONP)
Per the HTTP guidelines, this is just a hint and responses MAY have a different content type, such as a blob fetch where a successful response will just be the blob stream as the payload. For services following OData, the preference order specified in OData SHOULD be followed. Accept-Encoding | Gzip, deflate | REST endpoints SHOULD support GZIP and DEFLATE encoding, when applicable. For very large resources, services MAY ignore and return uncompressed data. Accept-Language | "en", "es", etc. | Specifies the preferred language for the response. Services are not required to support this, but if a service supports localization it MUST do so through the Accept-Language header. Accept-Charset | Charset type like "UTF-8" | Default is UTF-8, but services SHOULD be able to handle ISO-8859-1. Content-Type | Content type | Mime type of request body (PUT/POST/PATCH) Prefer | return=minimal, return=representation | If the return=minimal preference is specified, services SHOULD return an empty body in response to a successful insert or update. If return=representation is specified, services SHOULD return the created or updated resource in the response. Services SHOULD support this header if they have scenarios where clients would sometimes benefit from responses, but sometimes the response would impose too much of a hit on bandwidth. If-Match, If-None-Match, If-Range | String | Services that support updates to resources using optimistic concurrency control MUST support the If-Match header to do so. Services MAY also use other headers related to ETags as long as they follow the HTTP specification. ### 7.6. Standard response headers Services SHOULD return the following response headers, except where noted in the "required" column. Response Header | Required | Description ------------------ | --------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Date | All responses | Timestamp the response was processed, based on the server's clock, in [RFC 5322][rfc-5322-3-3] date and time format. This header MUST be included in the response. Greenwich Mean Time (GMT) MUST be used as the time zone reference for this header. For example: `Wed, 24 Aug 2016 18:41:30 GMT`. Note that GMT is exactly equal to UTC (Coordinated Universal Time) for this purpose. Content-Type | All responses | The content type Content-Encoding | All responses | GZIP or DEFLATE, as appropriate Preference-Applied | When specified in request | Whether a preference indicated in the Prefer request header was applied ETag | When the requested resource has an entity tag | The ETag response-header field provides the current value of the entity tag for the requested variant. Used with If-Match, If-None-Match and If-Range to implement optimistic concurrency control. ### 7.7. Custom headers Custom headers MUST NOT be required for the basic operation of a given API. Some of the guidelines in this document prescribe the use of nonstandard HTTP headers. In addition, some services MAY need to add extra functionality, which is exposed via HTTP headers. The following guidelines help maintain consistency across usage of custom headers. Headers that are not standard HTTP headers MUST have one of two formats: 1. A generic format for headers that are registered as "provisional" with IANA ([RFC 3864][rfc-3864]) 2. A scoped format for headers that are too usage-specific for registration These two formats are described below. ### 7.8. Specifying headers as query parameters Some headers pose challenges for some scenarios such as AJAX clients, especially when making cross-domain calls where adding headers MAY not be supported. As such, some headers MAY be accepted as Query Parameters in addition to headers, with the same naming as the header: Not all headers make sense as query parameters, including most standard HTTP headers. The criteria for considering when to accept headers as parameters are: 1. Any custom headers MUST be also accepted as parameters. 2. Required standard headers MAY be accepted as parameters. 3. Required headers with security sensitivity (e.g., Authorization header) MIGHT NOT be appropriate as parameters; the service owner SHOULD evaluate these on a case-by-case basis. The one exception to this rule is the Accept header. It's common practice to use a scheme with simple names instead of the full functionality described in the HTTP specification for Accept. ### 7.9. PII parameters Consistent with their organization's privacy policy, clients SHOULD NOT transmit personally identifiable information (PII) parameters in the URL (as part of path or query string) because this information can be inadvertently exposed via client, network, and server logs and other mechanisms. Consequently, a service SHOULD accept PII parameters transmitted as headers. However, there are many scenarios where the above recommendations cannot be followed due to client or software limitations. To address these limitations, services SHOULD also accept these PII parameters as part of the URL consistent with the rest of these guidelines. Services that accept PII parameters -- whether in the URL or as headers -- SHOULD be compliant with privacy policy specified by their organization's engineering leadership. This will typically include recommending that clients prefer headers for transmission and implementations adhere to special precautions to ensure that logs and other service data collection are properly handled. ### 7.10. Response formats For organizations to have a successful platform, they must serve data in formats developers are accustomed to using, and in consistent ways that allow developers to handle responses with common code. Web-based communication, especially when a mobile or other low-bandwidth client is involved, has moved quickly in the direction of JSON for a variety of reasons, including its tendency to be lighter weight and its ease of consumption with JavaScript-based clients. JSON property names SHOULD be camelCased. Services SHOULD provide JSON as the default encoding. #### 7.10.1. Clients-specified response format In HTTP, response format SHOULD be requested by the client using the Accept header. This is a hint, and the server MAY ignore it if it chooses to, even if this isn't typical of well-behaved servers. Clients MAY send multiple Accept headers and the service MAY choose one of them. The default response format (no Accept header provided) SHOULD be application/json, and all services MUST support application/json. Accept Header | Response type | Notes ---------------- | ---------------------------------- | ------------------------------------------- application/json | Payload SHOULD be returned as JSON | Also accept text/javascript for JSONP cases ```http GET https://api.contoso.com/v1.0/products/user Accept: application/json ``` #### 7.10.2. Error condition responses For non-success conditions, developers SHOULD be able to write one piece of code that handles errors consistently across different Microsoft REST API Guidelines services. This allows building of simple and reliable infrastructure to handle exceptions as a separate flow from successful responses. The following is based on the OData v4 JSON spec. However, it is very generic and does not require specific OData constructs. APIs SHOULD use this format even if they are not using other OData constructs. The error response MUST be a single JSON object. This object MUST have a name/value pair named "error". The value MUST be a JSON object. This object MUST contain name/value pairs with the names "code" and "message", and it MAY contain name/value pairs with the names "target", "details" and "innererror." The value for the "code" name/value pair is a language-independent string. Its value is a service-defined error code that SHOULD be human-readable. This code serves as a more specific indicator of the error than the HTTP error code specified in the response. Services SHOULD have a relatively small number (about 20) of possible values for "code", and all clients MUST be capable of handling all of them. Most services will require a much larger number of more specific error codes, which are not interesting to all clients. These error codes SHOULD be exposed in the "innererror" name/value pair as described below. Introducing a new value for "code" that is visible to existing clients is a breaking change and requires a version increase. Services can avoid breaking changes by adding new error codes to "innererror" instead. The value for the "message" name/value pair MUST be a human-readable representation of the error. It is intended as an aid to developers and is not suitable for exposure to end users. Services wanting to expose a suitable message for end users MUST do so through an [annotation][odata-json-annotations] or custom property. Services SHOULD NOT localize "message" for the end user, because doing so might make the value unreadable to the app developer who may be logging the value, as well as make the value less searchable on the Internet. The value for the "target" name/value pair is the target of the particular error (e.g., the name of the property in error). The value for the "details" name/value pair MUST be an array of JSON objects that MUST contain name/value pairs for "code" and "message", and MAY contain a name/value pair for "target", as described above. The objects in the "details" array usually represent distinct, related errors that occurred during the request. See example below. The value for the "innererror" name/value pair MUST be an object. The contents of this object are service-defined. Services wanting to return more specific errors than the root-level code MUST do so by including a name/value pair for "code" and a nested "innererror". Each nested "innererror" object represents a higher level of detail than its parent. When evaluating errors, clients MUST traverse through all of the nested "innererrors" and choose the deepest one that they understand. This scheme allows services to introduce new error codes anywhere in the hierarchy without breaking backwards compatibility, so long as old error codes still appear. The service MAY return different levels of depth and detail to different callers. For example, in development environments, the deepest "innererror" MAY contain internal information that can help debug the service. To guard against potential security concerns around information disclosure, services SHOULD take care not to expose too much detail unintentionally. Error objects MAY also include custom server-defined name/value pairs that MAY be specific to the code. Error types with custom server-defined properties SHOULD be declared in the service's metadata document. See example below. Error responses MAY contain [annotations][odata-json-annotations] in any of their JSON objects. We recommend that for any transient errors that may be retried, services SHOULD include a Retry-After HTTP header indicating the minimum number of seconds that clients SHOULD wait before attempting the operation again. ##### ErrorResponse : Object Property | Type | Required | Description -------- | ---- | -------- | ----------- `error` | Error | ✔ | The error object. ##### Error : Object Property | Type | Required | Description -------- | ---- | -------- | ----------- `code` | String | ✔ | One of a server-defined set of error codes. `message` | String | ✔ | A human-readable representation of the error. `target` | String | | The target of the error. `details` | Error[] | | An array of details about specific errors that led to this reported error. `innererror` | InnerError | | An object containing more specific information than the current object about the error. ##### InnerError : Object Property | Type | Required | Description -------- | ---- | -------- | ----------- `code` | String | | A more specific error code than was provided by the containing error. `innererror` | InnerError | | An object containing more specific information than the current object about the error. ##### Examples Example of "innererror": ```json { "error": { "code": "BadArgument", "message": "Previous passwords may not be reused", "target": "password", "innererror": { "code": "PasswordError", "innererror": { "code": "PasswordDoesNotMeetPolicy", "minLength": "6", "maxLength": "64", "characterTypes": ["lowerCase","upperCase","number","symbol"], "minDistinctCharacterTypes": "2", "innererror": { "code": "PasswordReuseNotAllowed" } } } } } ``` In this example, the most basic error code is "BadArgument", but for clients that are interested, there are more specific error codes in "innererror." The "PasswordReuseNotAllowed" code may have been added by the service at a later date, having previously only returned "PasswordDoesNotMeetPolicy." Existing clients do not break when the new error code is added, but new clients MAY take advantage of it. The "PasswordDoesNotMeetPolicy" error also includes additional name/value pairs that allow the client to determine the server's configuration, validate the user's input programmatically, or present the server's constraints to the user within the client's own localized messaging. Example of "details": ```json { "error": { "code": "BadArgument", "message": "Multiple errors in ContactInfo data", "target": "ContactInfo", "details": [ { "code": "NullValue", "target": "PhoneNumber", "message": "Phone number must not be null" }, { "code": "NullValue", "target": "LastName", "message": "Last name must not be null" }, { "code": "MalformedValue", "target": "Address", "message": "Address is not valid" } ] } } ``` In this example there were multiple problems with the request, with each individual error listed in "details." ### 7.11. HTTP Status Codes Standard HTTP Status Codes SHOULD be used; see the HTTP Status Code definitions for more information. ### 7.12. Client library optional Developers MUST be able to develop on a wide variety of platforms and languages, such as Windows, macOS, Linux, C#, Python, Node.js, and Ruby. Services SHOULD be able to be accessed from simple HTTP tools such as curl without significant effort. Service developer portals SHOULD provide the equivalent of "Get Developer Token" to facilitate experimentation and curl support. ## 8. CORS Services compliant with the Microsoft REST API Guidelines MUST support [CORS (Cross Origin Resource Sharing)][cors]. Services SHOULD support an allowed origin of CORS * and enforce authorization through valid OAuth tokens. Services SHOULD NOT support user credentials with origin validation. There MAY be exceptions for special cases. ### 8.1. Client guidance Web developers usually don't need to do anything special to take advantage of CORS. All of the handshake steps happen invisibly as part of the standard XMLHttpRequest calls they make. Many other platforms, such as .NET, have integrated support for CORS. #### 8.1.1. Avoiding preflight Because the CORS protocol can trigger preflight requests that add additional round trips to the server, performance-critical apps might be interested in avoiding them. The spirit behind CORS is to avoid preflight for any simple cross-domain requests that old non-CORS-capable browsers were able to make. All other requests require preflight. A request is "simple" and avoids preflight if its method is GET, HEAD or POST, and if it doesn't contain any request headers besides Accept, Accept-Language and Content-Language. For POST requests, the Content-Type header is also allowed, but only if its value is "application/x-www-form-urlencoded", "multipart/form-data" or "text/plain." For any other headers or values, a preflight request will happen. ### 8.2. Service guidance At minimum, services MUST: - Understand the Origin request header that browsers send on cross-domain requests, and the Access-Control-Request-Method request header that they send on preflight OPTIONS requests that check for access. - If the Origin header is present in a request: - If the request uses the OPTIONS method and contains the Access-Control-Request-Method header, then it is a preflight request intended to probe for access before the actual request. Otherwise, it is an actual request. For preflight requests, beyond performing the steps below to add headers, services MUST perform no additional processing and MUST return a 200 OK. For non-preflight requests, the headers below are added in addition to the request's regular processing. - Add an Access-Control-Allow-Origin header to the response, containing the same value as the Origin request header. Note that this requires services to dynamically generate the header value. Resources that do not require cookies or any other form of [user credentials][cors-user-credentials] MAY respond with a wildcard asterisk (*) instead. Note that the wildcard is acceptable here only, and not for any of the other headers described below. - If the caller requires access to a response header that is not in the set of [simple response headers][cors-simple-headers] (Cache-Control, Content-Language, Content-Type, Expires, Last-Modified, Pragma), then add an Access-Control-Expose-Headers header containing the list of additional response header names the client should have access to. - If the request requires cookies, then add an Access-Control-Allow-Credentials header set to "true." - If the request was a preflight request (see first bullet), then the service MUST: - Add an Access-Control-Allow-Headers response header containing the list of request header names the client is permitted to use. This list need only contain headers that are not in the set of [simple request headers][cors-simple-headers] (Accept, Accept-Language, Content-Language). If there are no restrictions on headers the service accepts, the service MAY simply return the same value as the Access-Control-Request-Headers header sent by the client. - Add an Access-Control-Allow-Methods response header containing the list of HTTP methods the caller is permitted to use. Add an Access-Control-Max-Age pref response header containing the number of seconds for which this preflight response is valid (and hence can be avoided before subsequent actual requests). Note that while it is customary to use a large value like 2592000 (30 days), many browsers self-impose a much lower limit (e.g., five minutes). Because browser preflight response caches are notoriously weak, the additional round trip from a preflight response hurts performance. Services used by interactive Web clients where performance is critical SHOULD avoid patterns that cause a preflight request - For GET and HEAD calls, avoid requiring request headers that are not part of the simple set above. Allow them to be provided as query parameters instead. - The Authorization header is not part of the simple set, so the authentication token MUST be sent through the "access_token" query parameter instead, for resources requiring authentication. Note that passing authentication tokens in the URL is not recommended, because it can lead to the token getting recorded in server logs and exposed to anyone with access to those logs. Services that accept authentication tokens through the URL MUST take steps to mitigate the security risks, such as using short-lived authentication tokens, suppressing the auth token from getting logged, and controlling access to server logs. - Avoid requiring cookies. XmlHttpRequest will only send cookies on cross-domain requests if the "withCredentials" attribute is set; this also causes a preflight request. - Services that require cookie-based authentication MUST use a "dynamic canary" to secure all APIs that accept cookies. - For POST calls, prefer simple Content-Types in the set of ("application/x-www-form-urlencoded", "multipart/form-data", "text/plain") where applicable. Any other Content-Type will induce a preflight request. - Services MUST NOT contravene other API recommendations in the name of avoiding CORS preflight requests. In particular, in accordance with recommendations, most POST requests will actually require a preflight request due to the Content-Type. - If eliminating preflight is critical, then a service MAY support alternative mechanisms for data transfer, but the RECOMMENDED approach MUST also be supported. In addition, when appropriate services MAY support the JSONP pattern for simple, GET-only cross-domain access. In JSONP, services take a parameter indicating the format (_$format=json_) and a parameter indicating a callback (_$callback=someFunc_), and return a text/javascript document containing the JSON response wrapped in a function call with the indicated name. More on JSONP at Wikipedia: [JSONP](https://en.wikipedia.org/wiki/JSONP). ## 9. Collections ### 9.1. Item keys Services MAY support durable identifiers for each item in the collection, and that identifier SHOULD be represented in JSON as "id". These durable identifiers are often used as item keys. Collections that support durable identifiers MAY support delta queries. ### 9.2. Serialization Collections are represented in JSON using standard array notation. ### 9.3. Collection URL patterns Collections are located directly under the service root when they are top level, or as a segment under another resource when scoped to that resource. For example: ```http GET https://api.contoso.com/v1.0/people ``` Whenever possible, services MUST support the "/" pattern. For example: ```http GET https://{serviceRoot}/{collection}/{id} ``` Where: - {serviceRoot} – the combination of host (site URL) + the root path to the service - {collection} – the name of the collection, unabbreviated, pluralized - {id} – the value of the unique id property. When using the "/" pattern this MUST be the raw string/number/guid value with no quoting but properly escaped to fit in a URL segment. #### 9.3.1. Nested collections and properties Collection items MAY contain other collections. For example, a user collection MAY contain user resources that have multiple addresses: ```http GET https://api.contoso.com/v1.0/people/123/addresses ``` ```json { "value": [ { "street": "1st Avenue", "city": "Seattle" }, { "street": "124th Ave NE", "city": "Redmond" } ] } ``` ### 9.4. Big collections As data grows, so do collections. Planning for pagination is important for all services. Therefore, when multiple pages are available, the serialization payload MUST contain the opaque URL for the next page as appropriate. Refer to the paging guidance for more details. Clients MUST be resilient to collection data being either paged or nonpaged for any given request. ```json { "value":[ { "id": "Item 1","price": 99.95,"sizes": null}, { … }, { … }, { "id": "Item 99","price": 59.99,"sizes": null} ], "@nextLink": "{opaqueUrl}" } ``` ### 9.5. Changing collections POST requests are not idempotent. This means that two POST requests sent to a collection resource with exactly the same payload MAY lead to multiple items being created in that collection. This is often the case for insert operations on items with a server-side generated id. For example, the following request: ```http POST https://api.contoso.com/v1.0/people ``` Would lead to a response indicating the location of the new collection item: ```http 201 Created Location: https://api.contoso.com/v1.0/people/123 ``` And once executed again, would likely lead to another resource: ```http 201 Created Location: https://api.contoso.com/v1.0/people/124 ``` While a PUT request would require the indication of the collection item with the corresponding key instead: ```http PUT https://api.contoso.com/v1.0/people/123 ``` ### 9.6. Sorting collections The results of a collection query MAY be sorted based on property values. The property is determined by the value of the _$orderBy_ query parameter. The value of the _$orderBy_ parameter contains a comma-separated list of expressions used to sort the items. A special case of such an expression is a property path terminating on a primitive property. The expression MAY include the suffix "asc" for ascending or "desc" for descending, separated from the property name by one or more spaces. If "asc" or "desc" is not specified, the service MUST order by the specified property in ascending order. NULL values MUST sort as "less than" non-NULL values. Items MUST be sorted by the result values of the first expression, and then items with the same value for the first expression are sorted by the result value of the second expression, and so on. The sort order is the inherent order for the type of the property. For example: ```http GET https://api.contoso.com/v1.0/people?$orderBy=name ``` Will return all people sorted by name in ascending order. For example: ```http GET https://api.contoso.com/v1.0/people?$orderBy=name desc ``` Will return all people sorted by name in descending order. Sub-sorts can be specified by a comma-separated list of property names with OPTIONAL direction qualifier. For example: ```http GET https://api.contoso.com/v1.0/people?$orderBy=name desc,hireDate ``` Will return all people sorted by name in descending order and a secondary sort order of hireDate in ascending order. Sorting MUST compose with filtering such that: ```http GET https://api.contoso.com/v1.0/people?$filter=name eq 'david'&$orderBy=hireDate ``` Will return all people whose name is David sorted in ascending order by hireDate. #### 9.6.1. Interpreting a sorting expression Sorting parameters MUST be consistent across pages, as both client and server-side paging is fully compatible with sorting. If a service does not support sorting by a property named in a _$orderBy_ expression, the service MUST respond with an error message as defined in the Responding to Unsupported Requests section. ### 9.7. Filtering The _$filter_ querystring parameter allows clients to filter a collection of resources that are addressed by a request URL. The expression specified with _$filter_ is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Resources for which the expression evaluates to false or to null, or which reference properties that are unavailable due to permissions, are omitted from the response. Example: return all Products whose Price is less than $10.00 ```http GET https://api.contoso.com/v1.0/products?$filter=price lt 10.00 ``` The value of the _$filter_ option is a Boolean expression. #### 9.7.1. Filter operations Services that support _$filter_ SHOULD support the following minimal set of operations. Operator | Description | Example -------------------- | --------------------- | ----------------------------------------------------- Comparison Operators | | eq | Equal | city eq 'Redmond' ne | Not equal | city ne 'London' gt | Greater than | price gt 20 ge | Greater than or equal | price ge 10 lt | Less than | price lt 20 le | Less than or equal | price le 100 Logical Operators | | and | Logical and | price le 200 and price gt 3.5 or | Logical or | price le 3.5 or price gt 200 not | Logical negation | not price le 3.5 Grouping Operators | | ( ) | Precedence grouping | (priority eq 1 or city eq 'Redmond') and price gt 100 #### 9.7.2. Operator examples The following examples illustrate the use and semantics of each of the logical operators. Example: all products with a name equal to 'Milk' ```http GET https://api.contoso.com/v1.0/products?$filter=name eq 'Milk' ``` Example: all products with a name not equal to 'Milk' ```http GET https://api.contoso.com/v1.0/products?$filter=name ne 'Milk' ``` Example: all products with the name 'Milk' that also have a price less than 2.55: ```http GET https://api.contoso.com/v1.0/products?$filter=name eq 'Milk' and price lt 2.55 ``` Example: all products that either have the name 'Milk' or have a price less than 2.55: ```http GET https://api.contoso.com/v1.0/products?$filter=name eq 'Milk' or price lt 2.55 ``` Example: all products that have the name 'Milk' or 'Eggs' and have a price less than 2.55: ```http GET https://api.contoso.com/v1.0/products?$filter=(name eq 'Milk' or name eq 'Eggs') and price lt 2.55 ``` #### 9.7.3. Operator precedence Services MUST use the following operator precedence for supported operators when evaluating _$filter_ expressions. Operators are listed by category in order of precedence from highest to lowest. Operators in the same category have equal precedence: | Group | Operator | Description | |:----------------|:---------|:----------------------| | Grouping | ( ) | Precedence grouping | | Unary | not | Logical Negation | | Relational | gt | Greater Than | | | ge | Greater than or Equal | | | lt | Less Than | | | le | Less than or Equal | | Equality | eq | Equal | | | ne | Not Equal | | Conditional AND | and | Logical And | | Conditional OR | or | Logical Or | ### 9.8. Pagination RESTful APIs that return collections MAY return partial sets. Consumers of these services MUST expect partial result sets and correctly page through to retrieve an entire set. There are two forms of pagination that MAY be supported by RESTful APIs. Server-driven paging mitigates against denial-of-service attacks by forcibly paginating a request over multiple response payloads. Client-driven paging enables clients to request only the number of resources that it can use at a given time. Sorting and Filtering parameters MUST be consistent across pages, because both client- and server-side paging is fully compatible with both filtering and sorting. #### 9.8.1. Server-driven paging Paginated responses MUST indicate a partial result by including a continuation token in the response. The absence of a continuation token means that no additional pages are available. Clients MUST treat the continuation URL as opaque, which means that query options may not be changed while iterating over a set of partial results. Example: ```http GET http://api.contoso.com/v1.0/people HTTP/1.1 Accept: application/json HTTP/1.1 200 OK Content-Type: application/json { ..., "value": [...], "@nextLink": "{opaqueUrl}" } ``` #### 9.8.2. Client-driven paging Clients MAY use _$top_ and _$skip_ query parameters to specify a number of results to return and an offset into the collection. The server SHOULD honor the values specified by the client; however, clients MUST be prepared to handle responses that contain a different page size or contain a continuation token. When both _$top_ and _$skip_ are given by a client, the server SHOULD first apply _$skip_ and then _$top_ on the collection. Note: If the server can't honor _$top_ and/or _$skip_, the server MUST return an error to the client informing about it instead of just ignoring the query options. This will avoid the risk of the client making assumptions about the data returned. Example: ```http GET http://api.contoso.com/v1.0/people?$top=5&$skip=2 HTTP/1.1 Accept: application/json HTTP/1.1 200 OK Content-Type: application/json { ..., "value": [...] } ``` #### 9.8.3. Additional considerations **Stable order prerequisite:** Both forms of paging depend on the collection of items having a stable order. The server MUST supplement any specified order criteria with additional sorts (typically by key) to ensure that items are always ordered consistently. **Missing/repeated results:** Even if the server enforces a consistent sort order, results MAY be missing or repeated based on creation or deletion of other resources. Clients MUST be prepared to deal with these discrepancies. The server SHOULD always encode the record ID of the last read record, helping the client in the process of managing repeated/missing results. **Combining client- and server-driven paging:** Note that client-driven paging does not preclude server-driven paging. If the page size requested by the client is larger than the default page size supported by the server, the expected response would be the number of results specified by the client, paginated as specified by the server paging settings. **Page Size:** Clients MAY request server-driven paging with a specific page size by specifying a _$maxpagesize_ preference. The server SHOULD honor this preference if the specified page size is smaller than the server's default page size. **Paginating embedded collections:** It is possible for both client-driven paging and server-driven paging to be applied to embedded collections. If a server paginates an embedded collection, it MUST include additional continuation tokens as appropriate. **Recordset count:** Developers who want to know the full number of records across all pages, MAY include the query parameter _$count=true_ to tell the server to include the count of items in the response. ### 9.9. Compound collection operations Filtering, Sorting and Pagination operations MAY all be performed against a given collection. When these operations are performed together, the evaluation order MUST be: 1. **Filtering**. This includes all range expressions performed as an AND operation. 2. **Sorting**. The potentially filtered list is sorted according to the sort criteria. 3. **Pagination**. The materialized paginated view is presented over the filtered, sorted list. This applies to both server-driven pagination and client-driven pagination. ### 9.10. Empty Results When a filter is performed on a collection and the result set is empty you MUST respond with a valid response body and a 200 response code. In this example the filters supplied by the client resulted in a empty result set. The response body is returned as normal and the _value_ attribute is set to a empty collection. A client MAY be expecting metadata attributes like _maxItems_ based on the format of your responses to similar calls which produced results. You SHOULD maintain consistency in your API whenever possible. ```http GET https://api.contoso.com/v1.0/products?$filter=(name eq 'Milk' or name eq 'Eggs') and price lt 2.55 Accept: application/json HTTP/1.1 200 OK Content-Type: application/json { ..., "maxItems": 0, "value": [] } ``` ## 10. Delta queries Services MAY choose to support delta queries. ### 10.1. Delta links Delta links are opaque, service-generated links that the client uses to retrieve subsequent changes to a result. At a conceptual level delta links are based on a defining query that describes the set of results for which changes are being tracked. The delta link encodes the collection of entities for which changes are being tracked, along with a starting point from which to track changes. If the query contains a filter, the response MUST include only changes to entities matching the specified criteria. The key principles of the Delta Query are: - Every item in the set MUST have a persistent identifier. That identifier SHOULD be represented as "id". This identifier is a service defined opaque string that MAY be used by the client to track object across calls. - The delta MUST contain an entry for each entity that newly matches the specified criteria, and MUST contain a "@removed" entry for each entity that no longer matches the criteria. - Re-evaluate the query and compare it to original set of results; every entry uniquely in the current set MUST be returned as an Add operation, and every entry uniquely in the original set MUST be returned as a "remove" operation. - Each entity that previously did not match the criteria but matches it now MUST be returned as an "add"; conversely, each entity that previously matched the query but no longer does MUST be returned as a "@removed" entry. - Entities that have changed MUST be included in the set using their standard representation. - Services MAY add additional metadata to the "@removed" node, such as a reason for removal, or a "removed at" timestamp. We recommend teams coordinate with the Microsoft REST API Guidelines Working Group on extensions to help maintain consistency. The delta link MUST NOT encode any client top or skip value. ### 10.2. Entity representation Added and updated entities are represented in the entity set using their standard representation. From the perspective of the set, there is no difference between an added or updated entity. Removed entities are represented using only their "id" and an "@removed" node. The presence of an "@removed" node MUST represent the removal of the entry from the set. ### 10.3. Obtaining a delta link A delta link is obtained by querying a collection or entity and appending a $delta query string parameter. For example: ```http GET https://api.contoso.com/v1.0/people?$delta HTTP/1.1 Accept: application/json HTTP/1.1 200 OK Content-Type: application/json { "value":[ { "id": "1", "name": "Matt"}, { "id": "2", "name": "Mark"}, { "id": "3", "name": "John"} ], "@deltaLink": "{opaqueUrl}" } ``` Note: If the collection is paginated the deltaLink will only be present on the final page but MUST reflect any changes to the data returned across all pages. ### 10.4. Contents of a delta link response Added/Updated entries MUST appear as regular JSON objects, with regular item properties. Returning the added/modified items in their regular representation allows the client to merge them into their existing "cache" using standard merge concepts based on the "id" field. Entries removed from the defined collection MUST be included in the response. Items removed from the set MUST be represented using only their "id" and an "@removed" node. ### 10.5. Using a delta link The client requests changes by invoking the GET method on the delta link. The client MUST use the delta URL as is -- in other words the client MUST NOT modify the URL in any way (e.g., parsing it and adding additional query string parameters). In this example: ```http GET https://{opaqueUrl} HTTP/1.1 Accept: application/json HTTP/1.1 200 OK Content-Type: application/json { "value":[ { "id": "1", "name": "Mat"}, { "id": "2", "name": "Marc"}, { "id": "3", "@removed": {} }, { "id": "4", "name": "Luc"} ], "@deltaLink": "{opaqueUrl}" } ``` The results of a request against the delta link may span multiple pages but MUST be ordered by the service across all pages in such a way as to ensure a deterministic result when applied in order to the response that contained the delta link. If no changes have occurred, the response is an empty collection that contains a delta link for subsequent changes if requested. This delta link MAY be identical to the delta link resulting in the empty collection of changes. If the delta link is no longer valid, the service MUST respond with _410 Gone_. The response SHOULD include a Location header that the client can use to retrieve a new baseline set of results. ## 11. JSON standardizations ### 11.1. JSON formatting standardization for primitive types Primitive values MUST be serialized to JSON following the rules of [RFC8259][rfc-8259]. **Important note for 64bit integers:** JavaScript will silently truncate integers larger than `Number.MAX_SAFE_INTEGER` (2^53-1) or numbers smaller than `Number.MIN_SAFE_INTEGER` (-2^53+1). If the service is expected to return integer values outside the range of safe values, strongly consider returning the value as a string in order to maximize interoperability and avoid data loss. ### 11.2. Guidelines for dates and times #### 11.2.1. Producing dates Services MUST produce dates using the `DateLiteral` format, and SHOULD use the `Iso8601Literal` format unless there are compelling reasons to do otherwise. Services that do use the `StructuredDateLiteral` format MUST NOT produce dates using the `T` kind unless BOTH the additional precision is REQUIRED, and ECMAScript clients are explicitly unsupported. (Non-Normative statement: When deciding which particular `DateKind` to standardize on, the approximate order of preference is `E, C, U, W, O, X, I, T`. This optimizes for ECMAScript, .NET, and C++ programmers, in that order.) #### 11.2.2. Consuming dates Services MUST accept dates from clients that use the same `DateLiteral` format (including the `DateKind`, if applicable) that they produce, and SHOULD accept dates using any `DateLiteral` format. #### 11.2.3. Compatibility Services MUST use the same `DateLiteral` format (including the same `DateKind`, if applicable) for all resources of the same type, and SHOULD use the same `DateLiteral` format (and `DateKind`, if applicable) for all resources across the entire service. Any change to the `DateLiteral` format produced by the service (including the `DateKind`, if applicable) and any reductions in the `DateLiteral` formats (and `DateKind`, if applicable) accepted by the service MUST be treated as a breaking change. Any widening of the `DateLiteral` formats accepted by the service is NOT considered a breaking change. ### 11.3. JSON serialization of dates and times Round-tripping serialized dates with JSON is a hard problem. Although ECMAScript supports literals for most built-in types, it does not define a literal format for dates. The Web has coalesced around the [ECMAScript subset of ISO 8601 date formats (ISO 8601)][iso-8601], but there are situations where this format is not desirable. For those cases, this document defines a JSON serialization format that can be used to unambiguously represent dates in different formats. Other serialization formats (such as XML) could be derived from this format. #### 11.3.1. The `DateLiteral` format Dates represented in JSON are serialized using the following grammar. Informally, a `DateValue` is either an ISO 8601-formatted string or a JSON object containing two properties named `kind` and `value` that together define a point in time. The following is not a context-free grammar; in particular, the interpretation of `DateValue` depends on the value of `DateKind`, but this minimizes the number of productions required to describe the format. ``` DateLiteral: Iso8601Literal StructuredDateLiteral Iso8601Literal: A string literal as defined in https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.1.15. Note that the full grammar for ISO 8601 (such as "basic format" without separators) is not supported. All dates default to UTC unless specified otherwise. StructuredDateLiteral: { DateKindProperty , DateValueProperty } { DateValueProperty , DateKindProperty } DateKindProperty "kind" : DateKind DateKind: "C" ; see below "E" ; see below "I" ; see below "O" ; see below "T" ; see below "U" ; see below "W" ; see below "X" ; see below DateValueProperty: "value" : DateValue DateValue: UnsignedInteger ; not defined here SignedInteger ; not defined here RealNumber ; not defined here Iso8601Literal ; as above ``` #### 11.3.2. Commentary on date formatting A `DateLiteral` using the `Iso8601Literal` production is relatively straightforward. Here is an example of an object with a property named `creationDate` that is set to February 13, 2015, at 1:15 p.m. UTC: ```json { "creationDate" : "2015-02-13T13:15Z" } ``` The `StructuredDateLiteral` consists of a `DateKind` and an accompanying `DateValue` whose valid values (and their interpretation) depend on the `DateKind`. The following table describes the valid combinations and their meaning: DateKind | DateValue | Colloquial Name & Interpretation | More Info -------- | --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------- C | UnsignedInteger | "CLR"; number of milliseconds since midnight January 1, 0001; negative values are not allowed. *See note below.* | [MSDN][clr-time] E | SignedInteger | "ECMAScript"; number of milliseconds since midnight, January 1, 1970. | [ECMA International][ecmascript-time] I | Iso8601Literal | "ISO 8601"; a string limited to the ECMAScript subset. | O | RealNumber | "OLE Date"; integral part is the number of days since midnight, December 31, 1899, and fractional part is the time within the day (0.5 = midday). | [MSDN][ole-date] T | SignedInteger | "Ticks"; number of ticks (100-nanosecond intervals) since midnight January 1, 1601. *See note below.* | [MSDN][ticks-time] U | SignedInteger | "UNIX"; number of seconds since midnight, January 1, 1970. | [MSDN][unix-time] W | SignedInteger | "Windows"; number of milliseconds since midnight January 1, 1601. *See note below.* | [MSDN][windows-time] X | RealNumber | "Excel"; as for `O` but the year 1900 is incorrectly treated as a leap year, and day 0 is "January 0 (zero)". | [Microsoft Support][excel-time] **Important note for `C` and `W` kinds:** The native CLR and Windows times are represented by 100-nanosecond "tick" values. To interoperate with ECMAScript clients that have limited precision, _these values MUST be converted to and from milliseconds_ when (de)serialized as a `DateLiteral`. One millisecond is equivalent to 10,000 ticks. **Important note for `T` kind:** This kind preserves the full fidelity of the Windows native time formats (and is trivially convertible to and from the native CLR format) but is incompatible with ECMAScript clients. Therefore, its use SHOULD be limited to only those scenarios that both require the additional precision and do not need to interoperate with ECMAScript clients. Here is the same example of an object with a property named creationDate that is set to February 13, 2015, at 1:15 p.m. UTC, using several formats: ```json [ { "creationDate" : { "kind" : "O", "value" : 42048.55 } }, { "creationDate" : { "kind" : "E", "value" : 1423862100000 } } ] ``` One of the benefits of separating the kind from the value is that once a client knows the kind used by a particular service, it can interpret the value without requiring any additional parsing. In the common case of the value being a number, this makes coding easier for developers: ```csharp // We know this service always gives out ECMAScript-format dates var date = new Date(serverResponse.someObject.creationDate.value); ``` ### 11.4. Durations [Durations][wikipedia-iso8601-durations] need to be serialized in conformance with [ISO 8601][wikipedia-iso8601-durations]. Durations are "represented by the format `P[n]Y[n]M[n]DT[n]H[n]M[n]S`." From the standard: - P is the duration designator (historically called "period") placed at the start of the duration representation. - Y is the year designator that follows the value for the number of years. - M is the month designator that follows the value for the number of months. - W is the week designator that follows the value for the number of weeks. - D is the day designator that follows the value for the number of days. - T is the time designator that precedes the time components of the representation. - H is the hour designator that follows the value for the number of hours. - M is the minute designator that follows the value for the number of minutes. - S is the second designator that follows the value for the number of seconds. For example, "P3Y6M4DT12H30M5S" represents a duration of "three years, six months, four days, twelve hours, thirty minutes, and five seconds." ### 11.5. Intervals [Intervals][wikipedia-iso8601-intervals] are defined as part of [ISO 8601][wikipedia-iso8601-intervals]. - Start and end, such as "2007-03-01T13:00:00Z/2008-05-11T15:30:00Z" - Start and duration, such as "2007-03-01T13:00:00Z/P1Y2M10DT2H30M" - Duration and end, such as "P1Y2M10DT2H30M/2008-05-11T15:30:00Z" - Duration only, such as "P1Y2M10DT2H30M", with additional context information ### 11.6. Repeating intervals [Repeating Intervals][wikipedia-iso8601-repeatingintervals], as per [ISO 8601][wikipedia-iso8601-repeatingintervals], are: > Formed by adding "R[n]/" to the beginning of an interval expression, where R is used as the letter itself and [n] is replaced by the number of repetitions. Leaving out the value for [n] means an unbounded number of repetitions. For example, to repeat the interval of "P1Y2M10DT2H30M" five times starting at "2008-03-01T13:00:00Z", use "R5/2008-03-01T13:00:00Z/P1Y2M10DT2H30M." ## 12. Versioning **All APIs compliant with the Microsoft REST API Guidelines MUST support explicit versioning.** It's critical that clients can count on services to be stable over time, and it's critical that services can add features and make changes. ### 12.1. Versioning formats Services are versioned using a Major.Minor versioning scheme. Services MAY opt for a "Major" only version scheme in which case the ".0" is implied and all other rules in this section apply. Two options for specifying the version of a REST API request are supported: - Embedded in the path of the request URL, at the end of the service root: `https://api.contoso.com/v1.0/products/users` - As a query string parameter of the URL: `https://api.contoso.com/products/users?api-version=1.0` Guidance for choosing between the two options is as follows: 1. Services co-located behind a DNS endpoint MUST use the same versioning mechanism. 2. In this scenario, a consistent user experience across the endpoint is paramount. The Microsoft REST API Guidelines Working Group recommends that new top-level DNS endpoints are not created without explicit conversations with your organization's leadership team. 3. Services that guarantee the stability of their REST API's URL paths, even through future versions of the API, MAY adopt the query string parameter mechanism. This means the naming and structure of the relationships described in the API cannot evolve after the API ships, even across versions with breaking changes. 4. Services that cannot ensure URL path stability across future versions MUST embed the version in the URL path. Certain bedrock services such as Microsoft's Azure Active Directory may be exposed behind multiple endpoints. Such services MUST support the versioning mechanisms of each endpoint, even if that means supporting multiple versioning mechanisms. #### 12.1.1. Group versioning Group versioning is an OPTIONAL feature that MAY be offered on services using the query string parameter mechanism. Group versions allow for logical grouping of API endpoints under a common versioning moniker. This allows developers to look up a single version number and use it across multiple endpoints. Group version numbers are well known, and services SHOULD reject any unrecognized values. Internally, services will take a Group Version and map it to the appropriate Major.Minor version. The Group Version format is defined as YYYY-MM-DD, for example 2012-12-07 for December 7, 2012. This Date versioning format applies only to Group Versions and SHOULD NOT be used as an alternative to Major.Minor versioning. ##### Examples of group versioning | Group | Major.Minor | |:-----------|:------------| | 2012-12-01 | 1.0 | | | 1.1 | | | 1.2 | | 2013-03-21 | 1.0 | | | 2.0 | | | 3.0 | | | 3.1 | | | 3.2 | | | 3.3 | Version Format | Example | Interpretation ----------------------------- | ---------------------- | ------------------------------------------ {groupVersion} | 2013-03-21, 2012-12-01 | 3.3, 1.2 {majorVersion} | 3 | 3.0 {majorVersion}.{minorVersion} | 1.2 | 1.2 Clients can specify either the group version or the Major.Minor version: For example: ```http GET http://api.contoso.com/acct1/c1/blob2?api-version=1.0 ``` ```http PUT http://api.contoso.com/acct1/c1/b2?api-version=2011-12-07 ``` ### 12.2. When to version Services MUST increment their version number in response to any breaking API change. See the following section for a detailed discussion of what constitutes a breaking change. Services MAY increment their version number for nonbreaking changes as well, if desired. Use a new major version number to signal that support for existing clients will be deprecated in the future. When introducing a new major version, services MUST provide a clear upgrade path for existing clients and develop a plan for deprecation that is consistent with their business group's policies. Services SHOULD use a new minor version number for all other changes. Online documentation of versioned services MUST indicate the current support status of each previous API version and provide a path to the latest version. ### 12.3. Definition of a breaking change Changes to the contract of an API are considered a breaking change. Changes that impact the backwards compatibility of an API are a breaking change. Teams MAY define backwards compatibility as their business needs require. For example, Azure defines the addition of a new JSON field in a response to be not backwards compatible. Office 365 has a looser definition of backwards compatibility and allows JSON fields to be added to responses. Clear examples of breaking changes: 1. Removing or renaming APIs or API parameters 2. Changes in behavior for an existing API 3. Changes in Error Codes and Fault Contracts 4. Anything that would violate the [Principle of Least Astonishment][principle-of-least-astonishment] Services MUST explicitly define their definition of a breaking change, especially with regard to adding new fields to JSON responses and adding new API arguments with default fields. Services that are co-located behind a DNS Endpoint with other services MUST be consistent in defining contract extensibility. The applicable changes described [in this section of the OData V4 spec][odata-breaking-changes] SHOULD be considered part of the minimum bar that all services MUST consider a breaking change. ## 13. Long running operations Long running operations, sometimes called async operations, tend to mean different things to different people. This section sets forth guidance around different types of long running operations, and describes the wire protocols and best practices for these types of operations. 1. One or more clients MUST be able to monitor and operate on the same resource at the same time. 2. The state of the system SHOULD be discoverable and testable at all times. Clients SHOULD be able to determine the system state even if the operation tracking resource is no longer active. The act of querying the state of a long running operation should itself leverage principles of the web. i.e. well-defined resources with uniform interface semantics. Clients MAY issue a GET on some resource to determine the state of a long running operation 3. Long running operations SHOULD work for clients looking to "Fire and Forget" and for clients looking to actively monitor and act upon results. 4. Cancellation does not explicitly mean rollback. On a per-API defined case it may mean rollback, or compensation, or completion, or partial completion, etc. Following a cancelled operation, It SHOULD NOT be a client's responsibility to return the service to a consistent state which allows continued service. ### 13.1. Resource based long running operations (RELO) Resource based modeling is where the status of an operation is encoded in the resource and the wire protocol used is the standard synchronous protocol. In this model state transitions are well defined and goal states are similarly defined. _This is the preferred model for long running operations and should be used wherever possible._ Avoiding the complexity and mechanics of the LRO Wire Protocol makes things simpler for our users and tooling chain. An example may be a machine reboot, where the operation itself completes synchronously but the GET operation on the virtual machine resource would have a "state: Rebooting", "state: Running" that could be queried at any time. This model MAY integrate Push Notifications. While most operations are likely to be POST semantics, in addition to POST semantics, services MAY support PUT semantics via routing to simplify their APIs. For example, a user that wants to create a database named "db1" could call: ```http PUT https://api.contoso.com/v1.0/databases/db1 ``` In this scenario the databases segment is processing the PUT operation. Services MAY also use the hybrid defined below. ### 13.2. Stepwise long running operations A stepwise operation is one that takes a long, and often unpredictable, length of time to complete, and doesn't offer state transition modeled in the resource. This section outlines the approach that services should use to expose such long running operations. Service MAY expose stepwise operations. > Stepwise Long Running Operations are sometimes called "Async" operations. This causes confusion, as it mixes elements of platforms ("Async / await", "promises", "futures") with elements of API operation. This document uses the term "Stepwise Long Running Operation" or often just "Stepwise Operation" to avoid confusion over the word "Async". Services MUST perform as much synchronous validation as practical on stepwise requests. Services MUST prioritize returning errors in a synchronous way, with the goal of having only "Valid" operations processed using the long running operation wire protocol. For an API that's defined as a Stepwise Long Running Operation the service MUST go through the Stepwise Long Running Operation flow even if the operation can be completed immediately. In other words, APIs must adopt and stick with an LRO pattern and not change patterns based on circumstance. #### 13.2.1. PUT Services MAY enable PUT requests for entity creation. ```http PUT https://api.contoso.com/v1.0/databases/db1 ``` In this scenario the _databases_ segment is processing the PUT operation. ```http HTTP/1.1 202 Accepted Operation-Location: https://api.contoso.com/v1.0/operations/123 ``` For services that need to return a 201 Created here, use the hybrid flow described below. The 202 Accepted should return no body. The 201 Created case should return the body of the target resource. #### 13.2.2. POST Services MAY enable POST requests for entity creation. ```http POST https://api.contoso.com/v1.0/databases/ { "fileName": "someFile.db", "color": "red" } ``` ```http HTTP/1.1 202 Accepted Operation-Location: https://api.contoso.com/v1.0/operations/123 ``` #### 13.2.3. POST, hybrid model Services MAY respond synchronously to POST requests to collections that create a resource even if the resources aren't fully created when the response is generated. In order to use this pattern, the response MUST include a representation of the incomplete resource and an indication that it is incomplete. For example: ```http POST https://api.contoso.com/v1.0/databases/ HTTP/1.1 Host: api.contoso.com Content-Type: application/json Accept: application/json { "fileName": "someFile.db", "color": "red" } ``` Service response says the database has been created, but indicates the request is not completed by including the Operation-Location header. In this case the status property in the response payload also indicates the operation has not fully completed. ```http HTTP/1.1 201 Created Location: https://api.contoso.com/v1.0/databases/db1 Operation-Location: https://api.contoso.com/v1.0/operations/123 { "databaseName": "db1", "color": "red", "Status": "Provisioning", [ … other fields for "database" …] } ``` #### 13.2.4. Operations resource Services MAY provide a "/operations" resource at the tenant level. Services that provide the "/operations" resource MUST provide GET semantics. GET MUST enumerate the set of operations, following standard pagination, sorting, and filtering semantics. The default sort order for this operation MUST be: Primary Sort | Secondary Sort ---------------------- | ----------------------- Not Started Operations | Operation Creation Time Running Operations | Operation Creation Time Completed Operations | Operation Creation Time Note that "Completed Operations" is a goal state (see below), and may actually be any of several different states such as "successful", "cancelled", "failed" and so forth. #### 13.2.5. Operation resource An operation is a user addressable resource that tracks a stepwise long running operation. Operations MUST support GET semantics. The GET operation against an operation MUST return: 1. The operation resource, it's state, and any extended state relevant to the particular API. 2. 200 OK as the response code. Services MAY support operation cancellation by exposing DELETE on the operation. If supported DELETE operations MUST be idempotent. > Note: From an API design perspective, cancellation does not explicitly mean rollback. On a per-API defined case it may mean rollback, or compensation, or completion, or partial completion, etc. Following a cancelled operation, It SHOULD NOT be a client's responsibility to return the service to a consistent state which allows continued service. Services that do not support operation cancellation MUST return a 405 Method Not Allowed in the event of a DELETE. Operations MUST support the following states: 1. NotStarted 2. Running 3. Succeeded. Terminal State. 4. Failed. Terminal State. Services MAY add additional states, such as "Cancelled" or "Partially Completed". Services that support cancellation MUST sufficiently describe their cancellation such that the state of the system can be accurately determined, and any compensating actions may be run. Services that support additional states should consider this list of canonical names and avoid creating new names if possible: Cancelling, Cancelled, Aborting, Aborted, Tombstone, Deleting, Deleted. An operation MUST contain, and provide in the GET response, the following information: 1. The timestamp when the operation was created. 2. A timestamp for when the current state was entered. 3. The operation state (notstarted / running / completed). Services MAY add additional, API specific, fields into the operation. The operation status JSON returned looks like: ```json { "createdDateTime": "2015-06-19T12-01-03.45Z", "lastActionDateTime": "2015-06-19T12-01-03.45Z", "status": "notstarted | running | succeeded | failed" } ``` ##### Percent complete Sometimes it is impossible for services to know with any accuracy when an operation will complete. Which makes using the Retry-After header problematic. In that case, services MAY include, in the operationStatus JSON, a percent complete field. ```json { "createdDateTime": "2015-06-19T12-01-03.45Z", "percentComplete": "50", "status": "running" } ``` In this example the server has indicated to the client that the long running operation is 50% complete. ##### Target resource location For operations that result in, or manipulate, a resource the service MUST include the target resource location in the status upon operation completion. ```json { "createdDateTime": "2015-06-19T12-01-03.45Z", "lastActionDateTime": "2015-06-19T12-06-03.0024Z", "status": "succeeded", "resourceLocation": "https://api.contoso.com/v1.0/databases/db1" } ``` #### 13.2.6. Operation tombstones Services MAY choose to support tombstoned operations. Services MAY choose to delete tombstones after a service defined period of time. #### 13.2.7. The typical flow, polling - Client invokes a stepwise operation by invoking an action using POST - The server MUST indicate the request has been started by responding with a 202 Accepted status code. The response SHOULD include the location header containing a URL that the client should poll for the results after waiting the number of seconds specified in the Retry-After header. - Client polls the location until receiving a 200 response with a terminal operation state. ##### Example of the typical flow, polling Client invokes the restart action: ```http POST https://api.contoso.com/v1.0/databases HTTP/1.1 Accept: application/json { "fromFile": "myFile.db", "color": "red" } ``` The server response indicates the request has been created. ```http HTTP/1.1 202 Accepted Operation-Location: https://api.contoso.com/v1.0/operations/123 ``` Client waits for a period of time then invokes another request to try to get the operation status. ```http GET https://api.contoso.com/v1.0/operations/123 Accept: application/json ``` Server responds that results are still not ready and optionally provides a recommendation to wait 30 seconds. ```http HTTP/1.1 200 OK Retry-After: 30 { "createdDateTime": "2015-06-19T12-01-03.4Z", "status": "running" } ``` Client waits the recommended 30 seconds and then invokes another request to get the results of the operation. ```http GET https://api.contoso.com/v1.0/operations/123 Accept: application/json ``` Server responds with a "status:succeeded" operation that includes the resource location. ```http HTTP/1.1 200 OK Content-Type: application/json { "createdDateTime": "2015-06-19T12-01-03.45Z", "lastActionDateTime": "2015-06-19T12-06-03.0024Z", "status": "succeeded", "resourceLocation": "https://api.contoso.com/v1.0/databases/db1" } ``` #### 13.2.8. The typical flow, push notifications 1. Client invokes a long running operation by invoking an action using POST. The client has a push notification already setup on the parent resource. 2. The service indicates the request has been started by responding with a 202 Accepted status code. The client ignores everything else. 3. Upon completion of the overall operation the service pushes a notification via the subscription on the parent resource. 4. The client retrieves the operation result via the resource URL. ##### Example of the typical flow, push notifications existing subscription Client invokes the backup action. The client already has a push notification subscription setup for db1. ```http POST https://api.contoso.com/v1.0/databases/db1?backup HTTP/1.1 Accept: application/json ``` The server response indicates the request has been accepted. ```http HTTP/1.1 202 Accepted Operation-Location: https://api.contoso.com/v1.0/operations/123 ``` The caller ignores all the headers in the return. The target URL receives a push notification when the operation is complete. ```http HTTP/1.1 200 OK Content-Type: application/json { "value": [ { "subscriptionId": "1234-5678-1111-2222", "context": "subscription context that was specified at setup", "resourceUrl": "https://api.contoso.com/v1.0/databases/db1", "userId" : "contoso.com/user@contoso.com", "tenantId" : "contoso.com" } ] } ``` #### 13.2.9. Retry-After In the examples above the Retry-After header indicates the number of seconds that the client should wait before trying to get the result from the URL identified by the location header. The HTTP specification allows the Retry-After header to alternatively specify a HTTP date, so clients should be prepared to handle this as well. ```http HTTP/1.1 202 Accepted Operation-Location: http://api.contoso.com/v1.0/operations/123 Retry-After: 60 ``` Note: The use of the HTTP Date is inconsistent with the use of ISO 8601 Date Format used throughout this document, but is explicitly defined by the HTTP standard in [RFC 7231][rfc-7231-7-1-1-1]. Services SHOULD prefer the integer number of seconds (in decimal) format over the HTTP date format. ### 13.3. Retention policy for operation results In some situations, the result of a long running operation is not a resource that can be addressed. For example, if you invoke a long running Action that returns a Boolean (rather than a resource). In these situations, the Location header points to a place where the Boolean result can be retrieved. Which begs the question: "How long should operation results be retained?" A recommended minimum retention time is 24 hours. Operations SHOULD transition to "tombstone" for an additional period of time prior to being purged from the system. ## 14. Throttling, Quotas, and Limits ### 14.1. Principles Services should be as responsive as possible, so as not to block callers. As a rule of thumb any API call that is expected to take longer than 0.5 seconds in the 99th percentile, should consider using the Long-running Operations pattern for those calls. Obviously, services cannot guarantee these response times in the face of potentially unlimited load from callers. Services should therefore design and document call request limits for clients, and respond with appropriate, actionable errors and error messages if these limits are exceeded. Services should respond quickly with an error when they are generally overloaded, rather than simply respond slowly. Finally, many services will have quotas on calls, perhaps a number of operations per hour or day, usually related to a service plan or price. When these quotas are exceeded services must also provide immediate, actionable errors. Quotas and Limits should be scoped to a customer unit: a subscription, a tenant, an application, a plan, or without any other identification a range of ip addresses…as appropriate to the service goals so that the load is properly shared and one unit is not interfering with another. ### 14.2. Return Codes (429 vs 503) HTTP specifies two return codes for these scenarios: '429 Too Many Requests' and '503 Service Unavailable'. Services should use 429 for cases where clients are making too many calls and can fix the situation by changing their call pattern. Services should respond with 503 in cases where general load or other problems outside the control of the individual callers is responsible for the service becoming slow. In all cases, services should also provide information suggesting how long the callers should wait before trying in again. Clients should respect these headers and also implement other transient fault handling techniques. However, there may be clients that simply retry immediately upon failure, potentially increasing the load on the service. To handle this, services should design so that returning 429 or 503 is as inexpensive as possible, either by putting in special fastpath code, or ideally by depending on a common frontdoor or load balancer that provides this functionality. ### 14.3. Retry-After and RateLimit Headers The Retry-After header is the standard way for responding to clients who are being throttled. It is also common, but optional, in the case of limits and quotas (but not overall system load) to respond with header describing the limit that was exceeded. However, services across Microsoft and the industry use a wide range of different headers for this purpose. We recommend using three headers to describe the limit, the number of calls remaining under the limit, and the time when the limit will reset. However, other headers may be appropriate for specific types of limits. In all cases these must be documented. ### 14.4. Service Guidance Services should choose time windows as appropriate for the SLAs or business objectives. In the case of Quotas, the Retry-After time and time window may be very long (hours, days, weeks, even months. Services use 429 to indicate the specific caller has made too many calls, and 503 to indicate that the service is load shedding but that it is not the caller’s responsibility. #### 14.4.1. Responsiveness 1. Services MUST respond quickly in all circumstances, even when under load. 2. Calls that take longer than 1s to respond in the 99th percentile SHOULD use the Long-Running Operation pattern 3. Calls that take longer than 0.5s to respond in the 99th percentile should strongly consider the LRO pattern 4. Services SHOULD NOT introduce sleeps, pauses, etc. that block callers or are not actionable (“tar-pitting”). #### 14.4.2. Rate Limits and Quotas When a caller has made too many calls 1. Services MUST return a 429 code 2. Services MUST return a standard error response describing the specifics so that a programmer can make appropriate changes 3. Services MUST return a Retry-After header that indicates how long clients should wait before retrying 4. Services MAY return RateLimit headers that document the limit or quota that has been exceeded 5. Services MAY return RateLimit-Limit: the number of calls the client is allowed to make in a time window 6. Services MAY return RateLimit-Remaining: the number of calls remaining in the time window 7. Services MAY return RateLimit-Reset: the time at which the window resets in UTC epoch seconds 8. Services MAY return other service specific RateLimit headers as appropriate for more detailed information or specific limits or quotas #### 14.4.3. Overloaded services When services are generally overloaded and load shedding 1. Services MUST Return a 503 code 2. Services MUST Return a standard error response (see 7.10.2) describing the specifics so that a programmer can make appropriate changes 3. Services MUST Return a Retry-After header that indicates how long clients should wait before retrying 4. In the 503 case, the service SHOULD NOT return RateLimit headers #### 14.4.4. Example Response ```http HTTP/1.1 429 Too Many Requests Content-Type: application/json Retry-After: 5 RateLimit-Limit: 1000 RateLimit-Remaining: 0 RateLimit-Reset: 1538152773 { "error": { "code": "requestLimitExceeded", "message": "The caller has made too many requests in the time period.", "details": { "code": "RateLimit", "limit": "1000", "remaining": "0", "reset": "1538152773", } } } ``` ### 14.5. Caller Guidance Callers include all users of the API: tools, portals, other services, not just user clients 1. Callers MUST wait for a minimum of time indicated in a response with a Retry-After before retrying a request. 2. Callers MAY assume that request is retriable after receiving a response with a Retry-After header without making any changes to the request. 3. Clients SHOULD use shared SDKs and common transient fault libraries to implement the proper behavior See: https://docs.microsoft.com/en-us/azure/architecture/best-practices/transient-faults ### 14.6. Handling callers that ignore Retry-After headers Ideally, 429 and 503 returns are so low cost that even clients that retry immediately can be handled. In these cases, if possible the service team should make an effort to contact or fix the client. If it is a known partner, a bug or incident should be filed. In extreme cases it may be necessary to use DoS style protections such as blocking the caller. ## 15. Push notifications via webhooks ### 15.1. Scope Services MAY implement push notifications via web hooks. This section addresses the following key scenario: > Push notification via HTTP Callbacks, often called Web Hooks, to publicly-addressable servers. The approach set forth is chosen due to its simplicity, broad applicability, and low barrier to entry for service subscribers. It's intended as a minimal set of requirements and as a starting point for additional functionality. ### 15.2. Principles The core principles for services that support web hooks are: 1. Services MUST implement at least a poke/pull model. In the poke/pull model, a notification is sent to a client, and clients then send a request to get the current state or the record of change since their last notification. This approach avoids complexities around message ordering, missed messages, and change sets. Services MAY add more data to provide rich notifications. 2. Services MUST implement the challenge/response protocol for configuring callback URLs. 3. Services SHOULD have a recommended age-out period, with flexibility for services to vary based on scenario. 4. Services SHOULD allow subscriptions that are raising successful notifications to live forever and SHOULD be tolerant of reasonable outage periods. 5. Firehose subscriptions MUST be delivered only over HTTPS. Services SHOULD require other subscription types to be HTTPS. See the "Security" section for more details. ### 15.3. Types of subscriptions There are two subscription types, and services MAY implement either, both, or none. The supported subscription types are: 1. Firehose subscriptions – a subscription is manually created for the subscribing application, typically in an app registration portal. Notifications of activity that any users have consented to the app receiving are sent to this single subscription. 2. Per-resource subscriptions – the subscribing application uses code to programmatically create a subscription at runtime for some user-specific entity(s). Services that support both subscription types SHOULD provide differentiated developer experiences for the two types: 1. Firehose – Services MUST NOT require developers to create code except to directly verify and respond to notifications. Services MUST provide administrative UI for subscription management. Services SHOULD NOT assume that end users are aware of the subscription, only the subscribing application's functionality. 2. Per-user – Services MUST provide an API for developers to create and manage subscriptions as part of their app as well as verifying and responding to notifications. Services MAY expect end users to be aware of subscriptions and MUST allow end users to revoke subscriptions where they were created directly in response to user actions. ### 15.4. Call sequences The call sequence for a firehose subscription MUST follow the diagram below. It shows manual registration of application and subscription, and then the end user making use of one of the service's APIs. At this part of the flow, two things MUST be stored: 1. The service MUST store the end user's act of consent to receiving notifications from this specific application (typically a background usage OAUTH scope.) 2. The subscribing application MUST store the end user's tokens in order to call back for details once notified of changes. The final part of the sequence is the notification flow itself. Non-normative implementation guidance: A resource in the service changes and the service needs to run the following logic: 1. Determine the set of users who have access to the resource, and could thus expect apps to receive notifications about it on their behalf. 2. See which of those users have consented to receiving notifications and from which apps. 3. See which apps have registered a firehose subscription. 4. Join 1, 2, 3 to produce the concrete set of notifications that must be sent to apps. It should be noted that the act of user consent and the act of setting up a firehose subscription could arrive in either order. Services SHOULD send notifications with setup processed in either order. ![Firehose subscription setup][websequencediagram-firehose-subscription-setup] For a per-user subscription, app registration is either manual or automated. The call flow for a per-user subscription MUST follow the diagram below. It shows the end user making use of one of the service's APIs, and again, the same two things MUST be stored: 1. The service MUST store the end user's act of consent to receiving notifications from this specific application (typically a background usage OAUTH scope). 2. The subscribing application MUST store the end user's tokens in order to call back for details once notified of changes. In this case, the subscription is set up programmatically using the end-user's token from the subscribing application. The app MUST store the ID of the registered subscription alongside the user tokens. Non normative implementation guidance: In the final part of the sequence, when an item of data in the service changes and the service needs to run the following logic: 1. Find the set of subscriptions that correspond via resource to the data that changed. 2. For subscriptions created under an app+user token, send a notification to the app per subscription with the subscription ID and user id of the subscription-creator. - For subscriptions created with an app only token, check that the owner of the changed data or any user that has visibility of the changed data has consented to notifications to the application, and if so send a set of notifications per user id to the app per subscription with the subscription ID. ![User subscription setup][websequencediagram-user-subscription-setup] ### 15.5. Verifying subscriptions When subscriptions change either programmatically or in response to change via administrative UI portals, the subscribing service needs to be protected from malicious or unexpected calls from services pushing potentially large volumes of notification traffic. For all subscriptions, whether firehose or per-user, services MUST send a verification request as part of creation or modification via portal UI or API request, before sending any other notifications. Verification requests MUST be of the following format as an HTTP/HTTPS POST to the subscription's _notificationUrl_. ```http POST https://{notificationUrl}?validationToken={randomString} ClientState: clientOriginatedOpaqueToken (if provided by client on subscription-creation) Content-Length: 0 ``` For the subscription to be set up, the application MUST respond with 200 OK to this request, with the _validationToken_ value as the sole entity body. Note that if the _notificationUrl_ contains query parameters, the _validationToken_ parameter must be appended with an `&`. If any challenge request does not receive the prescribed response within 5 seconds of sending the request, the service MUST return an error, MUST NOT create the subscription, and MUST NOT send further requests or notifications to _notificationUrl_. Services MAY perform additional validations on URL ownership. ### 15.6. Receiving notifications Services SHOULD send notifications in response to service data changes that do not include details of the changes themselves, but include enough information for the subscribing application to respond appropriately to the following process: 1. Applications MUST identify the correct cached OAuth token to use for a callback 2. Applications MAY look up any previous delta token for the relevant scope of change 3. Applications MUST determine the URL to call to perform the relevant query for the new state of the service, which MAY be a delta query. Services that are providing notifications that will be relayed to end users MAY choose to add more detail to notification packets in order to reduce incoming call load on their service. Such services MUST be clear that notifications are not guaranteed to be delivered and may be lossy or out of order. Notifications MAY be aggregated and sent in batches. Applications MUST be prepared to receive multiple events inside a single push notification. The service MUST send all Web Hook data notifications as POST requests. Services MUST allow for a 30-second timeout for notifications. If a timeout occurs or the application responds with a 5xx response, then the service SHOULD retry the notification with exponential back-off. All other responses will be ignored. The service MUST NOT follow 301/302 redirect requests. #### 15.6.1. Notification payload The basic format for notification payloads is a list of events, each containing the id of the subscription whose referenced resources have changed, the type of change, the resource that should be consumed to identify the exact details of the change and sufficient identity information to look up the token required to call that resource. For a firehose subscription, a concrete example of this may look like: ```json { "value": [ { "subscriptionId": "32b8cbd6174ab18b", "resource": "https://api.contoso.com/v1.0/users/user@contoso.com/files?$delta", "userId" : "", "tenantId" : "" } ] } ``` For a per-user subscription, a concrete example of this may look like: ```json { "value": [ { "subscriptionId": "32b8cbd6174ab183", "clientState": "clientOriginatedOpaqueToken", "expirationDateTime": "2016-02-04T11:23Z", "resource": "https://api.contoso.com/v1.0/users/user@contoso.com/files/$delta", "userId" : "", "tenantId" : "" }, { "subscriptionId": "97b391179fa22", "clientState ": "clientOriginatedOpaqueToken", "expirationDateTime": "2016-02-04T11:23Z", "resource": "https://api.contoso.com/v1.0/users/user@contoso.com/files/$delta", "userId" : "", "tenantId" : "" } ] } ``` Following is a detailed description of the JSON payload. A notification item consists a top-level object that contains an array of events, each of which identified the subscription due to which this notification is being sent. Field | Description ----- | -------------------------------------------------------------------------------------------------- value | Array of events that have been raised within the subscription’s scope since the last notification. Each item of the events array contains the following properties: Field | Description ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- subscriptionId | The id of the subscription due to which this notification has been sent.
Services MUST provide the *subscriptionId* field. clientState | Services MUST provide the *clientState* field if it was provided at subscription creation time. expirationDateTime | Services MUST provide the *expirationDateTime* field if the subscription has one. resource | Services MUST provide the resource field. This URL MUST be considered opaque by the subscribing application. In the case of a richer notification it MAY be subsumed by message content that implicitly contains the resource URL to avoid duplication.
If a service is providing this data as part of a more detailed data packet, then it need not be duplicated. userId | Services MUST provide this field for user-scoped resources. In the case of user-scoped resources, the unique identifier for the user should be used.
In the case of resources shared between a specific set of users, multiple notifications must be sent, passing the unique identifier of each user.
For tenant-scoped resources, the user id of the subscription should be used. tenantId | Services that wish to support cross-tenant requests SHOULD provide this field. Services that provide notifications on tenant-scoped data MUST send this field. ### 15.7. Managing subscriptions programmatically For per-user subscriptions, an API MUST be provided to create and manage subscriptions. The API must support at least the operations described here. #### 15.7.1. Creating subscriptions A client creates a subscription by issuing a POST request against the subscriptions resource. The subscription namespace is client-defined via the POST operation. ``` https://api.contoso.com/apiVersion/$subscriptions ``` The POST request contains a single subscription object to be created. That subscription object has the following properties: Property Name | Required | Notes --------------- | -------- | --------------------------------------------------------------------------------------------------------------------------- resource | Yes | Resource path to watch. notificationUrl | Yes | The target web hook URL. clientState | No | Opaque string passed back to the client on all notifications. Callers may choose to use this to provide tagging mechanisms. If the subscription was successfully created, the service MUST respond with the status code 201 CREATED and a body containing at least the following properties: Property Name | Required | Notes ------------------ | -------- | ------------------------------------------------------------------------------------------- id | Yes | Unique ID of the new subscription that can be used later to update/delete the subscription. expirationDateTime | No | Uses existing Microsoft REST API Guidelines defined time formats. Creation of subscriptions SHOULD be idempotent. The combination of properties scoped to the auth token, provides a uniqueness constraint. Below is an example request using a User + Application principal to subscribe to notifications from a file: ```http POST https://api.contoso.com/files/v1.0/$subscriptions HTTP 1.1 Authorization: Bearer {UserPrincipalBearerToken} { "resource": "http://api.service.com/v1.0/files/file1.txt", "notificationUrl": "https://contoso.com/myCallbacks", "clientState": "clientOriginatedOpaqueToken" } ``` The service SHOULD respond to such a message with a response format minimally like this: ```json { "id": "32b8cbd6174ab18b", "expirationDateTime": "2016-02-04T11:23Z" } ``` Below is an example using an Application-Only principal where the application is watching all files to which it's authorized: ```http POST https://api.contoso.com/files/v1.0/$subscriptions HTTP 1.1 Authorization: Bearer {ApplicationPrincipalBearerToken} { "resource": "All.Files", "notificationUrl": "https://contoso.com/myCallbacks", "clientState": "clientOriginatedOpaqueToken" } ``` The service SHOULD respond to such a message with a response format minimally like this: ```json { "id": "8cbd6174abb391179", "expirationDateTime": "2016-02-04T11:23Z" } ``` #### 15.7.2. Updating subscriptions Services MAY support amending subscriptions. To update the properties of an existing subscription, clients use PATCH requests providing the ID and the properties that need to change. Omitted properties will retain their values. To delete a property, assign a value of JSON null to it. As with creation, subscriptions are individually managed. The following request changes the notification URL of an existing subscription: ```http PATCH https://api.contoso.com/files/v1.0/$subscriptions/{id} HTTP 1.1 Authorization: Bearer {UserPrincipalBearerToken} { "notificationUrl": "https://contoso.com/myNewCallback" } ``` If the PATCH request contains a new _notificationUrl_, the server MUST perform validation on it as described above. If the new URL fails to validate, the service MUST fail the PATCH request and leave the subscription in its previous state. The service MUST return an empty body and `204 No Content` to indicate a successful patch. The service MUST return an error body and status code if the patch failed. The operation MUST succeed or fail atomically. #### 15.7.3. Deleting subscriptions Services MUST support deleting subscriptions. Existing subscriptions can be deleted by making a DELETE request against the subscription resource: ```http DELETE https://api.contoso.com/files/v1.0/$subscriptions/{id} HTTP 1.1 Authorization: Bearer {UserPrincipalBearerToken} ``` As with update, the service MUST return `204 No Content` for a successful delete, or an error body and status code to indicate failure. #### 15.7.4. Enumerating subscriptions To get a list of active subscriptions, clients issue a GET request against the subscriptions resource using a User + Application or Application-Only bearer token: ```http GET https://api.contoso.com/files/v1.0/$subscriptions HTTP 1.1 Authorization: Bearer {UserPrincipalBearerToken} ``` The service MUST return a format as below using a User + Application principal bearer token: ```json { "value": [ { "id": "32b8cbd6174ab18b", "resource": " http://api.contoso.com/v1.0/files/file1.txt", "notificationUrl": "https://contoso.com/myCallbacks", "clientState": "clientOriginatedOpaqueToken", "expirationDateTime": "2016-02-04T11:23Z" } ] } ``` An example that may be returned using Application-Only principal bearer token: ```json { "value": [ { "id": "6174ab18bfa22", "resource": "All.Files ", "notificationUrl": "https://contoso.com/myCallbacks", "clientState": "clientOriginatedOpaqueToken", "expirationDateTime": "2016-02-04T11:23Z" } ] } ``` ### 15.8. Security All service URLs must be HTTPS (that is, all inbound calls MUST be HTTPS). Services that deal with Web Hooks MUST accept HTTPS. We recommend that services that allow client defined Web Hook Callback URLs SHOULD NOT transmit data over HTTP. This is because information can be inadvertently exposed via client, network, server logs and other mechanisms. However, there are scenarios where the above recommendations cannot be followed due to client endpoint or software limitations. Consequently, services MAY allow web hook URLs that are HTTP. Furthermore, services that allow client defined HTTP web hooks callback URLs SHOULD be compliant with privacy policy specified by engineering leadership. This will typically include recommending that clients prefer SSL connections and adhere to special precautions to ensure that logs and other service data collection are properly handled. For example, services may not want to require developers to generate certificates to onboard. Services might only enable this on test accounts. ## 16. Unsupported requests RESTful API clients MAY request functionality that is currently unsupported. RESTful APIs MUST respond to valid but unsupported requests consistent with this section. ### 16.1. Essential guidance RESTful APIs will often choose to limit functionality that can be performed by clients. For instance, auditing systems allow records to be created but not modified or deleted. Similarly, some APIs will expose collections but require or otherwise limit filtering and ordering criteria, or MAY not support client-driven pagination. ### 16.2. Feature allow list If a service does not support any of the below API features, then an error response MUST be provided if the feature is requested by a caller. The features are: - Key Addressing in a collection, such as: `https://api.contoso.com/v1.0/people/user1@contoso.com` - Filtering a collection by a property value, such as: `https://api.contoso.com/v1.0/people?$filter=name eq 'david'` - Filtering a collection by range, such as: `http://api.contoso.com/v1.0/people?$filter=hireDate ge 2014-01-01 and hireDate le 2014-12-31` - Client-driven pagination via $top and $skip, such as: `http://api.contoso.com/v1.0/people?$top=5&$skip=2` - Sorting by $orderBy, such as: `https://api.contoso.com/v1.0/people?$orderBy=name desc` - Providing $delta tokens, such as: `https://api.contoso.com/v1.0/people?$delta` #### 16.2.1. Error response Services MUST provide an error response if a caller requests an unsupported feature found in the feature allow list. The error response MUST be an HTTP status code from the 4xx series, indicating that the request cannot be fulfilled. Unless a more specific error status is appropriate for the given request, services SHOULD return "400 Bad Request" and an error payload conforming to the error response guidance provided in the Microsoft REST API Guidelines. Services SHOULD include enough detail in the response message for a developer to determine exactly what portion of the request is not supported. Example: ```http GET https://api.contoso.com/v1.0/people?$orderBy=name HTTP/1.1 Accept: application/json ``` ```http HTTP/1.1 400 Bad Request Content-Type: application/json { "error": { "code": "ErrorUnsupportedOrderBy", "message": "Ordering by name is not supported." } } ``` ## 17. Naming guidelines ### 17.1. Approach Naming policies should aid developers in discovering functionality without having to constantly refer to documentation. Use of common patterns and standard conventions greatly aids developers in correctly guessing common property names and meanings. Services SHOULD use verbose naming patterns and SHOULD NOT use abbreviations other than acronyms that are the dominant mode of expression in the domain being represented by the API, (e.g. Url). ### 17.2. Casing - Acronyms SHOULD follow the casing conventions as though they were regular words (e.g. Url). - All identifiers including namespaces, entityTypes, entitySets, properties, actions, functions and enumeration values SHOULD use lowerCamelCase. - HTTP headers are the exception and SHOULD use standard HTTP convention of Capitalized-Hyphenated-Terms. ### 17.3. Names to avoid Certain names are so overloaded in API domains that they lose all meaning or clash with other common usages in domains that cannot be avoided when using REST APIs, such as OAUTH. Services SHOULD NOT use the following names: - Context - Scope - Resource ### 17.4. Forming compound names - Services SHOULD avoid using articles such as 'a', 'the', 'of' unless needed to convey meaning. - e.g. names such as aUser, theAccount, countOfBooks SHOULD NOT be used, rather user, account, bookCount SHOULD be preferred. - Services SHOULD add a type to a property name when not doing so would cause ambiguity about how the data is represented or would cause the service not to use a common property name. - When adding a type to a property name, services MUST add the type at the end, e.g. createdDateTime. ### 17.5. Identity properties - Services MUST use string types for identity properties. - For OData services, the service MUST use the OData @id property to represent the canonical identifier of the resource. - Services MAY use the simple 'id' property to represent a local or legacy primary key value for a resource. - Services SHOULD use the name of the relationship postfixed with 'Id' to represent a foreign key to another resource, e.g. subscriptionId. - The content of this property SHOULD be the canonical ID of the referenced resource. ### 17.6. Date and time properties - For properties requiring both date and time, services MUST use the suffix 'DateTime'. - For properties requiring only date information without specifying time, services MUST use the suffix 'Date', e.g. birthDate. - For properties requiring only time information without specifying date, services MUST use the suffix 'Time', e.g. appointmentStartTime. ### 17.7. Name properties - For the overall name of a resource typically shown to users, services MUST use the property name 'displayName'. - Services MAY use other common naming properties, e.g. givenName, surname, signInName. ### 17.8. Collections and counts - Services MUST name collections as plural nouns or plural noun phrases using correct English. - Services MAY use simplified English for nouns that have plurals not in common verbal usage. - e.g. schemas MAY be used instead of schemata. - Services MUST name counts of resources with a noun or noun phrase suffixed with 'Count'. ### 17.9. Common property names Where services have a property, whose data matches the names below, the service MUST use the name from this table. This table will grow as services add terms that will be more commonly used. Service owners adding such terms SHOULD propose additions to this document. | | |------------- | attendees | body | createdDateTime | childCount | children | contentUrl | country | createdBy | displayName | errorUrl | eTag | event | expirationDateTime | givenName | jobTitle | kind | id | lastModifiedDateTime | location | memberOf | message | name | owner | people | person | postalCode | photo | preferredLanguage | properties | signInName | surname | tags | userPrincipalName | webUrl | ## 18. Appendix ### 18.1. Sequence diagram notes All sequence diagrams in this document are generated using the [WebSequenceDiagrams.com](https://www.websequencediagrams.com/). To generate them, paste the text below into the web tool. #### 18.1.1. Push notifications, per user flow ``` === Begin Text === note over Developer, Automation, App Server: An App Developer like MovieMaker Wants to integrate with primary service like Dropbox end note note over DB Portal, DB App Registration, DB Notifications, DB Auth, DB Service: The primary service like Dropbox note over Client: The end users' browser or installed app note over Developer, Automation, App Server, DB Portal, DB App Registration, DB Notifications, Client : Manual App Registration Developer <--> DB Portal : Login into Portal, App Registration UX DB Portal -> +DB App Registration: App Name etc. note over DB App Registration: Confirm Portal Access Token DB App Registration -> -DB Portal: App ID DB Portal <--> App Server: Developer copies App ID note over Developer, Automation, App Server, DB Portal, DB App Registration, DB Notifications, Client : Manual Notification Registration Developer <--> DB Portal: webhook registration UX DB Portal -> +DB Notifications: Register: App Server webhook URL, Scope, App ID Note over DB Notifications : Confirm Portal Access Token DB Notifications -> -DB Portal: notification ID DB Portal --> App Server : Developer may copy notification ID note over Developer, Automation, App Server, DB Portal, DB App Registration, DB Notifications, Client : Client Authorization Client -> +App Server : Request access to DB protected information App Server -> -Client : Redirect to DB Authorization endpoint with authorization request Client -> +DB Auth : Redirected authorization request Client <--> DB Auth : Authorization UX DB Auth -> -Client : Redirect back to App Server with code Client -> +App Server : Redirect request back to access server with access code App Server -> +DB Auth : Request tokens with access code note right of DB Service: Cache that this User ID provided access to App ID DB Auth -> -App Server : Response with access, refresh, and ID tokens note right of App Server : Cache tokens by user ID App Server -> -Client : Return information to client note over Developer, Automation, App Server, DB Portal, DB App Registration, DB Notifications, Client : Notification Flow Client <--> DB Service: Changes to user data - typical via interacting with App Server via Client DB Service -> App Server : Notification with notification ID and user ID App Server -> +DB Service : Request changed information with cached access tokens and "since" token note over DB Service: Confirm User Access Token DB Service -> -App Server : Response with data and new "since" token note right of App Server: Update status and cache new "since" token === End Text === ``` #### 18.1.2. Push notifications, firehose flow ``` === Begin Text === note over Developer, Automation, App Server: An App Developer like MovieMaker Wants to integrate with primary service like Dropbox end note note over DB Portal, DB App Registration, DB Notifications, DB Auth, DB Service: The primary service like Dropbox note over Client: The end users' browser or installed app note over Developer, Automation, App Server, DB Portal, DB App Registration, DB Notifications, Client : App Registration alt Automated app registration Developer <--> Automation: Configure Automation -> +DB App Registration: App Name etc. note over DB App Registration: Confirm App Access Token DB App Registration -> -Automation: App ID, App Secret Automation --> App Server : Embed App ID, App Secret else Manual app registration Developer <--> DB Portal : Login into Portal, App Registration UX DB Portal -> +DB App Registration: App Name etc. note over DB App Registration: Confirm Portal Access Token DB App Registration -> -DB Portal: App ID DB Portal <--> App Server: Developer copies App ID end note over Developer, Automation, App Server, DB Portal, DB App Registration, DB Notifications, Client : Client Authorization Client -> +App Server : Request access to DB protected information App Server -> -Client : Redirect to DB Authorization endpoint with authorization request Client -> +DB Auth : Redirected authorization request Client <--> DB Auth : Authorization UX DB Auth -> -Client : Redirect back to App Server with code Client -> +App Server : Redirect request back to access server with access code App Server -> +DB Auth : Request tokens with access code note right of DB Service: Cache that this User ID provided access to App ID DB Auth -> -App Server : Response with access, refresh, and ID tokens note right of App Server : Cache tokens by user ID App Server -> -Client : Return information to client note over Developer, Automation, App Server, DB Portal, DB App Registration, DB Notifications, Client : Notification Registration App Server->+DB Notifications: Register: App server webhook URL, Scope, App ID note over DB Notifications : Confirm User Access Token DB Notifications -> -App Server: notification ID note right of App Server : Cache the Notification ID and User Access Token note over Developer, Automation, App Server, DB Portal, DB App Registration, DB Notifications, Client : Notification Flow Client <--> DB Service: Changes to user data - typical via interacting with App Server via Client DB Service -> App Server : Notification with notification ID and user ID App Server -> +DB Service : Request changed information with cached access tokens and "since" token note over DB Service: Confirm User Access Token DB Service -> -App Server : Response with data and new "since" token note right of App Server: Update status and cache new "since" token === End Text === ``` [fielding]: https://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm [IANA-headers]: https://www.iana.org/assignments/message-headers/message-headers.xhtml [rfc-2119]: https://tools.ietf.org/html/rfc2119 [rfc7231-7-1-1-1]: https://tools.ietf.org/html/rfc7231#section-7.1.1.1 [rfc-7230-3-1-1]: https://tools.ietf.org/html/rfc7230#section-3.1.1 [rfc-7231]: https://tools.ietf.org/html/rfc7231 [rest-in-practice]: https://www.amazon.com/REST-Practice-Hypermedia-Systems-Architecture/dp/0596805829/ [rest-on-wikipedia]: https://en.wikipedia.org/wiki/Representational_state_transfer [rfc-5789]: https://tools.ietf.org/html/rfc5789 [rfc-5988]: https://tools.ietf.org/html/rfc5988 [rfc-3339]: https://tools.ietf.org/html/rfc3339 [rfc-5322-3-3]: https://tools.ietf.org/html/rfc5322#section-3.3 [cors-preflight]: https://www.w3.org/TR/cors/#resource-preflight-requests [rfc-3864]: https://tools.ietf.org/html/rfc3864 [odata-json-annotations]: https://docs.oasis-open.org/odata/odata-json-format/v4.0/os/odata-json-format-v4.0-os.html#_Instance_Annotations [cors]: https://www.w3.org/TR/access-control/ [cors-user-credentials]: https://www.w3.org/TR/access-control/#user-credentials [cors-simple-headers]: https://www.w3.org/TR/access-control/#simple-header [rfc-4627]: https://tools.ietf.org/html/rfc4627 [iso-8601]: https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.1.15 [clr-time]: https://msdn.microsoft.com/en-us/library/System.DateTime(v=vs.110).aspx [ecmascript-time]: https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.1.1 [ole-date]: https://docs.microsoft.com/en-us/windows/desktop/api/oleauto/nf-oleauto-varianttimetosystemtime [ticks-time]: https://msdn.microsoft.com/en-us/library/windows/desktop/ms724290(v=vs.85).aspx [unix-time]: https://msdn.microsoft.com/en-us/library/1f4c8f33.aspx [windows-time]: https://msdn.microsoft.com/en-us/library/windows/desktop/ms724290(v=vs.85).aspx [excel-time]: https://support.microsoft.com/kb/214326?wa=wsignin1.0 [wikipedia-iso8601-durations]: https://en.wikipedia.org/wiki/ISO_8601#Durations [wikipedia-iso8601-intervals]: https://en.wikipedia.org/wiki/ISO_8601#Time_intervals [wikipedia-iso8601-repeatingintervals]: https://en.wikipedia.org/wiki/ISO_8601#Repeating_intervals [principle-of-least-astonishment]: https://en.wikipedia.org/wiki/Principle_of_least_astonishment [odata-breaking-changes]: https://docs.oasis-open.org/odata/odata/v4.0/errata02/os/complete/part1-protocol/odata-v4.0-errata02-os-part1-protocol-complete.html#_Toc406398209 [websequencediagram-firehose-subscription-setup]: https://www.websequencediagrams.com/cgi-bin/cdraw?lz=bm90ZSBvdmVyIERldmVsb3BlciwgQXV0b21hdGlvbiwgQXBwIFNlcnZlcjogCiAgICAgQW4AEAUAJwkgbGlrZSBNb3ZpZU1ha2VyACAGV2FudHMgdG8gaW50ZWdyYXRlIHdpdGggcHJpbWFyeSBzZXJ2aWNlADcGRHJvcGJveAplbmQgbm90ZQoAgQwLQiBQb3J0YWwsIERCAIEJBVJlZ2lzdHIAgRkHREIgTm90aWZpYwCBLAVzACEGdXRoACsFUwBgBjogVGhlAF0eAIF_CkNsaWVudAAtBmVuZCB1c2VycycgYnJvd3NlciBvciBpbnN0YWxsZWQgYXBwCgCBIQwAgiQgAIFABQCBIS8AgQoGIDogTWFudWFsAIFzEQoKCgCDAgo8LS0-AIIqCiA6IExvZ2luIGludG8Agj8JAII1ECBVWCAKACoKLT4gKwCCWBM6AIQGBU5hbWUgZXRjLgCDFQ4AGxJDb25maXJtAIEBCEFjY2VzcyBUb2tlbgoKAIM3EyAtPiAtAINkCQBnBklEAIEMCwCBVQUAhQIMAIR3CmNvcGllcwArCACCIHAAhHMMAIMKDwCDABg6IHdlYmhvb2sgcgCCeg4AgnUSAIVQDToAhXYHZXIAgwgGAIcTBgBECVVSTCwgU2NvcGUAhzIGSUQKTgCGPQwAhhwNIACDBh4AHhEAgxEPbgCBagwAgxwNAIMaDiAAgx0MbWF5IGNvcHkALREAhVtqAIZHB0F1dGhvcml6AIY7BwCGXQctPiArAIEuDVJlcXVlc3QgYQCFOQZ0byBEQiBwcm90ZWN0ZWQgaW5mb3IAiiQGCgCDBQstPiAtAIctCVJlZGlyZWN0ADYHAGwNIGVuZHBvaW50AIoWBmEADw1yAHYGAIEQDACJVAcASwtlZAAYHgCICAgAMAcAcA4AhGoGAE0FAIEdFmJhY2sgdG8AhF8NaXRoIGNvZGUAghoaaQCBagcAgToHAD0JAII-B3MAPgsAglEHAEsFAIIzDgCBXw0Agn8GdG9rZW5zACcSAI0_BXJpZ2h0IG9mAItpDUNhY2hlIHRoYXQgdGhpcyBVc2VyIElEIHByb3ZpZGVkAINNCwCIZgoAggcJAIN7D3Nwb25zAI0_BwCECgYsIHJlZnJlc2gsIGFuZCBJRACBHAcAgQMPAIYADQCBDAcAgUUGYnkAjFkFIElEAIQkG3R1cm4AhF4MIHRvIGMAjR8FAIwRagCJVw1GbG93AIYqCQCMaQgAgmoKaGFuZ2UAj3YFAIFXBWRhdGEgLSB0eXBpY2FsIHZpYQCQDgVyYWN0aW5nAJAPBgCJQQt2aWEAjnsHCgCPNgogAIhDEACKZw0AkFMFAIkBDwCDDAUAgkYWKwBNCwCHWApjAIEyBQCHRg0AhWUHYWNoAIQeDACEfwVhbmQgInNpbmNlIgCFEQYAkSQOAIR3CgCNfwcAhHQFAIpQEACBUgsAhFAcAII8BWFuZCBuZXcAYRQAhFUTOiBVcGRhdGUgc3RhdHUAgSkGAIFDBQAxEwoKCg&s=mscgen [websequencediagram-user-subscription-setup]: https://www.websequencediagrams.com/cgi-bin/cdraw?lz=bm90ZSBvdmVyIERldmVsb3BlciwgQXV0b21hdGlvbiwgQXBwIFNlcnZlcjogCiAgICAgQW4AEAUAJwkgbGlrZSBNb3ZpZU1ha2VyACAGV2FudHMgdG8gaW50ZWdyYXRlIHdpdGggcHJpbWFyeSBzZXJ2aWNlADcGRHJvcGJveAplbmQgbm90ZQoAgQwLQiBQb3J0YWwsIERCAIEJBVJlZ2lzdHIAgRkHREIgTm90aWZpYwCBLAVzACEGdXRoACsFUwBgBjogVGhlAF0eAIF_CkNsaWVudAAtBmVuZCB1c2VycycgYnJvd3NlciBvciBpbnN0YWxsZWQgYXBwCgCBIQwAgiQgAIFABQCBIS8AgQoGIDoAgWwRCgphbHQAgyUIAIEHBiByABQMICAAgxsLPC0tPgCDTws6IENvbmZpZ3VyZQogIACDaAsgLT4gKwCCWBMAegZOYW1lIGV0Yy4AhAgFAIMaDQAfEgBdBXJtAIQ_BUFjY2VzcyBUb2tlAIETBgCDOxIgLT4gLQCBFgxBcHAgSUQAhHwIY3JldACBGxAtPgCFFgsgOiBFbWJlZAAkFGVsc2UgTWFudWFsAIIEJACEbQkgOiBMb2dpbiBpbnRvAIUBCQCBKRFVWACGGAUALQoAgh8mAIIZKwCBCAcAgjoNAIIsHACGLwkAgj8IAIESDgCECAYAh1ELAIdFCmNvcGllcwAuCGVuZACEeGoAhWQHQXV0aG9yaXoAhV8HAIV6By0-ICsAg2ANUmVxdWVzdCBhAIRVBnRvIERCIHByb3RlY3RlZCBpbmZvcgCJQQYKAIQaCy0-IC0AhkoJUmVkaXJlY3QANgcAbA0gZW5kcG9pbnQAiTMGYQAPDXIAdgYAgRAMAIhxBwBLC2VkABgeAIRjCAAwB0EAcQxVWAoASQgAgRwWYmFjayB0bwCFdAwAilwFY29kZQCCGRppAIFpBwCBOQcAPQkAgj0HcwA-CwCCUAcASwUAgjIOAIFeDQCCfgZ0b2tlbnMAJxIAjFsFcmlnaHQgb2YAiwUNQ2FjaGUgdGhhdCB0aGlzIFVzZXIgSUQgcHJvdmlkZWQAg0wLAIU6BwCCBAwAg3oPc3BvbnMAjFsHAIQJBiwgcmVmcmVzaCwgYW5kIElEAIEcBwCBAw8AiDENAIEMBwCBRQZieQCLdQUgSUQAhCMbdHVybgCEXQwgdG8gYwCMOwUKCgCLL2oAjXUMAIwTDwCPNQotPisAjhwQOgCORQdlcgCMVwYAg3YIZWJob29rIFVSTCwgU2NvcGUAkAEGSUQAjwoOAI5rDSAAi2UKAINFBQCLYw0AHBEAgzUOOiBuAIE2DABgCACDCB1oZQCBaQ5JRACDYwUAahIAghB4RmxvdwCJMwkAjE0IAIV0CmhhbmdlAJIcBQCEYQVkYXRhIC0gdHlwaWNhbCB2aWEAkjQFcmFjdGluZwCSNQYAjV8LdmlhAJEhBwoAkVwKIACNfhAAhAsNAJJ5BQCCWQ8AhhYFAIVQFisATQsAimEKYwCBMgUAik8NAIhvB2FjaACHKAwAiAkFYW5kICJzaW5jZSIAiBsGAJNKDgCIAQoAhB0cAIFSCwCHWhwAgjwFYW5kIG5ldwBhFACHXxM6IFVwZGF0ZSBzdGF0dQCBKQYAgUMFADETCgoK&s=mscgen ================================================ FILE: graph/GuidelinesGraph.md ================================================ # Microsoft Graph REST API Guidelines Table of contents - [Microsoft Graph REST API Guidelines](#microsoft-graph-rest-api-guidelines) - [Introduction](#introduction) - [Legend](#legend) - [Design approach](#design-approach) - [Naming](#naming) - [Uniform Resource Locators (URLs)](#uniform-resource-locators-urls) - [Resource modeling patterns](#resource-modeling-patterns) - [Pros and cons](#pros-and-cons) - [Nullable properties](#nullable-properties) - [Query support](#query-support) - [Behavior modeling](#behavior-modeling) - [Error handling](#error-handling) - [Limitations on core types](#limitations-on-core-types) - [External standards](#external-standards) - [API contract and nonbackward compatible changes](#api-contract-and-nonbackward-compatible-changes) - [Versioning and deprecation](#versioning-and-deprecation) - [Recommended API design patterns](#recommended-api-design-patterns) - [References](#references) ## Introduction When building a digital ecosystem API usability becomes a business priority. The success of your ecosystem depends on APIs that are easy to discover, simple to use, fit for purpose, and consistent across your products. This document offers guidance that Microsoft Graph API producer teams MUST follow to ensure that Microsoft Graph has a consistent and easy-to-use API surface. A new API design SHOULD meet the following goals: - Be developer friendly by using consistent naming, patterns, and web standards (HTTP, REST, JSON). - Work well with SDKs in many programming languages. - Be sustainable and evolvable by using clear API contracts. The Microsoft Graph REST API Guidelines consist of a concise overview document, a collection of articles on Graph standards, and a library of patterns that provide best practices for resolving common API design problems. Together, these documents serve as the means by which API teams discuss and come to consensus on API review requirements. Technology and software are constantly changing and evolving, and as such, this document is intended to be a living document. API guidelines that change frequently lead to an uneven and inconsistent API surface.Therefore, the general principles and directions that this document offers will be more stable than the specific recommendations for areas that are new or significantly different. The guidance might change as needed to address new scenarios and to clarify existing guidance. The guidance might change as needed to address new scenarios and to clarify existing guidance. To suggest a change or propose a new idea, [open an issue](https://github.com/microsoft/api-guidelines/issues/new/choose). ### Legend This document offers prescriptive guidance labeled as follows: :heavy_check_mark: **MUST** satisfy this specification. :no_entry: **MUST NOT** use this pattern. :ballot_box_with_check: **SHOULD** fulfill this specification. :warning: **SHOULD NOT** adopt this pattern. If you do not follow this advice, you MUST disclose your reasons during the Microsoft Graph API review. ## Design approach The design of your API is arguably the most important investment you'll make. API design is what creates the first impression for developers when they discover and learn how to use your APIs. We promote an API-first design approach where you begin your product design by focusing on how information is exchanged and represented and by creating an interface contract for your API, which is followed by design and implementation of the backing service. This approach ensures decoupling of the interface from your implementation and is essential for agility, predictability, and reuse of your APIs. An established interface contract allows developers to use your API while internal teams are still working on implementation; API specifications enable designing user experience and test cases in parallel. Starting with user-facing contracts also promotes a good understanding of system interactions, your modeling domain, and an understanding of how the service will evolve. Microsoft Graph supports resource and query-based API styles that follow HTTP, REST, and JSON standards, where the API contract is described by using OData conventions and schema definitions. For more information, see [Documentation · OData Version 4.01](https://www.odata.org/documentation/). In general, API design includes the following steps: 1. Outline the key current and future scenarios for API consumers. 1. Define your domain model. 1. Derive and name your API resources. 1. Describe relationships between resources. 1. Determine required behavior. 1. Determine user roles and application permissions. 1. Specify errors. When creating your API contract, you define resources based on the domain model supporting your service and identify interactions based on user scenarios. Good API design goes beyond modeling the current state of resources. It's important to plan ahead how the API evolves; to do this, it's essential to understand and document your user scenarios as the foundation of the API design. There's no one-to-one correspondence between domain model elements and API resources because you SHOULD simplify your customer facing APIs for better usability and to obfuscate implementation details. We recommend creating a simple resource diagram like the following to show resources and their relationships and make it easier to reason about modeling choices and the shape of your API. ![Resource model example](ModelExample.png) After you define your resources, it’s time to think about the behavior of your API, which can be expressed via HTTP methods and operational resources such as functions and actions. As you think about API behavior, you identify a happy path and various exceptions and deviations that are expressed as errors and represented by using HTTP codes and error messages. At every step of your design, you need to consider security, privacy, and compliance as intrinsic components of your API implementation. ### Naming API resources are typically described by nouns. Resource and property names appear in API URLs and payloads and MUST be descriptive and easy to understand. Ease of understanding comes from familiarity and recognition; therefore, when thinking about naming, you SHOULD favor consistency with other Microsoft Graph APIs, names in the product user interface, and industry standards. Microsoft Graph naming conventions follow the [Naming guidelines](./articles/naming.md). Following is a short summary of the most often used conventions. | Requirements | Example | | ------------------------------------------------------------------------|-------------------------------| | :no_entry: **MUST NOT** use redundant words in names. | - **Right:** /places/{id}/**displayName** or /phones/{id}/**number**
- **Wrong:** /places/{id}/**placeName** or /phones/{id}/**phoneNumber** | | :warning: **SHOULD NOT** use brand names in type or property names. | - **Right:** chat
- **Wrong:** teamsChat
- **NOTE:** there is an exception for resources that *only* exist under the `/admin` root segment and the `/users/{userId}/settings` path. | | :warning: **SHOULD NOT** use acronyms or abbreviations unless they are broadly understood. | - **Right:** url or htmlSignature
- **Wrong:** msodsUrl or dlp | | :heavy_check_mark: **MUST** use singular nouns for non-enum type names. | - **Right:** address
- **Wrong:** addresses | | :heavy_check_mark: **MUST** use singular nouns for non-flags enum type names. | - **Right:** color
- **Wrong:** colors | | :heavy_check_mark: **MUST** use plural nouns for flags enum type names. | - **Right:** diplayMethods
- **Wrong:** displayMethod | | :heavy_check_mark: **MUST** use plural nouns for collections (for listing type or collection properties). | - **Right:** addresses
- **Wrong:** address | | :ballot_box_with_check: **SHOULD** pluralize the noun even when followed by an adjective (a *postpositive*).| - **Right:** passersby or mothersInLaw
- **Wrong:** notaryPublics or motherInLaws | | **CASING** | | | :heavy_check_mark: **MUST** use lower camel case for *all* names and namespaces. | - **Right:** automaticRepliesStatus
- **Wrong:** kebab-case or snake_case | | :ballot_box_with_check: **SHOULD** case two-letter acronyms with the same case. | - **Right:** ioLimit or totalIOAmount
- **Right:** 'id' properties similar to driveId or applicationId
- **Wrong:** iOLimit or totalIoAmount| | :ballot_box_with_check: **SHOULD** case `id` properties the same as a normal word. | - **Right:** id or fileId
- **Wrong:** ID or fileID | | :ballot_box_with_check: **SHOULD** case three+ letter acronyms the same as a normal word. | - **Right:** fidoKey or oauthUrl
- **Wrong:** webHTML | | :no_entry: **MUST NOT** capitalize the word following a [prefix](https://www.thoughtco.com/common-prefixes-in-english-1692724) or words within a [compound word](http://www.learningdifferences.com/Main%20Page/Topics/Compound%20Word%20Lists/Compound_Word_%20Lists_complete.htm). | - **Right:** subcategory, geo coordinate, or crosswalk
- **Wrong:** metaData, semiCircle, or airPlane | | :heavy_check_mark: **MUST** capitalize within hyphenated and open (spaced) compound words. | - **Right:** fiveYearOld, daughterInLaw, or postOffice
- **Wrong:** paperclip or fullmoon | | **PREFIXES AND SUFFIXES** | | | :heavy_check_mark: **MUST** suffix date and time properties with Date, Time, or DateTime | - **Right:** dueDate—an Edm.Date
- **Right:** recurringMeetingTime—an Edm.TimeOfDay
- **Right:** createdDateTime—an Edm.DateTimeOffset
- **Wrong:** dueOn or startTime
- **Right:** Instead, both of the preceding are an Edm.DateTimeOffset | | :ballot_box_with_check: **SHOULD** use the Duration type for durations, but if using an `int`, append the units. | - **Right:** passwordValidityPeriod—an Edm.Duration
- **Right:** passwordValidityPeriodInDays — an Edm.Int32 (use of Edm.Duration type is preferable)
- **Wrong:** passwordValidityPeriod — an Edm.Int32 | | :no_entry: **MUST NOT** use suffix property names with primitive type names unless the type is temporal. | - **Right:** isEnabled or amount
- **Wrong:** enabledBool | | :ballot_box_with_check: **SHOULD** prefix property names for properties concerning a different entity. | - **Right:** siteWebUrl on driveItem or userId on auditActor
- **Wrong:** webUrl on contact when it's the companyWebUrl | | :ballot_box_with_check: **SHOULD** prefix Boolean properties with `is`, unless this leads to awkward or unnatural sounding names for Boolean properties. | - **Right:** isEnabled or isResourceAccount
- **Wrong:** enabled or allowResourceAccount
- **Right:** hasChildren or hasSubscriptions
- **Wrong:** isChildren or isSubscriptions
- **Right:** allowNewTimeProposals or allowInvitesFrom (subjectively more natural than the following examples)
- **Wrong:** isNewTimeProposalsAllowed or isInvitesFromAllowed (subjectively more awkward that the preceding examples) | | :no_entry: **MUST NOT** use collection, response, or request suffixes. | - **Right:** addresses
- **Wrong:** addressCollection | #### Tree and graph structures When a tree or graph structure is being modeled, the direct sub-nodes are usually named `children` or `members`. If a property is desired that represents a "flattened" data structure, the property **SHOULD** be prefixed with "transitive", e.g. `transitiveChildren` or `transitiveMembers`. Such properties **MUST** represent a mathematically [transitive relationship](https://en.wikipedia.org/wiki/Transitive_relation). To simplify, if `A` is a child of `B` and `B` is a child of `C`, then `A` is a child of `C` via a transitive relationship; this **MUST** be true for properties using word "transitive" in their name. ### Uniform Resource Locators (URLs) A Uniform Resource Locator (URL) is how developers access the resources of your API. Navigation paths to Microsoft Graph resources are broken into multiple segments, `{scheme}://{host}/{version}/{category}/[{pathSegment}][?{query}]` where: - `scheme` and `host` segments are always [`https://graph.microsoft.com`](https://graph.microsoft.com/v1.0/users). - `version` can be v1.0 or beta. - `category` is a logical grouping of APIs into top-level categories. - `pathSegment` is one or many navigation segments that can address an entity, collection of entities, property, or operation available for an entity. - `query` string MUST follow the OData standard for query representations and is covered in the Query section of OData specifications. While HTTP defines no constraints on how different resources are related, it does encourage the use of URL path segment hierarchies to convey relationships. In Microsoft Graph, relationships between resources are supported by the OData concepts of singletons, entity sets, entities, complex types, and navigation properties. In Microsoft Graph, a top-level API category might represent one of the following groupings: - A core *user-centric concept* of Microsoft Graph: /users, /groups, or /me. - A Microsoft *product or service offering* covering multiple use cases: /teamwork, /directory. - A *feature offering* covering a single use case and *shared* across multiple Microsoft products: /search, /notifications, /subscriptions. - *Administrative configuration* functions for specific products: /admin/exchange. - Internal Microsoft requirements for publishing Privileged and Hidden APIs, routing, and load testing: /loadTestEntities. Effectively, top-level categories define a perimeter for the API surface; thus, a new category creation requires additional rigor and governance approval. ### Resource modeling patterns You can model structured resources for your APIs by using the OData entity type or complex type. The main difference between these types is that an entity type declares a key property to uniquely identify its objects, and a complex type doesn't. In Microsoft Graph, this key property is called `id` for server-created key values. If there's a natural name for the key property, then the workload can use that. Because objects of complex types in Microsoft Graph don’t have unique identifiers, they are not directly addressable via URIs. Therefore, you SHOULD use entity types to model addressable resources such as individually addressable items within a collection. For more information, see the [Collection guidance](./articles/collections.md). Complex types are better suited to represent composite properties of API entities. ```xml ``` | Microsoft Graph rules for modeling complex resources | |---------------------------------------------------------------------------------------------| | :heavy_check_mark: **MUST** use String type for ID. | | :heavy_check_mark: **MUST** use a primary key composed of a single property. | | :heavy_check_mark: **MUST** use an object as the root of all JSON payloads. | | :heavy_check_mark: **MUST** use a root object with a value property to return a collection. | | :heavy_check_mark: **MUST** include @odata.type annotations when the type is ambiguous. | | :warning: **SHOULD NOT** add the property ID to a complex type. | There are different approaches for designing an API resource model in situations with multiple variants of a common concept. The three most often used patterns in Microsoft Graph today are type hierarchy, facets, and flat bag of properties: - **[Type hierarchy](./patterns/subtypes.md)** is represented by one abstract base type with a few common properties and one subtype for each variant. - **[Facets](./patterns/facets.md)** are represented by a single entity type with common properties and one facet property (of complex type) per variant. The facet properties only have a value when the object represents that variant. - **[Flat bag of properties](./patterns/flat-bag.md)** is represented by one entity type with all the potential properties plus an additional property to distinguish the variants, often called type. The type property describes the variant and also defines properties that are required or meaningful for the variant given by the type property. - **[Enums](./patterns/enums.md)** represent a subset of the nominal type they rely on, and are especially useful in cases where certain properties have predefined, limited options. The following table shows a summary of the main qualities for each pattern and can help you select a pattern fit for your use case. | API qualities\patterns | Properties and behavior described in metadata | Supports combinations of properties and behaviors | Simple query construction | |-------------------------|-----------------------------------------------|---------------------------------------------------|---------------------------| | Type hierarchy | yes | no | no | | Facets | partially | yes | yes | | Flat bag | no | no | yes | #### Pros and cons Following are a few pros and cons to decide which pattern to use: - In **[hierarchy](./patterns/subtypes.md)**, the interdependencies of properties, that is, which properties are relevant for which variants, is fully captured in metadata, and client code can potentially leverage that to construct and/or validate requests. - Introducing new cases in **hierarchy** is relatively isolated (which is why it is so familiar to OOP) and is considered backwards compatible (at least syntactically). - Introducing new cases/variants in **[facets](./patterns/facets.md)** is straightforward. You need to be careful because it can introduce situations where previously only one of the facets was non-null and now all the old ones are null. This is not unlike adding new subtypes in the **hierarchy** pattern or adding a new type value in the **[flat bag](./patterns/flat-bag.md)** pattern. - **hierarchy** and **facets** (to a slightly lesser degree) are well-suited for strongly typed client programming languages, whereas **flat bag** is more familiar to developers of less strongly typed languages. - **facets** has the potential to model what is typically associated with multiple inheritances. - **facets** and **flat bag** lend to syntactically simpler filter query expression. **hierarchy** is more explicit but requires the cast segments in the filter query. - **hierarchy** can be refined by annotating the collections with OData derived type constraints; see [validation vocabulary](https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Validation.V1.md). This annotation restricts the values to certain sub-trees of an inheritance **hierarchy**. It makes it explicit that the collection only contains elements of some of the subtypes and helps to not return objects of a type that are semantically not suitable. > **Note:** > As can be seen in a few of the pros and cons, one of the important aspects discussed here is that the API design goes beyond the syntactical aspects of the API. Therefore, it is important to plan ahead how the API evolves, lay the foundation, and allow users to form a good understanding of the semantics of the API. **Changing the semantics is always a breaking change.** The different modeling patterns differ in how they express syntax and semantics and how they allow the API to evolve without breaking compatibility. For more information, see [API contract and non-backward compatible changes](#api-contract-and-non-backward-compatible-changes) later in this article. #### Nullable properties The facet and flat bag approaches often require nullable properties, so it is important to still use non-nullable properties where appropriate. Since inheritance can often remove the use of nullable properties completely, it is also important to know when nullable properties are necessary. See [Nullable properties](./articles/nullable.md) for more details. ### Query support Microsoft Graph APIs returning collections of resources SHOULD support basic query options in conformance with [OData specifications](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#sec_PassingQueryOptionsintheRequestBody) and [Collection guidance](./articles/collections.md). |Requirements | |----------------------------------------------------------------------------------------------------| | :heavy_check_mark: **MUST** support `$select on resource` to enable properties projection. | | :ballot_box_with_check: **SHOULD** support `/entityTypeCollection/{id}?$expand=navProp1` option for navigation properties of entities. | | :ballot_box_with_check: **SHOULD** support `$filter` with `eq` and `ne` operations on properties of entity collections. | | :heavy_check_mark: **MUST** support pagination of collections (of entity types or complex types) using a [nextLink](http://docs.oasis-open.org/odata/odata-json-format/v4.01/odata-json-format-v4.01.html#sec_ControlInformationnextLinkodatanextL). | | :ballot_box_with_check: **MAY** support [server-driven pagination](./articles/collections.md#81-server-driven-paging) of collections using `$skiptoken`. | | :ballot_box_with_check: **SHOULD** support [client-driven pagination](./articles/collections.md#82-client-driven-paging) of collections using `$top` and `$skip`. | | :ballot_box_with_check: **SHOULD** support `$count` for collections. | | :ballot_box_with_check: **SHOULD** support sorting with `$orderby` both ascending and descending on properties of the entities. | The query options part of an OData URL can be long, potentially exceeding the maximum length of URLs supported by components involved in transmitting or processing the request. One way to avoid this is to use the POST verb instead of GET with the `$query` segment, and pass the query options part of the URL in the request body as described in the chapter [OData Query Options](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#sec_PassingQueryOptionsintheRequestBody). Another way to avoid this is to use JSON batch as described in the [Microsoft Graph batching documentation](https://docs.microsoft.com/graph/json-batching#bypassing-url-length-limitations-with-batching). ### Behavior modeling The HTTP operations dictate how your API behaves. The URL of an API, along with its request/response bodies, establishes the overall contract that developers have with your service. As an API provider, how you manage the overall request/response pattern SHOULD be one of the first implementation decisions you make. If possible, APIs SHOULD use resource-based designs with standard HTTP methods rather than operation resources. Operation resources are either functions or actions. According to [OData standards](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#_Toc31359009), a function represents an operation that returns a single instance or collection of instances of any type and doesn’t have an observable side effect. An action might have side effects and might return a result represented as a single entity or collection of any type. | Microsoft Graph rules for behavior modeling | |------------------------------------------------------------------| | :heavy_check_mark: **MUST** use POST to create new entities in insertable entity sets or collections.
This approach requires the service to produce a system-generated key, or for a caller to provide a key in the request payload. | | :ballot_box_with_check: **SHOULD** additionally use PATCH to create new entities in insertable entity sets or collections.
This [Upsert](./patterns/upsert.md) approach requires the caller to provide a key in the request URL. | | :heavy_check_mark: **MUST** use PATCH to edit updatable resources. | | :heavy_check_mark: **MUST** use DELETE to delete deletable resources. | | :heavy_check_mark: **MUST** use GET for listing and reading resources. | | :warning: **SHOULD NOT** use PUT for updating resources. | | :ballot_box_with_check: **SHOULD** avoid using multiple round trips to complete a single logical operation. | Operation resources MUST have a binding parameter that matches the type of the bound resource. In addition, both actions and functions support overloading, meaning an API definition might contain multiple actions or functions with the same name. For an additional list of standard HTTP methods, see the [RFC7231 Hypertext Transfer Protocol](https://www.rfc-editor.org/rfc/rfc7231). ### Error handling To improve API traceability and consistency you MUST use the recommended Microsoft Graph error model and the Microsoft Graph utilities library to provide a standard implementation for your service. The value for the "message" name/value pair MUST be a human-readable representation of the error, tailored to provide enough information for the developer to understand the error and take appropriate action. The message is intended only as an aid to developers and should not be exposed to end users. ```http { "error": { "code": "badRequest", "message": "Cannot process the request because a required field is missing.", "target": "query", "innererror":{ "code": "requiredFieldMissing" } } ``` The top-level error code MUST match the HTTP response status code description, converted to camelCase, as listed in the [Status Code Registry (iana.org)](https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml). The following examples demonstrate error modeling for common use cases: - **Simple error**: An API wants to report an error with top-level details only. The error object contains the top-level error code, message and target (optional). ```http { "error": { "code": "badRequest", "message": "Cannot process the request because it is malformed or incorrect.", "target": "resource" } } ``` - **Detailed error**: An API needs to provide service-specific details of the error via the innererror property of the error object. It is intended to allow services to supply a specific error code to help differentiate errors that share the same top-level error code but are reported for different reasons. ```http { "error": { "code": "badRequest", "message": "Cannot process the request because a required field is missing.", "innererror": { "code": "requiredFieldOrParameterMissing" } } } ``` | Microsoft Graph enforces the following error rules | |-------------------------------------------------------------------------------------------------------------------| | :heavy_check_mark: **MUST** return an error property with a child code property in all error responses. | | :heavy_check_mark: **MUST** return a 403 Forbidden error when the application or signed-in user has insufficient permissions present in the auth token. | | :heavy_check_mark: **MUST** return a 429 Too Many Requests error when the client exceeded throttling limits, and a 503 Service Unavailable error when the service overloaded but the client is within throttling limits.| | :ballot_box_with_check: **SHOULD** return a 404 Not Found error if a 403 error would result in information disclosure. | For more detailed guidance, see the article on [Error condition responses](./articles/errorResponses.md). For a complete mapping of error codes to HTTP statuses, see [rfc7231 (ietf.org)](https://datatracker.ietf.org/doc/html/rfc7231#section-6). ### Limitations on core types The types `user`, `group`, and `device` should not have any new structural property(s) added, without compelling justification. Instead, model the concept represented in those property(s) as a new entity and do one of the following: 1. Add navigation from `user`, `group`, or `device` to the new entity. 2. Add a navigation from the new entity to `user`, `group` or `device`. More details and examples are available in [Core types](./articles/coreTypes.md). ## External standards For ease of client use and interoperatibility, some APIs might implement a standard that is defined external to Microsoft Graph and OData. Workloads SHOULD follow these standards exactly, even if they conflict with the OData standard and/or the Microsoft Graph guidelines. Workloads SHOULD define these standards in their CSDL model if they do not conflict with the OData standard. Standards that *do* conflict with the OData standard might be defined in the CSDL in one of two ways: 1. Using `Edm.Untyped` only and support for the external standard will come directly from the service implementation; OR 2. Adding CSDL elements to model the external standard using `Edm.String` for `EnumType`s that conflict with the OData standard and `Edm.Untyped` wherever any other conflict with the OData standard occurs. In either case, any use of `Edm.String` instead of an `EnumType` or any use of `Edm.Untyped` MUST provide a [description annotation](https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L105) to document references to the standard that the client is expected to follow. The benefit of the second approach is that strongly-typed models have SDK support for clients and also have significant tooling support for both the workload and clients. Note that it's backwards compatible for a workload to migrate from the second approach to the first approach in case the external standard is *initially* compliant with the OData standard and *later* conflicts with the OData standard. ## API contract and nonbackward compatible changes The Microsoft Graph defines breaking changes as any change that requires a client to change its implementation to continue working with the service, it includes changes to the API contract, API behavior, and nonbackward compatible changes. In general, making all but additive changes to the API contract for existing elements is considered breaking. Adding new elements is allowed and is not considered a breaking change. **Non-breaking changes:** - To add properties that are nullable or have a default value - Adding a member after the sentinel member to an evolvable enumeration - Removing, renaming, or changing the type of annotation - Changing the order of properties - Changing the length or format of opaque strings, such as resource IDs - Adding or removing an annotation OpenType="true" **Breaking changes:** - Changing the URL or fundamental request/response associated with a resource - Removing, renaming, or changing an incompatible type of a declared property - Removing or renaming APIs or API parameters - Adding a required request header - Adding EnumType members for nonevolvable enumerations - Adding Nullable="false" properties to existing types - Adding a parameter not marked as [Nullable](http://docs.oasis-open.org/odata/odata-csdl-xml/v4.01/odata-csdl-xml-v4.01.html#sec_Nullable) to existing actions - Adding a parameter not marked as [Optional](https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.md#OptionalParameter) to an existing function - Changing top-level error codes - Introducing server-side pagination to existing collections - Making significant changes to the performance of APIs such as increased latency, rate limits, or concurrency The applicable changes described in the [Model Versioning of the OData V4.01 spec](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_ModelVersioning) SHOULD be considered part of the minimum bar that all services MUST consider a breaking change. ### Versioning and deprecation As the market and technology evolves, your APIs will require modifications. In this case, you MUST avoid breaking changes and add new resources and features incrementally. If that isn't possible, then you MUST version elements of your APIs. Microsoft Graph allows versioning of elements, including entities and properties. Versioning involves adding a new, uniquely named version of the element and marking the old version as deprecated. In some cases, there's a natural new name for the element. In other cases, where the original name is still the most descriptive, the suffix _v2 can be added to the original name to make it unique. The original element is then marked as deprecated by using annotations. Microsoft Graph provides two public endpoints to support the API lifecycle: - [API sets on the v1.0 endpoint](https://graph.microsoft.com/v1.0) are in general availability (GA) status. - [API sets on the beta endpoint](https://graph.microsoft.com/beta) are in beta or private preview status. Microsoft Graph APIs in the GA version guarantee API stability and consistency for its clients. If your API requires a breaking change in GA, then you MUST create new element versions and support deprecated elements for a minimum of 36 months or 24 months with demonstrated non-usage. On the beta endpoint, breaking changes and deprecation of APIs are allowed with consideration of dependencies and customer impact. It is a best practice to test new element versions on the beta endpoint at first and then promote API changes to the GA endpoint. Detailed requirements for versioning and deprecation are described in the [Deprecation guidelines](./articles/deprecation.md). ## Recommended API design patterns The guidelines in previous sections provide a brief overview and a quick start for Microsoft Graph API developers. For a more detailed dive into a specific topic, you can explore [additional articles](./articles/) or learn more about [modeling patterns with the Microsoft Graph](./patterns/) listed in the following table. | Pattern | Description | |--------------------------------------------------|----------------------------------------------------------------------------| | [Alternate key](./patterns/alternate-key.md) | Uniquely identify and query resources using an alternate key. | | [Change tracking](./patterns/change-tracking.md) | Keep API consumers in sync with changes without polling. | | [Collection subsets](./patterns/subsets.md) | Model collection subsets | | [Default properties](./patterns/default-properties.md) | Omit non-default properties from the response unless they are explicitly requested using `$select`. | [Dictionary](./patterns/dictionary.md) | Clients can provide an unknown quantity of data elements of the same type. | | [Evolvable enums](./patterns/evolvable-enums.md) | Extend enumerated types without breaking changes. | | [Facets](./patterns/facets.md) | Model parent-child relationships. | | [Flat bag](./patterns/flat-bag.md) | Model variants of the same type. | | [Long running operations](./patterns/longRunningOperations.md)| Model operations where processing a client request takes a long time. | | [Modeling subsets](./patterns/subsets.md) | Model collection subsets for All, None, Included, or Excluded criteria. | | [Namespace](./patterns/namespace.md) | Organize resource definitions into a logical set. | | [Navigation properties](./patterns/navigation-property.md) | Model resource relationships | | [Operations](./patterns/operations.md) | Model complex business operations | | [Type hierarchy](./patterns/subtypes.md) | Model `is-a` relationships using subtypes. | | [Upsert](./patterns/upsert.md) | Idempotent operation to create or update a resource using a client-provided key. | | [Viewpoint](./patterns/viewpoint.md) | Model user specific properties for a shared resource. | ## References - [Microsoft Graph documentation](https://docs.microsoft.com/graph/overview) - [Microsoft REST API Guidelines-deprecated](Guidelines-deprecated.md) - [OData guidelines](http://www.odata.org/documentation/) - [Azure RESTful web API design](https://docs.microsoft.com/azure/architecture/best-practices/api-design) - [Graph Explorer](https://developer.microsoft.com/graph/graph-explorer) ================================================ FILE: graph/articles/collections.md ================================================ # Collections ## 1. Item keys Services SHOULD support durable identifiers for each item in the collection, and that identifier SHOULD be represented in JSON as "id". These durable identifiers are often used as item keys. Collections MAY support delta queries, see the [Change Tracking pattern](../patterns/change-tracking.md) section for more details. ## 2. Serialization Collections are represented in JSON using standard array notation for `value` property. ## 3. Collection URL patterns While there are multiple collections located directly under the Graph root going forward, you MUST have a singleton for the top-level segment and scope collections to an appropriate singleton. Collection names SHOULD be plural nouns when possible. Collection names shouldn't use suffixes, such as "Collection" or "List". For example: ```http GET https://graph.microsoft.com/v1.0/teamwork/devices ``` Collections elements MUST be addressable by a unique id property. The id property MUST be a String and MUST be unique within the collection. The id property MUST be represented in JSON as "id". For example: ```http GET https://graph.microsoft.com/beta/teamwork/devices/0f3ce432-e432-0f3c-32e4-3c0f32e43c0f ``` Where: - "https://graph.microsoft.com/beta/teamwork" - the service root represented as the combination of host (site URL) + the root path to the service. - "devices" – the name of the collection, unabbreviated, pluralized. - "0f3ce432-e432-0f3c-32e4-3c0f32e43c0f" – the value of the unique id property that MUST be the raw string/number/guid value with no quoting but properly escaped to fit in a URL segment. ### 3.1. Nested collections and properties Collection items MAY contain other collections. For example, a devices collection MAY contain device resources that have multiple mac addresses: ```http GET https://graph.microsoft.com/beta/teamwork/devices/0f3ce432-e432-0f3c-32e4-3c0f32e43c0f ``` ```json { "value": { "@odata.type": "#microsoft.graph.teamworkDevice", "id": "0f3ce432-e432-0f3c-32e4-3c0f32e43c0f", "deviceType": "CollaborationBar", "hardwareDetail": { "serialNumber": "0189", "uniqueId": "5abcdefgh", "macAddresses": [], "manufacturer": "yealink", "model": "vc210" }, ... } } ``` ## 4. Big collections As data grows, so do collections. Services SHOULD support server-side pagination from day one even for all collections, as adding pagination is a breaking change. When multiple pages are available, the serialization payload MUST contain the opaque URL for the next page as appropriate. Refer to the [paging guidance](../Guidelines-deprecated.md#98-pagination) for more details. Clients MUST be resilient to collection data being either paged or nonpaged for any given request. ```json { "value":[ { "id": "Item 1","price": 9 95,"sizes": null}, { … }, { … }, { "id": "Item 99","price": 5 99,"sizes": null} ], "@nextLink": "{opaqueUrl}" } ``` ## 5. Changing collections POST requests are not idempotent. This means that two POST requests sent to a collection resource with exactly the same payload MAY lead to multiple items being created in that collection. This is often the case for insert operations on items with a server-side generated id. For additional information refer to [Upsert pattern](../patterns/upsert.md). For example, the following request: ```http POST https://graph.microsoft.com/beta/teamwork/devices ``` Would lead to a response indicating the location of the new collection item: ```http 201 Created Location: https://graph.microsoft.com/beta/teamwork/devices/123 ``` And once executed again, would likely lead to another resource: ```http 201 Created Location: https://graph.microsoft.com/beta/teamwork/devices/124 ``` ## 6. Sorting collections The results of a collection query MAY be sorted based on property values. The property is determined by the value of the _$orderBy_ query parameter. The value of the _$orderBy_ parameter contains a comma-separated list of expressions used to sort the items. A special case of such an expression is a property path terminating on a primitive property. The expression MAY include the suffix "asc" for ascending or "desc" for descending, separated from the property name by one or more spaces. If "asc" or "desc" is not specified, the service MUST order by the specified property in ascending order. NULL values MUST sort as "less than" non-NULL values. Items MUST be sorted by the result values of the first expression, and then items with the same value for the first expression are sorted by the result value of the second expression, and so on. The sort order is the inherent order for the type of the property. For example: ```http GET https://graph.microsoft.com/beta/teamwork/devices?$orderBy=companyAssetTag ``` Will return all devices sorted by companyAssetTag in ascending order. For example: ```http GET https://graph.microsoft.com/beta/teamwork/devices?$orderBy=companyAssetTag desc ``` Will return all devices sorted by companyAssetTag in descending order. Sub-sorts can be specified by a comma-separated list of property names with OPTIONAL direction qualifier. For example: ```http GET https://graph.microsoft.com/beta/teamwork/devices?$orderBy=companyAssetTag desc,activityState ``` Will return all devices sorted by companyAssetTag in descending order and a secondary sort order of activityState in ascending order. Sorting MUST compose with filtering see [Odata 4.01 spec](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#_Toc31361038) for more details. ### 6.1. Interpreting a sorting expression Sorting parameters MUST be consistent across pages, as both client and server-side paging is fully compatible with sorting. If a service does not support sorting by a property named in a _$orderBy_ expression, the service MUST respond with an error message as defined in the Responding to Unsupported Requests section. ## 7. Filtering The _$filter_ querystring parameter allows clients to filter a collection of resources that are addressed by a request URL. The expression specified with _$filter_ is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Resources for which the expression evaluates to false or to null, or which reference properties that are unavailable due to permissions, are omitted from the response. Example: return all devices with activity state equal to 'Active' ```http GET https://graph.microsoft.com/beta/teamwork/devices?$filter=(activityState eq 'Active') ``` The value of the _$filter_ option is a Boolean expression. ### 7.1. Filter operations Services that support _$filter_ SHOULD support the following minimal set of operations. Operator | Description | Example -------------------- | --------------------- | ----------------------------------------------------- Comparison Operators | | eq | Equal | city eq 'Redmond' ne | Not equal | city ne 'London' gt | Greater than | price gt 20 ge | Greater than or equal | price ge 10 lt | Less than | price lt 20 le | Less than or equal | price le 100 Logical Operators | | and | Logical and | price le 200 and price gt 3.5 or | Logical or | price le 3.5 or price gt 200 not | Logical negation | not price le 3.5 Grouping Operators | | ( ) | Precedence grouping | (priority eq 1 or city eq 'Redmond') and price gt 100 Services MUST use the following operator precedence for supported operators when evaluating _$filter_ expressions. Operators are listed by category in order of precedence from highest to lowest. Operators in the same category have equal precedence: | Group | Operator | Description | |:----------------|:---------|:----------------------| | Grouping | ( ) | Precedence grouping | | Unary | not | Logical Negation | | Relational | gt | Greater Than | | | ge | Greater Than or Equal | | | lt | Less Than | | | le | Less Than or Equal | | Equality | eq | Equal | | | ne | Not Equal | | Conditional AND | and | Logical And | | Conditional OR | or | Logical Or | ## 8. Pagination RESTful APIs that return collections MAY return partial sets. Consumers of these services MUST expect partial result sets and correctly page through to retrieve an entire set. There are two forms of pagination that MAY be supported by RESTful APIs. Server-driven paging allows servers to even out load across clients and mitigates against denial-of-service attacks by forcibly paginating a request over multiple response payloads. Client-driven paging enables clients to request only the number of resources that it can use at a given time. Sorting and Filtering parameters MUST be consistent across pages, because both client- and server-side paging is fully compatible with both filtering and sorting. ### 8.1. Server-driven paging Paginated responses MUST indicate a partial result by including a `@odata.nextLink` token in the response. The absence of a `nextLink` token means that no additional pages are available, see [Odata 4.01 spec](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_ServerDrivenPaging) for more details. Clients MUST treat the `nextLink` URL as opaque, which means that query options may not be changed while iterating over a set of partial results. Example: ```http GET https://graph.microsoft.com/beta/teamwork/devices Accept: application/json HTTP/1.1 200 OK Content-Type: application/json { "value": [...], "@odata.nextLink": "{opaqueUrl}" } ``` ### 8.2. Client-driven paging Clients MAY use _$top_ and _$skip_ query parameters to specify a number of results to return and an offset into the collection. The server SHOULD honor the values specified by the client; however, clients MUST be prepared to handle responses that contain a different page size or contain a `@odata.nextLink` token. When both _$top_ and _$skip_ are given by a client, the server SHOULD first apply _$skip_ and then _$top_ on the collection. Note: If the server can't honor _$top_ and/or _$skip_, the server MUST return an error to the client informing about it instead of just ignoring the query options. This will avoid the risk of the client making assumptions about the data returned. Example: ```http GET https://graph.microsoft.com/beta/teamwork/devices?$top=5&$skip=2 Accept: application/json HTTP/1.1 200 OK Content-Type: application/json { "value": [...] } ``` ### 8.3. Additional considerations **Stable order prerequisite:** Both forms of paging depend on the collection of items having a stable order. The server MUST supplement any specified order criteria with additional sorts (typically by key) to ensure that items are always ordered consistently. **Missing/repeated results:** Even if the server enforces a consistent sort order, results MAY be missing or repeated based on creation or deletion of other resources. Clients MUST be prepared to deal with these discrepancies. The server SHOULD always encode the record ID of the last read record, helping the client in the process of managing repeated/missing results. **Combining client- and server-driven paging:** Note that client-driven paging does not preclude server-driven paging. If the page size requested by the client is larger than the default page size supported by the server, the expected response would be the number of results specified by the client, paginated as specified by the server paging settings. **Page Size:** Clients MAY request server-driven paging with a specific page size by specifying a _$maxpagesize_ preference. The server SHOULD honor this preference if the specified page size is smaller than the server's default page size. **Paginating embedded collections:** It is possible for both client-driven paging and server-driven paging to be applied to embedded collections. If a server paginates an embedded collection, it MUST include additional `nextLink` tokens as appropriate. **Recordset count:** Developers who want to know the full number of records across all pages, MAY include the query parameter _$count=true_ to tell the server to include the count of items in the response. ## 9. Compound collection operations Filtering, Sorting and Pagination operations MAY all be performed against a given collection. When these operations are performed together, the evaluation order MUST be: 1. **Filtering**. This includes all range expressions performed as an AND operation. 2. **Sorting**. The potentially filtered list is sorted according to the sort criteria. 3. **Pagination**. The materialized paginated view is presented over the filtered, sorted list. This applies to both server-driven pagination and client-driven pagination. ## 10. Empty Results When a filter is performed on a collection and the result set is empty you MUST respond with a valid response body and a 200 response code. In this example the filters supplied by the client resulted in a empty result set. The response body is returned as normal and the _value_ attribute is set to a empty collection. You SHOULD maintain consistency in your API whenever possible. ```http GET https://graph.microsoft.com/beta/teamwork/devices?$filter=('deviceType' eq 'Collab' or companyAssetTa eq 'Tag1') Accept: application/json HTTP/1.1 200 OK Content-Type: application/json { "value": [] } ``` ## 11. Collections of structural types (complex types or primitive types) Entity types are generally preferred for collections since complex types within a collection cannot be individually referenced. Collections of complex types, including any nested properties, must be updated as a single unit, entirely replacing the existing contents. Even if your API is read-only today, modeling it as a collection of entities gives you more flexibility in referencing individual members now and in the future. Sometimes, structural collection properties are added to a type and then scenarios are discovered later that require a collection of entity types. Take the following model with an entity type `application` that has a collection of `keyCredential`s: ```xml ... ... ``` and a scenario arises that requires, for example, to remove individual `keyCredential`s from the collection. There are two options forward: ### 11.1 Side-by-side collection properties (for any collection of structural types) The model can be updated to have two collections side-by-side, deprecating the existing one: ```diff + + + + + + + + + + + + + + + + + + + + ``` Clients will now be able to refer to individual `keyCredential`s using `keyId` as a key, and they can now remove those `keyCredential`s using `DELETE` requests: ```http DELETE /applications/{applicationId}/keyCredentials_v2/{some_keyId} ``` ```http HTTP/1.1 204 No Content ``` While both properties exist on graph, the expectation is that `keyCredentials` and `keyCredentials_v2` are treated as two "views" into the same data. To meet this expectation, workloads must: 1. Keep the properties consistent between `keyCredential` and `keyCredential_v2`. Any changes to one type must be reflected in the other type. 2. Reject requests that update both collections at the same time. A request that adds an item to `keyCredentials_v2` while replacing the content of `keyCredentials` must rejected with a `400`, for example: ```http PATCH /applications/{applicationId} { "keyCredentials": [ { "keyId": "10000000-0000-0000-0000-000000000000", "endDateTime": "2012-12-03T07:16:23Z" } ], "keyCredentials_v2@delta": [ { "keyId": "20000000-0000-0000-0000-000000000000", "endDateTime": "2012-12-03T07:16:23Z" } ] } ``` ```http HTTP/1.1 400 Bad Request { "error": { "code": "badRequest", "message": "'keyCredentials' and 'keyCredentials_v2' cannot be updated in the same request.", } ``` ### 11.2 Redefine as Entity Type (for collections of complex types) The model can be updated to simply switch the complex type for an entity type: ```diff - + - + + + + - + ``` To maintain backwards compatibility **and** compliance with the OData standard, there are several semantic changes that the workload must address: 1. Existing clients would have been able to `$select` the `keyCredentials` property. Now that `keyCredentials` is a navigation property, the [OData standard](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#_Toc31361040) specifies that its navigation link be returned when it is `$selected`: > If the select item is a navigation property, then the corresponding navigation link is represented in the response. Because the previous behavior for `$select=keyCredentials` was to include the collection in the response, and because the standard dictates that the navigation link be included in the response, the new behavior is to include both: ```http GET /applications/{applicationId}?$select=keyCredentials ``` ```http 200 OK { "id": "{applicationId}", "keyCredentials": [ { "keyId": "30000000-0000-0000-0000-000000000000", "endDateTime": "2012-12-03T07:16:23Z", ... }, ... ], "keyCredentials@odata.navigationLink": "/applications('{applicationId}')/keyCredentials" } ``` 2. The default behavior for structural collections is to include them in the response payload for their containing entity. If this was the behavior of `application` before, it must be preserved by **auto-expanding** the `keyCredentials` property now that it is a navigation property (because the default behavior for navigation properties is to **not** expand them). 3. Structural collections can be updated using a `PATCH` request to the containing entity to replace the entire contents of the collection. If the service supported such updates to the structural collection, then updates to the new navigation property must preserve this behavior. ================================================ FILE: graph/articles/coreTypes.md ================================================ # Core Types ## Overview Types exist in Microsoft Graph which are highly-connected/central to the Microsoft Graph ecosystem. Often, these types are in the position of being able to contain structural properties relevant to other APIs, because they are connected to many entities in Microsoft Graph. Structural properties should be only added to these core types when they are intrinsic to the entity itself, and strictly not for the purpose of convenience due to the entity's position in Microsoft Graph. ## Core Types in Microsoft Graph The following types are identified as core types, and will require strong justification to allow new structural properties to be added in all cases. - ```user``` - ```group``` - ```device``` ## Alternatives to Adding Structural Properties Instead of adding a structural property to the existing core type (`user`, `group` or `device`), create a new type that models the information captured in the proposed structural property(s). Then, model the relationship between the existing core type and the new type by adding a navigation property. For information on modeling with navigation properties, see [Navigation Property](../patterns/navigation-property.md). ## Example: Modeling adding "bank account information", which includes two properties `accountNumber` and `routingNumber`, to entity type ```user```. ### Don't: Don't add new properties to core types such as `user`. ```xml ``` ### Do: Model the information by creating a new type and model the relationship to the existing core type with a navigation property. To determine which option is most appropriate, see [Navigation Property](../patterns/navigation-property.md): #### Option 1: Add a navigation property on the existing core type to the new type, containing the new type. Define the new entity type: ```xml ``` Add a contained navigation from user to the new entity type: ```xml ``` #### Option 2: Contain the new type in an entity set elsewhere, and add a navigation property to the new type on the existing core type. Define the new entity type: ```xml ``` Contain the new entity type in an entity set or singleton: ```xml ``` Add a navigation from user to the new type: ```xml ``` #### Option 3: Contain the new type in an entity set elsewhere, and add a navigation property to the existing core type on the new type. Define the new entity type, with a navigation to the user: ```xml ``` Contain the new entity type in an entity set or singleton: ```xml ``` ================================================ FILE: graph/articles/deprecation.md ================================================ # Deprecation guidelines If your API requires the introduction of breaking changes, you must add Revisions annotations to the API definition with the following terms: - **Date:** Date when the element was marked as deprecated. - **Version:** Used to organize the ChangeLog. Use the format "YYYY-MM/Category", where "YYYY-MM" is the month the deprecation is announced, and "Category" is the category under which the change is described. - **Kind:** Deprecated - **Description:** Human readable description of the change. Used in ChangeLog, documentation, etc. - **RemovalDate:** Earliest date when the element can be removed. The annotation can be applied to a type, an entity set, a singleton, a property, a navigation property, a function, or an action. If a type is marked as deprecated, it is not necessary to mark the members of that type as deprecated, nor is it necessary to annotate any usages of that type. ## Example of property annotation ```xml ``` When the request URL contains a reference to a deprecated model element, the gateway adds a [Deprecation header](https://tools.ietf.org/html/draft-dalal-deprecation-header-02) (with the date the element was marked as deprecated) and a Sunset header (with the date of two years beyond the deprecation date) to the response. ## Deprecation header example ``` Deprecation: Wed, 30 Mar 2022 11:59:59 GMT Sunset: Thursday, 30 June 2024 23:59:59 GMT Link: https://docs.microsoft.com/en-us/graph/changelog#2022-03-30_name ; rel="deprecation"; type="text/html"; title="name",https://docs.microsoft.com/en-us/graph/changelog#2022-03-30_state ; rel="deprecation"; type="text/html"; title="state" ``` ================================================ FILE: graph/articles/errorResponses.md ================================================ # Error condition responses For non-success conditions, developers SHOULD be able to write one piece of code that handles errors consistently across different Microsoft REST API services. This allows building of simple and reliable infrastructure to handle exceptions as a separate flow from successful responses. The following is based on the OData v4 JSON spec. However, it is very generic and does not require specific OData constructs. APIs SHOULD use this format even if they are not using other OData constructs. The error response MUST be a single JSON object. This object MUST have a name/value pair named "error". The value MUST be a JSON object. This object MUST contain name/value pairs with the names "code" and "message", and it MAY contain name/value pairs with the names "target", "details" and "innererror." The value for the "code" name/value pair is a language-independent string and MUST match the HTTP response status code description, converted to camelCase, as listed in the [Status Code Registry (iana.org)](https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml) For example, if the HTTP status code is "Not Found", then the "code" value MUST be "notFound". Most services will require a larger number of more specific error codes, which are not interesting to all clients. These error codes SHOULD be exposed in the "innererror" name/value pair as described below. Introducing a new value for "code" that is visible to existing clients is a breaking change and requires a version increase. Services can avoid breaking changes by adding new error codes to "innererror" instead. The value for the "message" name/value pair MUST be a human-readable representation of the error. It is intended as an aid to developers and is not suitable for exposure to end users. Services wanting to expose a suitable message for end users MUST do so through an [odata-json-annotations](https://docs.oasis-open.org/odata/odata-json-format/v4.01/cs02/odata-json-format-v4.01-cs02.html#sec_AnnotateaJSONObject) or custom property. Services SHOULD NOT localize "message" for the end user, because doing so might make the value unreadable to the app developer who may be logging the value, as well as make the value less searchable on the Internet. The value for the "target" name/value pair is the target of the particular error (e.g., the name of the property in error). The value for the "details" name/value pair MUST be an array of JSON objects that MUST contain name/value pairs for "code" and "message", and MAY contain a name/value pair for "target", as described above. The objects in the "details" array usually represent distinct, related errors that occurred during the request. See example below. The value for the "innererror" name/value pair MUST be an object. The contents of this object are service-defined. Services wanting to return more specific errors than the root-level code MUST do so by including a name/value pair for "code" and a nested "innererror". Each nested "innererror" object represents a higher level of detail than its parent. When evaluating errors, clients MUST traverse through all of the nested "innererrors" and choose the deepest one that they understand. This scheme allows services to introduce new error codes anywhere in the hierarchy without breaking backwards compatibility, so long as old error codes still appear. The service MAY return different levels of depth and detail to different callers. For example, in development environments, the deepest "innererror" MAY contain internal information that can help debug the service. To guard against potential security concerns around information disclosure, services SHOULD take care not to expose too much detail unintentionally. Error objects MAY also include custom server-defined name/value pairs that MAY be specific to the code. Error types with custom server-defined properties SHOULD be declared in the service's metadata document. See example below. Error responses MAY contain Odata JSON annotations in any of their JSON objects. We recommend that for any transient errors that may be retried, services SHOULD include a Retry-After HTTP header indicating the minimum number of seconds that clients SHOULD wait before attempting the operation again. ## ErrorResponse : Object Property | Type | Required | Description -------- | ---- | -------- | ----------- `error` | Error | ✔ | The error object. ## Error : Object Property | Type | Required | Description -------- | ---- | -------- | ----------- `code` | String | ✔ | One of a server-defined set of error codes. `message` | String | ✔ | A human-readable representation of the error. `target` | String | | The target of the error. `details` | Error[] | | An array of details about specific errors that led to this reported error. `innererror` | InnerError | | An object containing more specific information than the current object about the error. ## InnerError : Object Property | Type | Required | Description -------- | ---- | -------- | ----------- `code` | String | | A more specific error code than was provided by the containing error. `innererror` | InnerError | | An object containing more specific information than the current object about the error. ## Examples Example of "innererror": ```json { "error": { "code": "unauthorized", "message": "Previous passwords may not be reused", "target": "password", "innererror": { "code": "passwordError", "innererror": { "code": "passwordDoesNotMeetPolicy", "minLength": "6", "maxLength": "64", "characterTypes": ["lowerCase","upperCase","number","symbol"], "minDistinctCharacterTypes": "2", "innererror": { "code": "passwordReuseNotAllowed" } } } } } ``` In this example, the most basic error code is "unauthorized", but for clients that are interested, there are more specific error codes in "innererror." The "passwordReuseNotAllowed" code may have been added by the service at a later date, having previously only returned "passwordDoesNotMeetPolicy." Existing clients do not break when the new error code is added, but new clients MAY take advantage of it. The "passwordDoesNotMeetPolicy" error also includes additional name/value pairs that allow the client to determine the server's configuration, validate the user's input programmatically, or present the server's constraints to the user within the client's own localized messaging. Example of "details": ```json { "error": { "code": "badRequest", "message": "Multiple errors in ContactInfo data", "target": "contactInfo", "details": [ { "code": "nullValue", "target": "phoneNumber", "message": "Phone number must not be null" }, { "code": "nullValue", "target": "lastName", "message": "Last name must not be null" }, { "code": "malformedValue", "target": "address", "message": "Address is not valid" } ] } } ``` In this example there were multiple problems with the request, with each individual error listed in "details." ================================================ FILE: graph/articles/filter-as-segment.md ================================================ # Filter as segment There is an [OData feature](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#sec_AddressingaSubsetofaCollection) which allows having a `$filter` in a URL segment. This feature is useful whenever there are operations on a collection and the client wants to perform those operations on a *subset* of the collection. For example, the `riskyUsers` API on Microsoft Graph has an action defined to let clients "dismiss" risky users (i.e. consider those users "not risky"): ```xml ``` Using this action, clients can call ```http POST /identityProtection/riskyUsers/dismiss { "userIds": [ "{userId1}", "{userId2}", ... ] } ``` in order to dismiss the risky users with the provided IDs. Using the filter-as-segment OData feature, the action could instead be defined as: ```xml ``` and clients could call ```http POST /identityProtection/riskyUsers/$filter=@f/dismiss?@f=id IN ('{userId1}','{userId2}',...) ``` Doing this is beneficial due to the robust nature of OData filter expressions: clients will be able to dismiss risky users based on any supported filter without the service team needing to implement a new `dismiss` overload that filters based on the new criteria. However, there are some concerns about the discoverability of using the filter-as-segment feature, as well as the support of [parameter aliasing](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#sec_ParameterAliases) that's required. As a result, functions should be introduced that act in the same way as the filter-as-segment: ```xml ``` Clients would now be able to call ```http POST /identityProtection/riskyUsers/filter(expression='id IN (''{userId1}'',''{userId2}'',...)')/dismiss ``` NOTE: the `'` literal in the filter expression must be escaped with `''` An example implementation of a filter function using OData WebApi can be found [here](https://github.com/OData/AspNetCoreOData/commit/7732f7e6b812d9a79a73529562f2e74b68e2794f). ================================================ FILE: graph/articles/naming.md ================================================ # Naming ## 1. Approach Naming policies should aid developers in discovering functionality without having to constantly refer to documentation. Use of common patterns and standard conventions greatly aids developers in correctly guessing common property names and meanings. Services SHOULD use verbose naming patterns and MUST NOT use abbreviations other than acronyms that are the dominant mode of expression in the domain being represented by the API, (e.g. Url). ## 2. Casing - Acronyms SHOULD follow the casing conventions as though they were regular words (e.g. Url). - All identifiers including namespaces, entityTypes, entitySets, properties, actions, functions and enumeration values MUST use lowerCamelCase. - HTTP headers are the exception and SHOULD use standard HTTP convention of Capitalized-Hyphenated-Terms. ## 3. Names to avoid Certain names are so overloaded in API domains that they lose all meaning or clash with other common usages in domains that cannot be avoided when using REST APIs, such as OAUTH. Services SHOULD NOT use the following names: - Context - Scope - Resource ## 4. Forming compound names - Services SHOULD avoid using articles such as 'a', 'the', 'of' unless needed to convey meaning. - e.g. names such as aUser, theAccount, countOfBooks SHOULD NOT be used, rather user, account, bookCount SHOULD be preferred. - Services SHOULD add a type to a property name when not doing so would cause ambiguity about how the data is represented or would cause the service not to use a common property name. - When adding a type to a property name, services MUST add the type at the end, e.g. createdDateTime. ## 5. Identity properties - Services MUST use string types for identity properties. - For OData services, the service MUST use the OData @id property to represent the canonical identifier of the resource. - Services MAY use the simple 'id' property to represent a local or legacy primary key value for a resource. - Services SHOULD use the name of the relationship postfixed with 'Id' to represent a foreign key to another resource, e.g. subscriptionId. - The content of this property SHOULD be the canonical ID of the referenced resource. ## 6. Date and time properties - For properties requiring both date and time, services MUST use the suffix 'DateTime'. - For properties requiring only date information without specifying time, services MUST use the suffix 'Date', e.g. birthDate. - For properties requiring only time information without specifying date, services MUST use the suffix 'Time', e.g. appointmentStartTime. ## 7. Name properties - For the overall name of a resource typically shown to users, services MUST use the property name 'displayName'. - Services MAY use other common naming properties, e.g. givenName, surname, signInName. ## 8. Collections and counts - Services MUST name collections as plural nouns or plural noun phrases using correct English. - Services MAY use simplified English for nouns that have plurals not in common verbal usage. - e.g. schemas MAY be used instead of schemata. - Services MUST name counts of resources with a noun or noun phrase suffixed with 'Count'. ## 9. Common property names Where services have a property, whose data matches the names below, the service MUST use the name from this table. This table will grow as services add terms that will be more commonly used. Service owners adding such terms SHOULD propose additions to this document. | | | |-------------------- | - | attendees | body | completedDateTime | **NOTE** completionDateTime may be used for cases where the timestamp represents a point in the future | createdDateTime | childCount | children | contentUrl | country | createdBy | displayName | errorUrl | eTag | event | expirationDateTime | givenName | jobTitle | kind | id | lastModifiedDateTime | location | memberOf | message | name | owner | people | person | postalCode | photo | preferredLanguage | properties | signInName | surname | tags | userPrincipalName | webUrl | ================================================ FILE: graph/articles/nullable.md ================================================ # Nullable Properties A nullable property means *only* that the property may have `null` as a value; the "nullability" of a property does not say anything about how a value is set into a property. For example, a non-nullable property is *not* required to create a new instance of an entity. It only means that the property will have a value when it is retrieved. In the case that no value is provided when the entity is created, this means that the service will create one; this value can be specified with the `DefaultValue` attribute, but if the value is contextual and determine at request time, then the property can both be non-nullable *and* have no `DefaultValue` specified. Below are some examples of nullable and non-nullable properties. ## CSDL ```xml ... ... ``` ## HTTP Requests ### 1. Create a servicePrincipal with no properties ```HTTP POST /servicePrincipals 400 Bad Request { "error": { "code": "badRequest", "message": "The 'appId' property is required to create a servicePrincipal." } } ``` ### 2. Create a servicePrincipal without a display name ```HTTP POST /servicePrincipals { "appId": "00000000-0000-0000-0000-000000000001" } 201 Created { "appId": "00000000-0000-0000-0000-000000000001", "displayName": "some application name", "foo": "testval", "bar": "differentvalue", ... } ``` Notes: 1. `displayName` was given a value by the service even though no value was provided by the client 2. `foo` has the default value as specified by its `DefaultValue` attribute in the CSDL 3. `bar` has the default value as specified by its `DefaultValue` attribute in the CSDL ### 3. Update the display name of a service principal to null ```HTTP PATCH /servicePrincipals/00000000-0000-0000-0000-000000000001 { "displayName": null } 400 Bad Request { "error": { "code": "badRequest", "message": "null is not a valid value for the property 'displayName'; 'displayName' is not a nullable property." } } ``` Notes: 1. `displayName` cannot be set to `null` because it has be marked with `Nullable="false"` in the CSDL. ### 4. Update the display name of a service principal ```HTTP PATCH /servicePrincipals/00000000-0000-0000-0000-000000000001 { "displayName": "a non-generated display name" } 200 OK { "appId": "00000000-0000-0000-0000-000000000001", "displayName": "a non-generated display name", "foo": "testval", "bar": "differentvalue", ... } ``` Notes: 1. `displayName` can be set to any value other than `null` 2. The response body here is provided for clarity, and is not part of the guidance itself. The [OData v4.01 standard](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_UpdateanEntity) states that the workload can decide the behavior. ### 5. Update the foo property of a service principal to null ```HTTP PATCH /servicePrincipals/00000000-0000-0000-0000-000000000001 { "foo": null } 200 OK { "appId": "00000000-0000-0000-0000-000000000001", "displayName": "a non-generated display name", "foo": null, "bar": "differentvalue", ... } ``` Notes: 1. `foo` can be set to `null` because it has be marked with `Nullable="true"` in the CSDL. 2. The response body here is provided for clarity, and is not part of the guidance itself. The [OData v4.01 standard](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_UpdateanEntity) states that the workload can decide the behavior. ### 6. Update the foo property of a service principal to a non-default value ```HTTP PATCH /servicePrincipals/00000000-0000-0000-0000-000000000001 { "foo": "something other than testval" } 200 OK { "appId": "00000000-0000-0000-0000-000000000001", "displayName": "a non-generated display name", "foo": "something other than testval", "bar": "differentvalue", ... } ``` Notes: 1. `foo` can be set to `something other than testval` 2. The response body here is provided for clarity, and is not part of the guidance itself. The [OData v4.01 standard](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_UpdateanEntity) states that the workload can decide the behavior. ### 7. Update the bar property of a service principal to null ```HTTP PATCH /servicePrincipals/00000000-0000-0000-0000-000000000001 { "bar": null } 400 Bad Request { "error": { "code": "badRequest", "message": "null is not a valid value for the property 'bar'; 'bar' is not a nullable property." } } ``` Notes: 1. `bar` cannot be set to `null` because it has be marked with `Nullable="false"` in the CSDL. ### 8. Update the bar property of a service principal to a non-default value ```HTTP PATCH /servicePrincipals/00000000-0000-0000-0000-000000000001 { "bar": "a new bar" } 200 OK { "appId": "00000000-0000-0000-0000-000000000001", "displayName": "a non-generated display name", "foo": "something other than testval", "bar": "a new bar", ... } ``` Notes: 1. `bar` can be set to `a new bar` 2. The response body here is provided for clarity, and is not part of the guidance itself. The [OData v4.01 standard](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_UpdateanEntity) states that the workload can decide the behavior. ### 9. Create a service principal while customizing the display name ```HTTP POST /servicePrincipals { "appId": "00000000-0000-0000-0000-000000000001", "displayName": "a different name" } 201 Created { "appId": "00000000-0000-0000-0000-000000000001", "displayName": "a different name", "foo": "testval", "bar": "differentvalue", ... } ``` Notes: 1. `displayName` isn't required to create a new `servicePrincipal`, but it *can* be provided; this is orthogonal to whether or not the property has `Nullable="true"` or `Nullable="false"`. 2. `foo` has the default value as specified by its `DefaultValue` attribute in the CSDL 3. `bar` has the default value as specified by its `DefaultValue` attribute in the CSDL ### 10. Create a service principal with a null display name ```HTTP POST /servicePrincipals { "appId": "00000000-0000-0000-0000-000000000001", "displayName": null } 400 Bad Request { "error": { "code": "badRequest", "message": "null is not a valid value for the property 'displayName'; 'displayName' is not a nullable property." } } ``` Notes: 1. `displayName` isn't required to create a new `servicePrincipal`, but it *can* be provided; it *cannot* be provided as `null` because the property was marked with `Nullable="false"` ### 11. Create a service principal with a value for the foo property ```HTTP POST /servicePrincipals { "appId": "00000000-0000-0000-0000-000000000001", "foo": "a foo value on creation" } 201 Created { "appId": "00000000-0000-0000-0000-000000000001", "displayName": "some application name", "foo": "a foo value on creation", "bar": "differentvalue", ... } ``` Notes: 1. `displayName` was given a value by the service even though no value was provided by the client 2. `foo` isn't required to create a new `servicePrincipal`, but it *can* be provided; this is orthogonal to whether or not the property has `Nullable="true"` or `Nullable="false"`. 3. `bar` has the default value as specified by its `DefaultValue` attribute in the CSDL ### 12. Create a service principal with null for the foo property ```HTTP POST /servicePrincipals { "appId": "00000000-0000-0000-0000-000000000001", "foo": null } 201 Created { "appId": "00000000-0000-0000-0000-000000000001", "displayName": "some application name", "foo": null, "bar": "differentvalue", ... } ``` Notes: 1. `displayName` was given a value by the service even though no value was provided by the client 2. `foo` isn't required to create a new `servicePrincipal`, but it *can* be provided; because the property has `Nullable="true"`, a `null` value can be provided for it. 3. `bar` has the default value as specified by its `DefaultValue` attribute in the CSDL ### 13. Create a service principal with a value for the bar property ```HTTP POST /servicePrincipals { "appId": "00000000-0000-0000-0000-000000000001", "bar": "running out of ideas for value names" } 201 Created { "appId": "00000000-0000-0000-0000-000000000001", "displayName": "some application name", "foo": "testval", "bar": "running out of ideas for value names", ... } ``` Notes: 1. `displayName` was given a value by the service even though no value was provided by the client 2. `foo` has the default value as specified by its `DefaultValue` attribute in the CSDL 3. `bar` isn't required to create a new `servicePrincipal`, but it *can* be provided; this is orthogonal to whether or not the property has `Nullable="true"` or `Nullable="false"`. ### 14. Create a service principal with null for the bar property ```HTTP POST /servicePrincipals { "appId": "00000000-0000-0000-0000-000000000001", "bar": null } 400 Bad Request { "error": { "code": "badRequest", "message": "null is not a valid value for the property 'bar'; 'bar' is not a nullable property." } } ``` Notes: 1. `bar` isn't required to create a new `servicePrincipal`, but it *can* be provided; it *cannot* be provided as `null` because the property was marked with `Nullable="false"` ================================================ FILE: graph/patterns/PatternDescriptionTemplate.md ================================================ # Pattern name Microsoft Graph API Design Pattern *Provide a short description of the pattern.* ## Problem *Describe the business context relevant for the pattern.* *Provide a short description of the problem.* ## Solution *Describe how to implement the solution to solve the problem.* *Describe related patterns.* ## When to use this pattern *Describe when and why the solution is applicable and when it might not be.* ## Issues and considerations *Describe tradeoffs of the solution.* ## Example *Provide a short example from real life.* ================================================ FILE: graph/patterns/alternate-key.md ================================================ # Alternate key Microsoft Graph API Design Pattern *The alternate key pattern provides the ability to query for a single, specific resource identifiable via one of an alternative set of properties that is not its primary key.* ## Problem The resources exposed in Microsoft Graph are identified through a primary key, which guarantees uniqueness inside the same resource collection. Often though, that same resource can also be uniquely identified by an alternative, more convenient property that provides a better developer experience. Take a look at the `user` resource: while the `id` is the typical way to get the resource details, the `mail` address is also a unique property that can be used to identify it. The resource can be accessed using the `$filter` query parameter, such as ```http GET https://graph.microsoft.com/v1.0/users?$filter=mail eq 'bob@contoso.com' ``` However, in this case, the returned result is wrapped in an array that needs to be unpacked. When the uniqueness of the property within the collection implies that only zero or one results can be returned from the call this array provides a suboptimal experience for callers. ## Solution Typically resources in Graph are accessed using a simple forward-slash delimited URL pattern (this pattern is sometimes referred to as key-as-segment). ```http https://graph.microsoft.com/v1.0/users/0 - Retrieves the employee with ID = 0. ``` However, resources can also be accessed using parentheses to delimit the key, like this: ```http https://graph.microsoft.com/v1.0/users(0) - Also retrieves the employee with ID = 0. ``` Resource addressing by using an alternative key can be achieved by using this same parentheses-style convention with one difference: alternate keys MUST specify the key property name to unambiguously determine the alternate key, like this: ```http https://graph.microsoft.com/v1.0/users(email='bob@contoso.com') Retrieves the employee with the email matching `bob@contoso.com`. ``` In the same way as requesting a resource via the canonical key, if a resource cannot be located that matches the alternate key, then a 404 must be returned. > **Note:** When requesting a resource via alternate keys, the simple slash-delimited URL style does not work. > **Note:** Do not use multi-part alternate keys. Feedback has been that customers find multi-part keys confusing. > Either create a composite single-part surrogate key property or fall back to logical operations in a $filter clause. ## When to use this pattern Use this pattern when your resource type has other keys than its canonical key which uniquely identify a single resource. ## Example The same user is identified via the alternate key SSN, the canonical (primary) key ID using the non-canonical long form with a specified key property name, and the canonical short form without a key property name. Declare `mail` and `ssn` as alternate keys on an entity: ```xml ``` 1. Get a specific resource through `$filter`: ```http GET https://graph.microsoft.com/v1.0/users/?$filter=ssn eq '123-45-6789' ``` ```json { "value": [ { "givenName": "Bob", "jobTitle": "Retail Manager", "mail": "bob@contoso.com", "mobilePhone": "+1 425 555 0109", "officeLocation": "18/2111", "preferredLanguage": "en-US", "ssn": "123-45-6789", "surname": "Vance", "userPrincipalName": "bob@contoso.com", "id": "1a89ade6-9f59-4fea-a139-23f84e3aef66" } ] } ``` 2. Get a specific resource either through its primary key or through the two alternate keys: ```http GET https://graph.microsoft.com/v1.0/users/1a89ade6-9f59-4fea-a139-23f84e3aef66 GET https://graph.microsoft.com/v1.0/users(1a89ade6-9f59-4fea-a139-23f84e3aef66) GET https://graph.microsoft.com/v1.0/users(ssn='123-45-6789') GET https://graph.microsoft.com/v1.0/users(mail='bob@contoso.com') ``` All four yield the same response: ```json { "givenName": "Bob", "jobTitle": "Retail Manager", "mail": "bob@contoso.com", "mobilePhone": "+1 425 555 0109", "officeLocation": "18/2111", "preferredLanguage": "en-US", "ssn": "123-45-6789", "surname": "Vance", "userPrincipalName": "bob@contoso.com", "id": "1a89ade6-9f59-4fea-a139-23f84e3aef66" } ``` 3. Request a resource for an unsupported alternate key property: ```http GET https://graph.microsoft.com/v1.0/users(name='Bob') 400 Bad Request { "error" : { "code" : "400", "message": "'name' is not a valid alternate key for the resource type 'user'." } } ``` 4. Request a resource where the alternate key property does not exist on any resource in the collection: ```http GET https://graph.microsoft.com/v1.0/users(email='unknown@contoso.com') 404 Not Found { "error" : { "code" : "404", "message": "No user with the the specified 'email' could be found." } } ``` ================================================ FILE: graph/patterns/antiPatternTemplate.md ================================================ # Antipattern name *name with a negative connotation* *Example: Flatbag of properties* ## Description *Example: The flat bag pattern is a known anti-pattern in Microsoft Graph, where multiple variants of a common concept are modeled as a single entity type with all potential properties plus an additional property to distinguish the variants.* ## Consequences *Describe the consequences in terms of the developer experience* *Example: This is the least recommended modeling choice because it is weakly typed, which increases the number of variations and complexity of solutions, making it difficult to verify the semantic correctness of the API for both clients and producers...* ## Preferable solutions *Example: It is preferable to use type hierarchy and facets patterns. Should provide a link to a valid pattern or patterns.* ## Example *Provide an example of better modeling* ================================================ FILE: graph/patterns/change-tracking.md ================================================ # Change tracking Microsoft Graph API Design Pattern *The change tracking pattern provides the ability for API consumers to request changes in data from Microsoft Graph without having to re-read data that has not changed.* ## Problem API consumers require an efficient way to acquire changes to data in the Microsoft Graph, for example to synchronize an external store or to drive a change-centric business process. ## Solution API designers can enable the change tracking (delta) capability on a resource in the Microsoft Graph (typically on an entity collection or a parent resource) by declaring a delta function on that resource and applying `Org.OData.Capabilities.V1.ChangeTracking` annotation. This function returns a delta payload. A delta payload consists of a collection of annotated full or partial Microsoft Graph entities plus either a `nextLink` to further pages of original or change data that are immediately available OR a `deltaLink` to get the next set of changes at some later date. The `nextLink` provides a mechanism to do server-driven paging through the change data that is currently available. When there are no further pages of changes immediately available, a `deltaLink` is returned instead. The `deltaLink` provides a mechanism for the API consumer to catch up on changes since their last request to the delta function. If no changes have happened since the last request, then the deltaLink MUST return an empty collection. Both `nextLink` and `deltaLink` MUST be considered opaque URLs. The best practice is to make them opaque via encoding. The pattern requires a sequence of requests on the delta function, for additional details see [Change Tracking](https://learn.microsoft.com/en-us/graph/delta-query-overview?tabs=http#use-delta-query-to-track-changes-in-a-resource-collection): 1. GET request which returns the first page of the current state of the resources that delta applies to. 2. [Optionally] Further GET requests to retrieve more pages of the current state via the `@odata.nextLink` URL. 3. After some time, a GET request to see if there are new changes via the `@odata.deltaLink` URL. 4. [Optionally] GET requests to retrieve more pages of changes via the `@odata.nextLink` URL. Delta payload requirements: - The payload is a collection of change records using the collection format. - The change records are full or partial representations of the resources according to their resource types. - When a change representing a resource update is included in the payload the API producer MAY return either the changed properties or the full entity. The ID of the resource MUST be included in every change record. - When an entity is deleted, the delta function MUST return the ID of the deleted entity as well as an `@removed` annotation with the reason field. - When an entity is deleted, the reason MUST be set to “changed” if the entity can be restored. - When an entity is deleted. the reason MUST be set to “deleted” if the entity cannot be restored. - There is no mechanism to indicate that a resource has entered or exited the dataset based on a change that causes it to match or no longer match any `$filter` query parameter. - When a link to an entity is deleted, when the linked entity is deleted, or when a link to an entity is added, the implementer MUST return a `property@delta` annotation. - When a link to an entity is deleted, but the entity still exists, the reason MUST be set to `changed`. - When a link to an entity is deleted along with the entity, the reason MUST be set to `deleted`. API producers MAY choose to collate multiple changes to the same resource into a single change record. API consumers are expected to differentiate resource adds from updates by interpreting the id property of the change records against the existence of resources in whatever external system is doing the processing. ## When to use this pattern API consumers want a pull mechanism to request and process change to Microsoft Graph data, either via proactive polling or by responding to Microsoft Graph notifications. API consumers need guaranteed data integrity over the set of changes to Microsoft Graph data. ## Considerations - API service MAY be able to respond to standard OData query parameters with the initial call to the delta function: - `$select` to enforce the set of properties on which change is reported. - `$filter` to influence the scope of changes returned. - `$expand` to include linked resources with the set of changes. - `$top` parameter to influence the size of the set of change records. These query parameters MUST be encoded into subsequent `@odata.nextLink` or `@odata.deltaLink`, such that the same options are preserved through the call sequence without callers respecifying them, which MUST NOT be allowed. OData query parameters must be honored in full, or a 400-error returned. - Making a sequence of calls to a delta function followed by the opaque URLs in the `nextLink` and `deltaLink` MUST guarantee that the data at the start time of the call sequence and all changes to the data thereafter will be returned at least once. It is not necessary to avoid duplicates in the sequence. When the delta function is returning changes, they MUST be sequenced chronologically refer to [public documentation](https://learn.microsoft.com/en-us/graph/delta-query-overview?view=graph-rest-1.0) for more details. - The delta function can be bound to - an entity collection, as with `/users/delta` that returns the changes to the users' collection, or - some logical parent resource that returns an entity collection, where the change records are implied to be relative to all collections contained within the parent.For example `/me/planner/all/delta` returns changes to any resource within a planner, which are referenced by 'all' navigation property, and `/communications/onlineMeetings/getAllRecordings/delta` returns changes to any meeting recordings returned by `getAllRecordings` function. - API service should use `$skipToken` and `$deltaToken` within their implementations of `nextLink` and `deltaLink`, however the URLs are defined as being opaque and the existence of the tokens MUST NOT be documented. It is not a breaking change to modify the structure of `nextLinks` or `deltaLinks`.- - `nextLink` and `deltaLink` URLs are valid for a specific period before the client application needs to run a full synchronization again.For `nextLink`, a minimal validity time should be 1 hour. For `deltaLink`, a minimal validity time should be seven days. When a link is no longer valid it must return a standard error with a 410 GONE response code. - Although this capability is similar to the OData `$delta` feed capability, it is a different construct. Microsoft Graph APIs MUST provide change tracking through the delta function and MUST NOT implement the OData `$delta` feed when providing change tracking capabilities to ensure the uniformity of the API experience. - The Graph delta payload format has some deviations from the OData 4.01 change tracking format to simplify parsing, for example the context annotation is removed. - Additional implementation details are documented [internally](https://dev.azure.com/msazure/One/_wiki/wikis/Microsoft%20Graph%20Partners/211718/Deltas). ## Alternatives - Change notifications pattern with rich payloads – for use cases where API consumers would find calling back into Microsoft Graph onerous and absolute integrity guarantees are less critical. ## Examples ### Change tracking on entity set ```xml ``` ### Change tracking on navigation property ```xml ``` ### Change tracking on function that return an entity collection Firstly, an API designer needs to define the function as composable (so that a delta function can be added to it), by adding the `IsComposable` annotation: ```xml ``` Next, define the `delta` function. The binding parameter and the return type of the delta function MUST be the same as the return type of the target `getAllRecordings` function: ```xml ``` Finally, for the function, the designer needs to add an annotation (either as a child of the entity or by targeting the entity type as below) stating that it supports change tracking (delta query): ```xml ``` Here is the HTTP request to start the change tracking process on `getAllRecordings` ```http GET https://graph.microsoft.com/v1.0/communications/onlineMeetings/getAllRecordings/delta ``` ### Delta payload Here after the initial delta call, a user resource is updated, and there is one user added to and one removed from that user’s directReports collection. Additionally, a second user is deleted. In this case, there are no further pages of change records currently available. For detailed sequence of requests see [Change Tracking](https://learn.microsoft.com/en-us/graph/delta-query-overview?tabs=http#use-delta-query-to-track-changes-in-a-resource-collection). ```http GET https://graph.microsoft.com/v1.0/users/delta?$skiptoken=pqwSUjGYvb3jQpbwVAwEL7yuI3dU1LecfkkfLPtnIjvB7XnF_yllFsCrZJ { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users", "@odata.deltaLink": "https://graph.microsoft.com/v1.0/users/delta?$deltatoken=mS5DuRZGjVL-abreviated", "value": [ { "businessPhones": ["+1 309 555 0104"], "displayName": "Grady Archie", "givenName": "Grady", "jobTitle": "Designer", "mail": "GradyA@contoso.onmicrosoft.com", "officeLocation": "19/2109", "preferredLanguage": "en-US", "surname": "Archie", "userPrincipalName": "GradyA@contoso.onmicrosoft.com", "id": "0baaae0f-b0b3-4645-867d-742d8fb669a2", "directReports@delta": [ { "@odata.type": "#microsoft.graph.user", "id": "99789584-a1e1-4232-90e5-866170e3d4e7" } , { "id": "66789583-f1e2-6232-70e5-366170e3d4a6", "@removed": { "reason": "deleted" } } ] }, { "id": "0bbbbb0f-b0b3-4645-867d-742d8fb669a2", "@removed": { "reason": "changed" } } ] } ``` ================================================ FILE: graph/patterns/default-properties.md ================================================ # Default properties Microsoft Graph API Design Pattern *The default properties pattern allows API producers to omit specific properties from the response unless they are explicitly requested using `$select`.* ## Problem API designers want to control the set of properties that their entities return by default, when the incoming request does not specify a `$select`. This can be desirable when an entity type has many properties or an API producer needs to add properties that are computationally expensive to return by default. ## Solution For incoming requests targeting an entity type where the caller does not specify a `$select` clause, API producers **may** return a subset of the entity type's properties, omitting computationally expensive properties. To get the non-default properties of an entity type, callers must explicitly request them using `$select`. The pattern also uses an instance annotation to inform callers that other properties are also available. The same annotation is also used to encourage callers to use `$select`. ## When to use this pattern API producers should use this pattern when adding expensive or non-performant properties to an existing entity type, or when adding properties to an entity type that has already grown too large (with more than 20 properties). ## Issues and considerations - Do **not** rely on the `ags:Default` schema annotation for default properties functionality, as this is a legacy implementation. Returning default properties **must** be implemented by API producers. - Changing a default property to non-default is considered a breaking change. - One of the challenges with default properties is informing developers that the response does not contain the full set of properties. To solve for this discovery problem, if the response contains default properties only, then: - the response **must** contain a `@microsoft.graph.tips` instance annotation. - the `@microsoft.graph.tips` instance annotation **must** only be emitted if the client uses "developer mode" via the `Prefer: ms-graph-dev-mode` HTTP request header. It is expected that this header will only be used by client developer and scripting tools like Graph Explorer, the Microsoft Graph Postman collections, and Microsoft Graph PowerShell. - the `@microsoft.graph.tips` instance annotation value **must** contain "This request only returns a subset of the resource's properties. Your app will need to use $select to return non-default properties. To find out what other properties are available for this resource see https://learn.microsoft.com/graph/api/resources/{entityTypeName}". - Callers must be able to use `$filter` with non-default properties, even though they won't show up by default in the response. Additionally, for incoming requests targeting an entity type where the caller does not specify a `$select` clause, the API Gateway Service will inject a `@microsoft.graph.tips` instance annotation, informing callers to use $select, when in "developer mode". API producers who use [response passthrough](https://dev.azure.com/msazure/One/_wiki/wikis/Microsoft%20Graph%20Partners/391069/Enabling-response-passthrough) must also implement this behavior, supplying the same information as shown in the [examples section below](#calling-an-api-without-using-select). ## Examples In this example we'll use the following `channel` entity type. ```xml ``` In this scenario, the API producer wants to add the `moderationSettings` property to the `channel` entity type. But when paging through 1000 channels at a time, this additional property will introduce a considerable increase in the response times. The API producer will use the default properties pattern here, and **not** return `moderationSettings` by default. ### Calling an API with default properties In this example, the caller, using Graph Explorer, does not use $select, and the API returns just the default properties. #### Request ```http GET /teams/{id}/channels Prefer: ms-graph-dev-mode ``` #### Response ```http 200 ok Content-type: application/json ``` ```json { "@odata.context": "https://graph.microsoft.com/beta/$metadata#Collection(microsoft.graph.channel)", "@microsoft.graph.tips": "This request only returns a subset of the resource properties. Your app will need to use $select to return non-default properties. To find out what other properties are supported for this resource, please see the Properties section in https://learn.microsoft.com/graph/api/resources/channel.", "value": [ { "displayName": "My First Shared Channel", "description": "This is my first shared channels", "id": "19:PZC_kAPAm12RPBMkEaJyXaY_d2PE6mJV6MzO1EiCbnk1@thread.tacv2", "membershipType": "shared", "email": "someemail@dot.com", "webUrl": "webUrl-value", "filesFolderWebUrl": "sharePointUrl-value", "tenantId": "tenantId-value", "isFavoriteByDefault": null, "createdDateTime": "2019-08-07T19:00:00Z" }, { "displayName": "My Second Private Channel", "description": "This is my second shared channels", "id": "19:PZC_kAPAm12RPBMkEaJyXaY_d2PE6mJV6MzO1EiCbnk2@thread.tacv2", "membershipType": "private", "email": "someemail2@dot.com", "webUrl": "webUrl-value2", "filesFolderWebUrl": "sharePointUrl-value2", "tenantId": "tenantId-value", "isFavoriteByDefault": null, "createdDateTime": "2019-08-09T19:00:00Z" } ] } ``` In the response, we can see that `moderationSettings` is not being returned. Additionally, the API producer is returning a `tips` instance annotation, informing the caller that this response only returns default properties, how to get the non-default properties, and where to find information about this type's properties. The `tips` instance annotation is only emitted if the `Prefer: ms-graph-dev-mode` HTTP request header is present. ### Calling an API with default properties and $select In this example, the caller needs `moderationSettings` for their API scenario. They try this out in Graph Explorer first. #### Request ```http GET /teams/{id}/channels?$select=id,membershipType,moderationSettings Prefer: ms-graph-dev-mode ``` #### Response ```http 200 ok Content-type: application/json ``` ```json { "@odata.context": "https://graph.microsoft.com/beta/$metadata#Collection(microsoft.graph.channel)", "value": [ { "id": "19:PZC_kAPAm12RPBMkEaJyXaY_d2PE6mJV6MzO1EiCbnk1@thread.tacv2", "membershipType": "shared", "channelModerationSettings": { "userNewMessageRestriction": "everyone", "replyRestriction": "everyone", "allowNewMessageFromBots": true, "allowNewMessageFromConnectors": true } }, { "id": "19:PZC_kAPAm12RPBMkEaJyXaY_d2PE6mJV6MzO1EiCbnk2@thread.tacv2", "membershipType": "private", "channelModerationSettings": { "userNewMessageRestriction": "moderators", "replyRestriction": "authorAndModerators", "allowNewMessageFromBots": true, "allowNewMessageFromConnectors": true } } ] } ``` In this case, because the request has a `$select`, the `tips` instance annotation is not emitted. ### Calling an API without using $select The caller makes a `GET` request without $select, to an API that doesn't have any default properties, via Graph Explorer. #### Request ```http GET /me/todo/lists Prefer: ms-graph-dev-mode ``` #### Response ```http 200 ok Content-type: application/json ``` ```json { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('99a6e897-8c54-4354-a739-626fbe28ed78')/todo/lists", "@microsoft.graph.tips": "Use $select to choose only the properties your app needs, as this can lead to performance improvements. For example: GET me/todo/lists?$select=displayName,isOwner", "value": [ { "@odata.etag": "W/\"c5yMNreru0OMO71/IwuKGQAG6WUnjQ==\"", "displayName": "Tasks", "isOwner": true, "isShared": false, "wellknownListName": "defaultList", "id": "AAMkADU3NTBhNWUzLWE0MWItNGViYy1hMTA0LTkzNjRlYTA2ZWI2ZAAuAAAAAAAFup0i-hqtR5N14AJlh2qTAQATqGUvrHrTEbWPAKDJQ2mMAAACWIG1AAA=" }, { "@odata.etag": "W/\"c5yMNreru0OMO71/IwuKGQAG6WUnmQ==\"", "displayName": "Outlook Commitments", "isOwner": true, "isShared": false, "wellknownListName": "none", "id": "AQMkADU3NTBhNWUzLWE0MWItNGViYy1hMTA0LTkzNjRlYTA2ZWI2ZAAuAAADBbqdIv4arUeTdeACZYdqkwEAc5yMNreru0OMO71-IwuKGQABWbOTpQAAAA==" } ] } ``` Notice how for this scenario, where there are no default properties and the caller does not use `$select`, there's a `tips` instance annotation, encouraging the app developer to use `$select`. This `tips` annotation is automatically added to the response by the API gateway service, as long as the workload service doesn't use response passthrough (in which case it is the responsibility of the workload service). ================================================ FILE: graph/patterns/dictionary-client-guidance.md ================================================ # Dictionary types > **Note:** This document will be moved into a central client guidance document in the future. *The client guidance is a collection of additional information provided to SDK implementers and client applications. This information is meant to help understand how various guidelines and concepts translate in their world and clarify a few unknowns. Always read the corresponding guideline first to get a contextual understanding.* For more information, see the [Dictionary](./dictionary.md) pattern. ## OpenAPI example The following json-schema/OpenAPI example defines a dictionary of which values are of type **RoleSettings**. In **components** in **schemas**: ```json { "roleSettings": { "type": "object", "properties": { "domain": { "type": "string" } } } } } ``` ```json { "type": "object", "patternProperties": { ".*": { "$ref": "#/components/schemas/roleSettings" }, "additionalProperties": false } } ``` ## SDK support SDKs need to provide support for dictionary types so that SDK consumers get a delightful development experience. Examples are provided for different languages. Other aspects need to be taken into consideration: - Dictionaries support OData annotations (values prefixed with **@OData**); such annotations should not be inserted directly in the dictionary but rather in the additional properties manager. - Dictionary types can inherit another dictionary type; this inheritance must be respected. - Dictionary values can be of union types; if the target language doesn't support union types, a wrapper type should be generated as a backward compatible solution with properties for each type of the union. ### Dotnet ```CSharp Dictionary ``` ### Java ```Java Map ``` ### JavaScript/TypeScript ```TypeScript Map ``` or ```JavaScript { [key: string]: {value: RoleSettings} } ``` ## Request builder generation annotation By default, SDKs are not required to contain a set of request builders to run CRUD requests on entries in the dictionary. The dictionary is updated as a whole by consumers by sending requests to the parent entity. If a **SupportedHttpMethod** annotation is specified for the dictionary type, request builders should be generated to allow consumers to automatically update the entries. ================================================ FILE: graph/patterns/dictionary.md ================================================ # Dictionary Microsoft Graph API Design Pattern _The dictionary type provides the ability to create a set key/value pairs where the set of keys is dynamically specified by the API consumer._ ## Problem The API design requires a resource to include an unknown quantity of data values whose keys are defined by the API consumer. ## Solution API designers use a JSON object to represent a dictionary in an `application/json` response payload. When describing the model in CSDL, a new complex type can be created that derives from `graph.Dictionary` and optionally uses the `Org.OData.Validation.V1.OpenPropertyTypeConstraint` to constrain the type that can be used for the values in the dictionary as appropriate. Dictionary entries can be added, removed, or modified via `PATCH` to the dictionary property. Entries are removed by setting the property to `null`. ## When to use this pattern Before using a dictionary type in your API definition, make sure that your scenario fits the following criteria: - The data values MUST be related to one another semantically as a collection. - The values MUST be primitive or complex types. - The client MUST define the keys of this type, as opposed to the service defining them in advance. ### Alternatives - [Open extensions](https://docs.microsoft.com/graph/extensibility-open-users) when you want to provide clients the ability to extend Microsoft Graph. - [Complex types](https://docs.microsoft.com/odata/webapi/complextypewithnavigationproperty) when the set of data values are known. ## Issues and considerations Dictionaries, sometimes called maps, are a collection of name-value pairs. They allow dynamic data sets to be accessed in a systematic manner and are a good compromise between a strictly defined-ahead-of-time structure with all its named properties and a loosely defined dynamic object (such as OData OpenTypes). Because dictionary entries are removed by setting the value to `null`, dictionaries don't support null values. For more information, see the [OData reference](https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Core.V1.md#dictionary). ## Examples ### String dictionary #### CSDL declaration The following example demonstrates defining a dictionary that can contain string values. ```xml Edm.String ``` Please note that schema validation will fail due to the casing of `Dictionary`. This warning should be suppressed. #### Defining a dictionary property The following example shows defining a dictionary property, "userTags", on the item entity type. ```xml ... ``` #### Reading a dictionary Dictionaries are represented in JSON payloads as a JSON object, where the property names are comprised of the keys and their values are the corresponding key values. The following example shows reading an item with a dictionary property named "userTags": ```HTTP GET /item ``` Response: ```json { ... "userTags": { "anniversary": "2002-05-19", "favoriteMovie": "Princess Bride" } } ``` #### Setting a dictionary value The following example shows setting a dictionary value. If "hairColor" already exists, it is updated, otherwise it is added. ```http PATCH /item/userTags ``` ```json { "hairColor": "purple" } ``` #### Deleting a dictionary value A dictionary value can be removed by setting the value to null. ```http PATCH /item/userTags ``` ```json { "hairColor": null } ``` ### Complex typed dictionary #### CSDL declaration Dictionaries can also contain complex types whose values may be constrained to a particular set of complex types. The following example defines a complex type **roleSettings**, an **assignedRoleGroupDictionary** that contains **roleSettings**, and an **assignedRoles** property that uses the dictionary.. ```xml ... of roleSettings keyed by name of roleGroup. --> microsoft.graph.roleSettings ``` #### Reading a entity with a complex-typed dictionary The following example illustrates reading an entity containing the complex-typed dictionary "assignedRoles". ```HTTP GET /users/10 ``` Response: ```json { "id": "10", "displayName": "Jane Smith", "assignedRoles": { "author": { "domain": "contoso" }, "maintainer": { "domain": "fabrikam" }, "architect": { "domain": "adventureWorks" } } } ``` #### Reading the dictionary property The following example shows getting just the "assignedRoles" dictionary property. ```HTTP GET /users/10/assignedRoles ``` Response: ```json { "author": { "domain": "contoso" }, "maintainer": { "domain": "fabrikam" }, "architect": { "domain": "adventureWorks" } } ``` #### Reading an individual entry from the dictionary The following example shows reading a single complex-typed entry named "author" from the "assignedRoles" dictionary. ```HTTP GET /users/10/assingedRoles/author ``` Response: ```json { "domain": "contoso" } ``` #### Setting an individual entry in the dictionary The following examples shows updating the dictionary to set the value for the "author" entry. If the "author" entry does not exists it is added with the specified values; otherwise, if the "author" entry already exists, it is updated with the specified values (unspecified values are left unchanged). ```HTTP PATCH /users/10/assignedRoles/author ``` ```json { "author" : { "domain": "contoso" } } ``` #### Deleting an individual entry from the dictionary The following example shows deleting the "author" entry by setting its value to null. ```HTTP PATCH /users/10/assignedRoles ``` ```json { "author": null } ``` #### Setting multiple dictionary entries The following example sets values for the "author", "maintainer" and "viewer" entries, and removes the "architect" entry by setting it to null. ```HTTP PATCH /users/10/assignedRoles ``` ```json { "author": { "domain": "contoso1" }, "maintainer": { "domain": "fabrikam1" }, "reviewer": { "domain": "fabrikam" }, "architect": null } ``` ## See also - [SDK implementation guidance](./dictionary-client-guidance.md) ================================================ FILE: graph/patterns/enums.md ================================================ ### Enums In OData, enums represent a subset of the nominal type they rely on, and are especially useful in cases where certain properties have predefined, limited options. ```xml ``` #### Pros - Our SDK generators will translate the enum to the best representation of the target programming language, resulting in a better developer experience and free client side validation #### Cons - Adding a new value requires to go through a (generally fast) API Review - If the enum is not [evolvable](./patterns/evolvable-enums.md), adding a new value is a breaking change and will generally not be allowed #### Enum or Booleans Enumerations are a good alternative to Booleans when one of the two values (`true`, `false`) conveys other possible values not yet conceived. Let's assume we have an `publicNotification` type and a property to communicate how to display it: ```xml ``` The `false` value here merely communicates that the notification shall not be displayed as a tip. What if, in the future, the notification could be displayed as a `tip` or `alert`, and then in a more distant future, a `dialog` option is viable? With the current model, the only way is to add more boolean properties to convey the new information: ```diff + + ``` Additionally speaking, the workload will now also have to validate the data structure and make sure that only one of the 3 values is `true` By using an evolvable enum, instead, all we need to do is to add new members: ```diff + - - - ``` ```xml ``` Similarly speaking, if you find yourself using a `nullable` Enum, that is a indication that maybe what you are trying to model is something that has 3 states and an enum is more appropraite. For instance, let's assume we have a boolean property called `syncEnabled`, where `null` means that the value is undefined and inherited from the general tenant configuration. Instead of modelling like a boolean: ```xml ``` An enum not only better conveys the message: ```xml ``` but it is also open for future scenarios: ```diff + ``` Additionally speaking, depending on the situation, a nullable enum can very likely be avoided by adding a `none` member. If used, `EnumType` names should be singular if the are non-flags enums, and the names should be plural if they are flags enums. #### Flag Enums or Collection of Enums In case an enum can have multiple values at the same time the tentation is to model the property as a collection of Enums: ```xml ``` However, [Flagged Enums](https://docs.oasis-open.org/odata/odata-csdl-xml/v4.01/odata-csdl-xml-v4.01.html#_Toc38530378) can model this use case scenario: ```diff - + - + - + - + - + ``` With such enum, customers can select multiple values in a single field: `displayMethod = tip | alert` In cases where two properties want to use the same *conceptual* `EnumType`, but one property is a collection while the other is single-values, the model should define *two* separate `EnumType`s, one being a non-flags enum with a singular name and the other marked as a flags enum with its name being the plural form of the non-flags enum. #### Flag enum + non-flag enum There are occasions where one API will want to use a non-flag enum, but another API will want a flags enum. For example, the `displayMethod` example above may have one API that is configuring which display methods to use, and another API which is configuring that particular display method. In this case, the first API will want a flags enum, but the second API will want to only allow configuring one display method at a time, and will therefore prefer a non-flags enum. Two enum types should be defined, one as a flags enum and the other as a non-flags enum. The flags enum should be named such that it is plural, and the non-flags enum should be named such that it is singular. The two types should be kept in sync with each other. ================================================ FILE: graph/patterns/evolvable-enums.md ================================================ # Evolvable enums Microsoft Graph API Design Pattern *The evolvable enums pattern allows API producers to extend enumerated types with new members without breaking API consumers.* Note: You might be interested in reading the [Enum guidance](./enums.md) first ## Problem Frequently API producers want to add new members to an enum type after it is initially published. Some serialization libraries might fail when they encounter members in an enum type that were added after the serialization model was generated. In this documentation, we refer to any added enum members as unknown. ## Solution The solution is to add a 'sentinel' member named `unknownFutureValue` at the end of the currently known enum members. The API producer then replaces any member that is numerically after `unknownFutureValue` with `unknownFutureValue`. If an API consumer can handle unknown enum values, the consumer can opt into receiving the unknown enum members by specifying the `Prefer: include-unknown-enum-members` HTTP header in their requests. The API producer then indicates that this preference has been applied by returning the `Preference-Applied: include-unknown-enum-members` HTTP header in the response. ## When to use this pattern It is a best practice to include an `unknownFutureValue` value when the enum is initially introduced to allow flexibility to extend the enum during the lifetime of the API. Even if the API producer believes that they have included all possible members in an enum, we still strongly recommend that you include an `unknownFutureValue` member to allow for unforeseen future circumstances that may require extending the enum. This pattern must not be used in scenarios where an API consumer wants to use enum members that are not known to the API producer. ## Issues and considerations Consider the following: - An enum member with the name of `unknownFutureValue` MUST only be used as a sentinel value. An API producer MUST not include a member named `unknownFutureValue` in an enum for any other purpose. - Changing the value (that is, position) of the `unknownFutureValue` sentinel member is considered a breaking change and must follow the [deprecation](../deprecation.md) process. - Enum types can have multiple members with the same numeric value to allow for aliasing enum members. `unknownFutureValue` MUST not be aliased to any other enum member. - There is no ability for a client to indicate that it can handle a subset of unknown enum members. Instead, they can only specify that either they cannot handle any unknown enum members or they can handle any unknown enum members. - The `Prefer: include-unknown-enum-members` header applies to all included enums in the request/response. There is no way for an API consumer to apply the behavior to only a subset of enum types. - New values MUST not be inserted into the enum before `unknownFutureValue`. Implementers are recommended to make the numeric value of `unknownFutureValue` one greater than the last known enum member to ensure that there are no gaps into which a new member could be inadvertently added. The exception to this is the case of flagged enums, in which case the value of `unknownFutureValue` should be the next power of 2 value. - For flagged enums, care should be exercised to ensure that `unknownFutureValue` is not included in any enum members that represent a combination of other enum members. - If the value of a property containing a flag enum contains multiple unknown values, they should all be replaced with a single `unknownFutureValue` value (that is, there should not be multiple `unknownFutureValue` values returned). - If an API consumer specifies `unknownFutureValue` for the value of a property in a `POST`/`PUT` request or as a parameter of an action or function, the API producer must reject the request with a `400 Bad Request` HTTP status. - If an API consumer specifies `unknownFutureValue` for the value of a property in a `PATCH` request, the API producer must treat the property as if it were absent (that is, the existing value should not be changed). In the case where the API producer treats `PATCH` as an upsert, the call MUST be rejected with a `400 Bad Request` HTTP status. - If an API consumer specifies an enum member greater than `unknownFutureValue` in any request without specifying the `Prefer: include-unknown-enum-members` header, the API producer must reject the request with a `400 Bad Request` HTTP status. - For details about how the `unknownFutureValue` value is handled as part of a `$filter` clause, consult the following examples: - **CSDL** ```xml ``` - **Filter behavior** | `$filter` clause | `Prefer: include-unknown-enum-members` Absent | `Prefer: include-unknown-enum-members` Present | |---|---|---| | `enumProperty eq unknownFutureValue`| Return entities where enumProperty has any value greater than `unknownFutureValue` replacing actual value with `unknownFutureValue`| Return nothing | | `enumProperty gt unknownFutureValue`| Return entities where enumProperty has any value greater than `unknownFutureValue` replacing actual value with `unknownFutureValue` | Return entities where enumProperty has any value greater than `unknownFutureValue` | | `enumProperty lt unknownFutureValue`| Return entities where enumProperty has any known value (i.e. less than `unknownFutureValue`) | Return entities where enumProperty has any value less than `unknownFutureValue`| | `enumProperty eq newValue` | `400 Bad Request` | Return entities where enumProperty has the value `newValue` | | `enumProperty gt newValue` | `400 Bad Request` | Return entities where enumProperty has a value greater than `newValue` | | `enumProperty lt newValue` | `400 Bad Request` | Return entities where enumProperty has a value less than `newValue` | - If an evolvable enum is included in an `$orderby` clause, the actual numeric value of the member should be used to order the collection. After sorting, the member should then be replaced with `unknownFutureValue` when the `Prefer: include-unknown-enum-members` header is absent. ## Examples For the following examples, we consider the `managedDevice` entity, which refers to the `managedDeviceArchitecture` enum type. ```xml ``` When the `managedDeviceArchitecture` enum was initially published to Microsoft Graph, it was defined as follows: ```xml ``` The enum was later extended to add a new value of `quantum`, leading to the following CSDL: ```xml ``` ### Default behavior ```http GET https://graph.microsoft.com/v1.0/deviceManagement/managedDevices?$select=displayName,processorArchitecture ``` ```json { "value": [ { "id": "0", "displayName": "Surface Pro X", "processorArchitecture" : "arm64" }, { "id": "1", "displayName": "Prototype", "processorArchitecture": "unknownFutureValue" } { "id": "2", "displayName": "My Laptop", "processorArchitecture": "x64" } ] } ``` In this case, the value of the `processorArchitecture` property is `quantum`. However, because the client did not request the `include-unknown-enum-members` header, the value was replaced with `unknownFutureValue`. ### Include opt-in header ```http GET https://graph.microsoft.com/v1.0/deviceManagement/managedDevices?$select=displayName,processorArchitecture Prefer: include-unknown-enum-members ``` ```json Preference-Applied: include-unknown-enum-members { "value": [ { "displayName": "Surface Pro X", "processorArchitecture" : "arm64" }, { "displayName": "Prototype", "processorArchitecture": "quantum" }, { "displayName": "My Laptop", "processorArchitecture": "x64" } ] } ``` ### Default sort behavior ```http GET https://graph.microsoft.com/v1.0/deviceManagement/managedDevices?$select=displayName,processorArchitecture&$orderBy=processorArchitecture ``` ```json { "value": [ { "displayName": "Surface Pro X", "processorArchitecture" : "arm64" }, { "displayName": "My Laptop", "processorArchitecture": "x64" }, { "displayName": "Prototype", "processorArchitecture": "unknownFutureValue" } ] } ``` ### Sort behavior with opt-in header ```http GET https://graph.microsoft.com/v1.0/deviceManagement/managedDevices?$select=displayName,processorArchitecture Prefer: include-unknown-enum-members ``` ```json Preference-Applied: include-unknown-enum-members { "value": [ { "displayName": "Surface Pro X", "processorArchitecture" : "arm64" }, { "displayName": "My Laptop", "processorArchitecture": "x64" }, { "displayName": "Prototype", "processorArchitecture": "quantum" } ] } ``` ### Default filter behavior ```http GET https://graph.microsoft.com/v1.0/deviceManagement/managedDevices?$select=displayName,processorArchitecture&$filter=processorArchitecture gt x64 ``` ```json { "value": [ { "displayName": "My Laptop", "processorArchitecture": "x64" }, { "displayName": "Prototype", "processorArchitecture": "unknownFutureValue" } ] } ``` ### Filter behavior with opt-in header ```http GET https://graph.microsoft.com/v1.0/deviceManagement/managedDevices?$select=displayName,processorArchitecture&$filter=processorArchitecture gt x64 Prefer: include-unknown-enum-members ``` ```json Preference-Applied: include-unknown-enum-members { "value": [ { "displayName": "My Laptop", "processorArchitecture": "x64" }, { "displayName": "Prototype", "processorArchitecture": "quantum" } ] } ``` ### Patch example ```http PATCH https://graph.microsoft.com/v1.0/deviceManagement/managedDevices/1 { "displayName": "Secret Prototype", "processorArchitecture": "unknownFutureValue" } ``` ```json { "id": "1", "displayName": "Secret Prototype", "processorArchitecture": "unknownFutureValue" } ``` ```http GET https://graph.microsoft.com/v1.0/deviceManagement/managedDevices/1 Prefer: include-unknown-enum-members ``` ```json Preference-Applied: include-unknown-enum-members { "id": "1", "displayName": "Secret Prototype", "processorArchitecture": "quantum" } ``` ## Flag enum examples For the following examples, we consider the `windowsUniversalAppX` entity, which refers to the `windowsArchitecture` flag enum type. ```xml ``` When the `windowsArchitecture` enum was initially published to Microsoft Graph, it was defined as follows: ```xml ``` The enum was later extended to add a new value of `quantum`, leading to the following CSDL: ```xml ``` ### Flag enum default behavior ```http GET https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps?$select=displayName,applicableArchitectures ``` ```json { "value": [ { "id": "0", "displayName": "OneNote", "applicableArchitectures" : "neutral" }, { "id": "1", "displayName": "Minecraft", "applicableArchitectures": "x86,x64,arm,unknownFutureValue" } { "id": "2", "displayName": "Edge", "applicableArchitectures": "x64,arm,unknownFutureValue" } ] } ``` In this case, the value of the `applicableArchitectures` property includes `quantum`. However, because the client did not request the `include-unknown-enum-members` header, the value was replaced with `unknownFutureValue`. ### Flag enum include opt-in header ```http GET https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps?$select=displayName,applicableArchitectures Prefer: include-unknown-enum-members ``` ```json Preference-Applied: include-unknown-enum-members { "value": [ { "id": "0", "displayName": "OneNote", "applicableArchitectures" : "neutral" }, { "id": "1", "displayName": "Minecraft", "applicableArchitectures": "x86,x64,arm,quantum" } { "id": "2", "displayName": "Edge", "applicableArchitectures": "x64,arm,quantum" } ] } ``` ### Flag enum default filter behavior ```http GET https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps?$select=displayName,applicableArchitectures&$filter=applicableArchitectures has unknownFutureValue ``` ```json { "value": [ { "id": "1", "displayName": "Minecraft", "applicableArchitectures": "x86,x64,arm,unknownFutureValue" } { "id": "2", "displayName": "Edge", "applicableArchitectures": "x64,arm,unknownFutureValue" } ] } ``` ### Flag enum include opt-in header filter behavior ```http GET https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps?$select=displayName,applicableArchitectures&$filter=applicableArchitectures has unknownFutureValue Prefer: include-unknown-enum-members ``` ```json Preference-Applied: include-unknown-enum-members { "value": [] } ``` ### Flag enum patch example ```http PATCH https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/1 { "displayName": "Minecraft 2", "processorArchitecture": "unknownFutureValue" } ``` ```json { "id": "1", "displayName": "Minecraft 2", "applicableArchitectures": "unknownFutureValue" } ``` ```http GET https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/1 Prefer: include-unknown-enum-members ``` ```json Preference-Applied: include-unknown-enum-members { "id": "1", "displayName": "Minecraft 2", "applicableArchitectures": "x86,x64,arm,quantum" } ``` ================================================ FILE: graph/patterns/facets.md ================================================ # Facets Microsoft Graph API Design Pattern *A frequent pattern in Microsoft Graph is to model multiple variants of a common concept as a single entity type with common properties and facets for variants.* ## Problem An API designer needs to model a set of heterogeneous resources that have common properties and behaviors and might express features of multiple variants at a time because variants are not mutually exclusive. For example, a movie clip stored on OneDrive is both a file and a video. There are properties associated to each variant. ## Solution API designers create multiple complex types to bundle properties for each variant, and then define an entity type with a property for each complex type to hold the properties of the variant. In this solution, a child variant is identified by the presence of one or more facets in the parent object. ## When to use this pattern The facets pattern is useful when there is a number of variants and they are not mutually exclusive. It also makes it syntactically easier to query resources by using the OData `$filter` expression because it doesn't require casting. You can consider related patterns such as [type hierarchy](./subtypes.md) and [flat bag of properties](./flat-bag.md). ## Issues and considerations When introducing a new facet, you need to ensure that the new facet doesn't change the semantic of the model with its implicit constraints. ## Example The driveItem resource represents a file, folder, image, or other item stored in a drive and is modeled by using an entity type with multiple facets. ```XML ... ``` An API request to get all items from a personal OneDrive returns a heterogenous collection with different facets populated. In the following example, there is a folder, a file, and an image in the collection. The image entity has two facets populated: file and image. ``` GET https://graph.microsoft.com/v1.0/me/drive/root/children Response shortened for readability: "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('93816c1c-1b19-41de-a322-a1643d7f4d39')/drive/root/children", "value": [ { "createdDateTime": "2021-07-07T13:59:47Z", "name": "Microsoft Teams Chat Files", ..., "folder": { "childCount": 15 } }, ... { "createdDateTime": "2021-12-15T00:07:36Z", "name": "Versioning and Deprecation.docx", ..., "file": { "mimeType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "hashes": { "quickXorHash": "r2d9uZilW0zEIXwycymsUQzhV+U=" } }, ... }, { "createdDateTime": "2021-12-21T16:32:51Z", "name": "WhaleShark.jpg", ... "file": { "mimeType": "image/jpeg", "hashes": { "quickXorHash": "2vHpAA7RDZJteIwl1pXR980xuh4=" } }, ..., "image": {} } ] ``` ================================================ FILE: graph/patterns/flat-bag.md ================================================ # Flat bag of properties Microsoft Graph API Design Pattern *A known pattern in Microsoft Graph is to model multiple variants of a common concept as a single entity type with all potential properties plus an additional property to distinguish the variants.* ## Problem API designers need to model a small and limited number of variants of a common concept with a concise list of non-overlapping properties and consistent behavior across variants. The designer also wants to simplify query construction. ## Solution The API designer creates one entity type with all the potential properties plus an additional property to distinguish the variants, often called `variantType`. For each value of `variantType`, some properties are meaningful and others are ignored. ## When to use this pattern The flat bag pattern is useful when there is a small number of variants with similar behavior, and variants are queried for mostly read-only operations. The pattern also makes it syntactically easier to query resources by using the OData `$filter` expression because it doesn't require casting. ## Issues and considerations In general, the flat bag pattern is the least recommended modeling choice because it is weakly typed, and it is difficult to semantically verify targeted resource modifications. However, there are circumstances when query simplicity and a limited number of properties might overweight considerations of a more strongly typed approach. The pattern is not recommended for a large number of variants and properties because the payload becomes sparsely populated. You can consider related patterns such as [type hierarchy](./subtypes.md) and [facets](./facets.md). ## Example A good example for flat bag implementation is the recurrencePattern type on [recurrencePattern](https://docs.microsoft.com/graph/api/resources/recurrencepattern). The recurrencePattern has six variants expressed as six different values of the `type` property (for example: daily, weekly, ...). The key here is that for each of these values, some properties are meaningful and others are ignored (for example: `daysOfWeek` is relevant when `type` is `weekly` but not when it is `daily`). ``` ``` ================================================ FILE: graph/patterns/long-running-operations.md ================================================ # Long running operations Microsoft Graph API Design Pattern *The long running operations (LRO) pattern provides the ability to model operations where processing a client request takes a long time, but the client isn't blocked and can do some other work until operation completion.* ## Problem The API design requires modeling operations on resources, which takes a long time to complete, so that API clients don't need to wait and can continue doing other work while waiting for the final operation results. The client should be able to monitor the progress of the operation and have an ability to cancel it if needed. The API needs to provide a mechanism to track the work being done in the background. The mechanism needs to be expressed in the same web style as other interactive APIs. It also needs to support checking on the status and/or being notified asynchronously of the results. ## Solution The solution is to model the API as a synchronous service that returns a resource that represents the eventual completion or failure of a long running operation. There are two flavors of this solution: - The returned resource is the targeted resource and includes the status of the operation. This pattern is often called RELO (resource-based long running operation).

The status monitor LRO flow

- The returned resource is a new API resource called *stepwise operation* and is created to track the status. This LRO solution is similar to the concept of Promises or Futures in other programming languages.

The status monitor LRO flow

The RELO pattern is the preferred pattern for long running operations and should be used wherever possible. The pattern avoids complexity, and consistent resource presentation makes things simpler for our users and tooling chain. - For the RELO pattern, you should return the Location header that indicates the location of the resource. - The API response says the targeted resource is being created by returning a 201 status code and the resource URI is provided in the Location header, but the response indicates that the request is not completed by including "Provisioning" status. - For the LRO pattern, you should return the Location header that indicates the location of a new stepwise operation resource. - The API response says the operation resource is being created at the URL provided in the Location header and indicates that the request is not completed by including a 202 status code. - Microsoft Graph doesn’t allow tenant-wide operation resources; therefore, stepwise operations are often modeled as a navigation property on the target resource. - For most implementations of the LRO pattern (like the example above), there will be 3 permissions necessary to comply with the principle of least privilege: `ArchiveOperation.ReadWrite.All` to create the `archiveOperation` entity, `ArchiveOperation.Read.All` to track the `archiveOperation` entity to completion, and `Archives.Read.All` to retrieve the `archive` that was created as a result of the operation. For APIs that would have been modeled as a simple `GET` on the resource URL, but that are modeled as long-running operations due to MSGraph performance requirements, only the `Archive.Read.All` permission is necessary as long as creating the `archiveOperation` entity is "safe". Here, "safe" means that there are no side effects of creating the `archiveOperation` entity that would change the functionality of any entities outside of the `archive` being retrieved. This requirment does not mean that the API must be idempotent, but an idempotent API is suffucient to meet this requirement. ## When to use this pattern Any API call that is expected to take longer than one second in the 99th percentile should use the long running operations pattern. How do you select which flavor of LRO pattern to use? An API designer can follow these heuristics: 1. If a service can create a resource with a minimal latency and continue updating its status according to the well-defined and stable state transition model until completion, then the RELO model is the best choice. 2. Otherwise, a service should follow the stepwise operation pattern. ## Issues and considerations - One or more API consumers MUST be able to monitor and operate on the same resource at the same time. - The state of the system SHOULD always be discoverable and testable. Clients SHOULD be able to determine the system state even if the operation tracking resource is no longer active. Clients MAY issue a GET on some resource to determine the state of a long running operation. - The long running operations pattern SHOULD work for clients looking to "fire and forget" and for clients looking to actively monitor and act upon results. - The long running operations pattern might be supplemented by the [change notification pattern](./change-notification.md). - Cancellation of a long running operation does not explicitly mean a rollback. On a per API-defined case, it might mean a rollback or compensation or completion or partial completion, etc. Following a canceled operation, the API should return a consistent state that allows continued service. - A recommended minimum retention time for a stepwise operation is 24 hours. Operations SHOULD transition to "tombstone" for an additional period of time prior to being purged from the system. - Services that provide a new operation resource MUST support GET semantics on the operation. - Services that return a new operation MUST always return an LRO (even if the LRO is created in the completed state); that way API consumers don't have to deal with two different shapes of response. ## Examples ### Create a new resource using RELO A client wants to provision a new database: ``` POST https://graph.microsoft.com/v1.0/storage/databases/ { "displayName": "Retail DB", } ``` The API responds synchronously that the database has been created and indicates that the provisioning operation is not fully completed by including the Content-Location header and status property in the response payload: ``` HTTP/1.1 201 Created Location: https://graph.microsoft.com/v1.0/storage/databases/db1 { "id": "db1", "displayName": "Retail DB", "status": "provisioning", [ … other fields for "database" …] } ``` The client waits for a period of time, and then invokes another request to try to get the database status: ``` GET https://graph.microsoft.com/v1.0/storage/databases/db1 HTTP/1.1 200 Ok { "id": "db1", "displayName": "Retail DB", "status": "succeeded", [ … other fields for "database" …] } ``` ### Cancel RELO operation A client wants to cancel provisioning of a new database: ``` DELETE https://graph.microsoft.com/v1.0/storage/databases/db1 ``` The API responds synchronously that the database is being deleted and indicates that the operation is accepted and is not fully completed by including the status property in the response payload. The API might provide a recommendation to wait for 30 seconds: ``` HTTP/1.1 202 Accepted Retry-After: 30 { "id": "db1", "displayName": "Retail DB", "status": "deleting", [ … other fields for "database" …] } ``` The client waits for a period of time, and then invokes another request to try to get the deletion status: ``` GET https://graph.microsoft.com/v1.0/storage/databases/db1 HTTP/1.1 404 Not Found ``` ### Create a new resource using the stepwise operation ``` POST https://graph.microsoft.com/v1.0/storage/archives/ { "displayName": "Image Archive", ... } ``` The API responds synchronously that the request has been accepted and includes the Location header with an operation resource for further polling: ``` HTTP/1.1 202 Accepted Location: https://graph.microsoft.com/v1.0/storage/operations/123 ``` ### Poll on a stepwise operation ``` GET https://graph.microsoft.com/v1.0/storage/operations/123 ``` The server responds that results are still not ready and optionally provides a recommendation to wait 30 seconds: ``` HTTP/1.1 200 OK Retry-After: 30 { "createdDateTime": "2015-06-19T12-01-03.4Z", "lastActionDateTime": "2015-06-19T12-01-03.45Z", "status": "running" } ``` The client waits the recommended 30 seconds and then invokes another request to get the results of the operation: ``` GET https://graph.microsoft.com/v1.0/storage/operations/123 ``` The server responds with a "status:succeeded" operation that includes the resource location: ``` HTTP/1.1 200 OK { "createdDateTime": "2015-06-19T12-01-03.45Z", "lastActionDateTime": "2015-06-19T12-06-03.0024Z", "status": "succeeded", "resourceLocation": "https://graph.microsoft.com/v1.0/storage/archives/987" } ``` ### Trigger a long running action using the stepwise operation ``` POST https://graph.microsoft.com/v1.0/storage/copyArchive { "displayName": "Image Archive", "destination": "Second-tier storage" ... } ``` The API responds synchronously that the request has been accepted and includes the Location header with an operation resource for further polling: ``` HTTP/1.1 202 Accepted Location: https://graph.microsoft.com/v1.0/storage/operations/123 ``` ================================================ FILE: graph/patterns/namespace.md ================================================ # Namespace Microsoft Graph API Design Pattern *The namespace pattern provides the ability to organize resource definitions together into a logical set.* ## Problem When building a complex offering, API designers might need to model many different resources and their relationships. For a better user experience and discoverability, related API elements need to be grouped together. ## Solution API designers can use the namespace attribute of the CSDL schema to declare a namespace and logically organize related API entities in the Microsoft Graph metadata. ```XML ... ``` A public namespace must contain the `microsoft.graph.` prefix and be presented in camel case; that is, `microsoft.graph.myNamespace`. Elements defined in namespaces not prefixed with `microsoft.graph` will be mapped to the public `microsoft.graph` namespace. Namespaces should not include more than two segments following the `microsoft.graph` prefix; that is, `microsoft.graph.myNamespace.mySubNamespace`. Public namespaces must define an alias, and that alias must be the concatenation of the segments following the `microsoft.graph` prefix with proper camel casing rules applied; that is, `myNamespaceMySubNamespace`. When type casting is required in the API query, request, or response, a fully qualified type name is represented as concatenation of the namespace or alias, followed by a dot (`.`) and the type name. ## When to use this pattern API resource grouping creates a user-friendly experience, keeping all resources for a specific feature close together and limiting the length of IDE prompts such as auto-complete in some programming languages. For a consistent user experience, new namespace should be aligned with a top-level API category. ## Issues and considerations - Microsoft Graph consistency requirements discourage using the same type names for different concepts even within different namespaces. Microsoft Graph type names must be descriptive and should represent a single concept across the API Surface. - A namespace must be consistent with an API category in the navigation path according to [Microsoft Graph REST API Guidelines](../GuidelinesGraph.md#uniform-resource-locators-urls). - Changing a namespace prefixed with `microsoft.graph`, or moving types between, into, or out of a namespace prefixed with `microsoft.graph`, is a breaking change. - To extend a type in a different schema, a service must declare that schema and the type in it. This is conceptually similar to .NET partial types. - To reference a type in a different schema, simply refer to that type by its fully qualified name (namespace + type name). - Cyclical references between namespaces are not allowed because many object-oriented languages don’t support cycles between namespaces. - Microsoft Graph has some predefined constraints for declared namespaces: - All public namespaces must have the prefix `microsoft.graph`. - Public namespaces must declare an alias that is the concatenation of the segments following the `microsoft.graph` prefix. - At most, two levels of nesting below `microsoft.graph` is recommended. - If a namespace does not begin with the `microsoft.graph` prefix, all types in the schema are mapped into the public `microsoft.graph` namespace. ## Examples ### Namespace and type declarations ```XML ”\> … ``` Fully qualified type name: `microsoft.graph.search.bookmark` ### Managing multiple schemas Workloads must define schemas in their CSDL by using the Edmx format. Following is an example of a workload that exposes multiple namespaces. > **Tip:** As with schemas that exist in the `microsoft.graph` namespace, defining an entity type is optional; by default your schema derives all entity types from `microsoft.graph.entity`. > **Warning:** Do not deviate from the general structure in the following example. The schema validation tool expects the XML structure (including XML namespace declarations) to match this example. ```XML ``` ================================================ FILE: graph/patterns/navigation-property.md ================================================ # Navigation Property Microsoft Graph API Design Pattern *A navigation property is used to identify a relationship between resources.* ## Problem -------- It is often valuable to represent a relationship between resources in an API. Relationships between resources are often implicitly represented by a property contained in one of the resources that provides a key to a related resource. Usually that information is returned in a representation as an id value and the property is named using a convention that identifies the target type of related resource. e.g. userId The use of foreign key properties to describe related resources is a weakly typed mechanism and requires additional information for a developer to traverse the relationship. Discovery of related resources is not trivial. ## Solution -------- Navigation properties are an [OData convention](https://docs.microsoft.com/en-us/odata/webapi/model-builder-untyped#navigation-property) defined in the [CSDL Specification](https://docs.oasis-open.org/odata/odata-csdl-xml/v4.01/odata-csdl-xml-v4.01.html#_Toc38530365) that allows an API designer to describe a special kind of property in a model that references an related entity. In the HTTP API this property name translates to a path segment that can be appended to the URL of the primary resource in order to access a representation of the related resource. This prevents the client from needing to know any additional information on how to construct the URL to the related resource and the client does not need to retrieve the primary resource if it is only interested in the related resource. It is the responsibility of the API implementation to determine the Id of the related resource and return the representation of the related entity. For example: - /user/{userId}/manager represents many-to-one relationship - /user/{userId}/messages represents one-to-many relationship Additionally, using the OData Expand query parameter, related entities can be nested into the primary entity so both can be retrieved in a single round trip. These relationships can be described in CSDL as follows: ```xml ``` ## Issues and Considerations ------------------------- In the current Microsoft Graph implementation, there are scenarios which use navigation properties that cross backend services that have automatic support; there are also some limitations for other scenarios. These limitations are being eliminated over time, but it will be necessary to ensure support for any particular scenario. [Automatic support and limitations of the current implementation](https://dev.azure.com/msazure/One/_wiki/wikis/Microsoft%20Graph%20Partners/354352/Cross-workload-navigations?anchor=supported-scenarios) are documented internally.   Navigation properties defined within an entity are not returned by default when retreiving the representation of an entity unless explicity desired by a service. The API can consumer can use the `expand` query parameterm, where supported, to retreive both the source and the target entity of the relationship in a single request. Implementing support for accessing the "$ref" of a navigation property allows a caller to return just the URL of related resource. e.g. `/user/23/manager/$ref`. This is useful when a client wishes to identify the related resource but doesn't need all of its properties. The strongly-typed nature of navigation properties is valuable for backend services and for client applications, when compared with the weakly-typed foreign key property. Strong typing allows some documentation and visualizations to be automatically generated, it allows SDK generation, and it allows some automated client code generation; it also prevents the need to store duplicate data on the service side and as a result has improved data consistency across APIs since the duplicate data does not need to be regularly refreshed. ## When to Use this Pattern ------------------------ ### "Many-to-one" relationships The use of navigation properties is preferred over including an Id field to reference the related entity in a many-to-one relationship. Id values require a client to make two round trips to retrieve the details of a related entity. With a navigation property a client can retrieve a related entity in a single round trip. Many-to-one relationships are always non-contained relationships as the lifetime of the target cannot depend on the source. ```xml ``` ### "Zero-or-one-to-one" relationships These navigation properties can be used as a structural organization mechanism to separate properties of an entity in a way that is similar to how complex types are often used. The primary difference being that the target of the navigation property are not returned by default when the source entity is retreived. The use of the navigation properties over complex properties is preferred when the source and target information comes from different backend APIs. These relationships must be contained. ```xml ``` ### "One-to-many" relationships Resources that contain a parent Id property in a child resource can utilize a navigation property in the parent resource that is declared as a collection of child resources. If desirable, a parent navigation property can also be created in the child resource to the parent resource. This is usually not necessary as the parent URL is a subset of child resource URL. The main use of this would be when retrieving child resources and choosing to expand properties of the parent resource so that both can be retrieved in a single request. `/invoice/{invoiceId}/items/{itemId}?expand=parentInvoice(select=invoiceDate,Customer)` ```xml ``` One-to-many relationships may be contained or non-contained relations. ## Example ------- ### Retrieving a related entity ```http GET /users/{id}/manager?$select=id,displayName 200 OK Content-Type: application/json { "id": "6b3ee805-c449-46a8-aac8-8ff9cff5d213", "displayName": "Bob Boyce" } ``` This navigation property could be described with the following CSDL: ```xml ``` `ContainsTarget` is set to false for clarity, this is the default value when the attribute is omitted. ### Retrieving a reference to a related entity ```http GET /users/{id}/manager/$ref 200 OK Content-Type: application/json { "@odata.id": "https://graph.microsoft.com/v1.0/directoryObjects/6b3ee805-c449-46a8-aac8-8ff9cff5d213/Microsoft.DirectoryServices.User" } ``` Note: Currently the base URL returned in $ref results are incorrect. In order to process these URLs the client will need to convert the URL to a Graph URL. ### Retrieving an entity with a related entity included ```http GET /users/{id}?select=id,displayName&expand=manager(select=id,displayName) 200 OK Content-Type: application/json { "id": "3f057904-f936-4bf0-9fcc-c1e6f84289d8", "displayName": "Jim James", "manager": { "@odata.type": "#microsoft.graph.user", "id": "6b3ee805-c449-46a8-aac8-8ff9cff5d213", "displayName": "Bob Boyce" } } ``` ### Creating an entity with a reference to a related entity Create a new user that references an existing manager ```http POST /users Content-Type: application/json { "displayName": "Bob", "manager@odata.bind": "https://graph.microsoft.com/v1.0/users/{managerId}" } 201 Created ``` ### Updating a related entity reference Update the user entity to contain a relationship to an existing manager.   ```http PATCH /users/{id} Content-Type: application/json { "displayName": "Bob", "manager@odata.bind": "https://graph.microsoft.com/v1.0/users/{managerId}" } 204 No Content ```   ### Clear a related entity reference Remove the relationship between the user and the manager.   ```http DELETE /users/{id}/manager/$ref 204 No Content ``` Delete the related entity. ```http DELETE /users/{id}/manager 204 No Content ``` ================================================ FILE: graph/patterns/operations.md ================================================ # Operations Microsoft Graph API Design Pattern *The operations pattern provides the ability to model a change that might impact multiple resources and can't be effectively modeled by using HTTP methods.* ## Problem Sometimes when modeling a complex business domain, API designers need to model a business operation that effects one or multiple resources and has additional semantic meaning that cannot be expressed by HTTP methods. Modeling the operation via HTTP methods on each individual resource might be either inefficient or expose internal implementation details. ## Solution To address these use cases, API designers can use operational resources such as functions or actions. If the operation doesn't have any side effects and MUST return a single instance of a type or a collection of instances, then the designer SHOULD use OData functions; otherwise, the designer can model the operation as an action. ## When to use this pattern The operation pattern might be justified when a modeling operation represents one or combination of the following: - a change of a resource (i.e., increment the value of a property) rather than a state (i.e., the final value of the property) - complex processing logic that shouldn't be exposed to the client - operation parameters might convey a restricted set of option (i.e., a report that has to specify a date range) - the operation leverage some service-side data not exposed to (or easily retrieved in context by) the user. You can consider related patterns such as [long running operations](./long-running-operations.md) and [change tracking](./change-tracking.md). ## Issues and considerations - Microsoft Graph does NOT support unbound actions or functions. Bound actions and functions MUST must have the `isBound="true"` attribute and a binding parameter. Bound operations are invoked on resources matching the type of the binding parameter.The first parameter of a bound operation is always the binding parameter.The binding parameter can be of any type, and parameter value MAY be Nullable. - Both actions and functions support overloading, meaning a schema might contain multiple actions or functions with the same name. The overload rules as per the OData [standard](http://docs.oasis-open.org/odata/odata-csdl-xml/v4.01/odata-csdl-xml-v4.01.html#sec_FunctionOverloads) apply when adding parameters to actions and functions. - Because Microsoft Graph only supports bound actions and functions, all must have at least one parameter where the first is the binding parameter. The MUSTS of parameters are as follows: - Each parameter must have a simple identifier name. - The parameter name must be unique within the overload. - The parameter must specify a type. - Microsoft Graph supports the use of optional parameters. The optional parameter annotation can be used instead of creating function or action overloads when unnecessary. - API designer **MUST** use POST to call actions on resources. - API designer **MUST** use GET to call functions on resources. - The addition of a new mandatory not-nullable parameter to an existing action or function is a breaking change and is not allowed without proper versioning that is in accordance with our [deprecation guidelines](https://github.com/microsoft/api-guidelines/blob/vNext/graph/deprecation.md). ## Examples ### A user wants to forward email ``` POST https://graph.microsoft.com/v1.0/me/messages/AQMkADNkMmMxYzIwLWJkOTItNDczZC1hNmYyLWUwZjk2ZTljMDQyNQBGAAAD1dY5iRo4x0_pEqop6hOrQAcAeGCrbYV1-kiG-z9Rv6yHMgAAAgEJAAAAeGCrbYV1-kiG-z9Rv6yHMgABRxeUKgAAAA==/forward { "comment": "FYI", "toRecipients": [ { "emailAddress": { "address": "alex.darrow@microsoft.com", "name": "Alex Darrow" } } ] } ``` Response: ``` HTTP/1.1 202 Accepted "cache-control": "private", "client-request-id": "ca2d0416-a2c1-05af-df60-0921547a86e9", "content-length": "0", "request-id": "8b53016f-cc2b-4d9f-9818-bd6f0a5e3cd0" ``` `forward` operation is modeled as an asynchronous action bound to the Graph `message` entity type because the operation represents a complex business logic processed on the server side. ``` ``` ### A user wants to see recent application activities ``` GET https://graph.microsoft.com/v1.0/me/activities/recent ``` Response: ``` HTTP/1.1 200 OK { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(userActivity)", "value": [] } ``` `recent` function will query the most recent historyItems and then pull related activities therefore the operation represents a complex business logic processed on the server side. This operation doesn't change any server data and is a good fit for a function. The function is bound to the collection of `userActivity` entity type. ``` ``` ### Get a report that provides the number of active users using Microsoft Edge ``` https://graph.microsoft.com/beta/reports/getBrowserUserCounts(period='D7') ``` Response: ``` HTTP/1.1 200 OK Content-Type: application/json Content-Length: 205 { "value":[ { "reportRefreshDate":"2021-04-17", "reportPeriod":7, "userCounts":[ { "reportDate":"2021-04-17", "edge":413 }, { "reportDate":"2021-04-16", "edge":883 } ] } ] } ``` `getBrowserUserCounts` operation doesn't change any server data and is a good fit for a function.`period` operation parameter convey a restricted set of options representing the number of days over which the report is aggregated. The report supports only 7,30,90, or 180 days. In addition the function doesn't return a Graph resource but streams response data in JSON or CSV formats. ``` ``` ================================================ FILE: graph/patterns/subsets.md ================================================ # Modeling collection subsets Microsoft Graph API Design Pattern *The modeling collection subsets pattern is the modeling state associated to a collection that may include all instances, an included subset, an excluded subset, no instances, or any combinations of the preceding items.* ## Problem A common pattern is to apply a policy or state to a collection of resources. With this, there also comes the question of how to model cases where we want to apply to `all` or `none` without having to special case these values within the collection set or introduce cross-property dependencies. Likewise, we'd like to model it in a way where it is easy to understand and interpret usage from just looking at the schema. An example is where you have a policy that you need to be able to apply to users in an organization. You might want to support the default **None**, enablement for **All**, or enablement for **Select** users where you only grant it to a few users. Existing patterns for this either have special-cased strings or have tightly coupled dependencies between two independent properties. Neither is intuitive, both require reading documentation, and neither can be inferred from the schema or within client libraries. ## Solution Have an abstract base class where all variants of the subset are derived types from the base subset. For more information, see the [general subtyping guidance](./subtypes.md). The abstract base class may also optionally hold an `enum` for the different variants. If it does, the `enum` must have a member for all possible variants. The purpose of including this is to allow for easier ways to do query and filter operations on variants like `all` and `none` without relying on `isof` functions. **Base type *without* an enum for the variants** ```xml ``` **Base type *with* an enum for the variants** ```xml ``` **Derived types** ```xml ``` Be aware that the name values and types in the preceding examples are just examples and can be replaced with your scenario equivalent values. For example, type names don't really need to be `memberships`. The collection doesn't have to be a collection at all; it can be singular and doesn't have to be a string. These pattern type names should satisfy the following naming conventions: - The base type name should have the suffix `Base`, and the enumeration type name (if an `enum` is defined) should have the suffix `Kind`. - Derived child types should have names with enumeration values as the prefixes; for example, if the enumeration member value is `value1`, then the derived type name is `value1`. ```xml ``` ## When to use this pattern Use this pattern when supporting two or more collection states of the following, where at least one of the states is a subset variant: - All targets - No targets - Subset of targets to be included - Subset of targets to be excluded If you only ever need to support two states—All or None—without using any subsets, it would be better to use a Boolean to toggle on and off. ## Issues and considerations Given that we are using an overarching subtype model, subtyping model limitations apply here as well; for more details, see the [subtyping documentation](./subtypes.md). ## Example ```http GET https://graph.microsoft.com/v1.0/identity/conditionalAccess/policies/ ``` _Note: Unrelated properties on entities are omitted for easier readability._ ```json { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#conditionalAccessPolicy", "values": [ { "id": "66d36273-fe4c-d478-dc22-e0179d856ce7", "conditions": { "users": { "includeGuestsOrExternalUsers": { "externalTenants": { "@odata.type":"microsoft.graph.conditionalAccessAllExternalTenants", "membershipKind": "all" } } } } }, { "id": "99d212f4-d94e-cde1-8e3c-208d78238277", "conditions": { "users": { "includeGuestsOrExternalUsers": { "externalTenants": { "@odata.type":"microsoft.graph.conditionalAccessEnumeratedExternalTenants", "membershipKind": "enumerated", "members": ["bd005e2a-876d-4bf0-92a1-ae9ff4276d54"] } } } } } ] } ``` ```http POST https://graph.microsoft.com/v1.0/identity/conditionalAccess/policies/ ``` _Note: Unrelated properties on entities are omitted for easier readability._ ```json { "id": "66d36273-fe4c-d478-dc22-e0179d856ce7", "conditions": { "users": { "includeGuestsOrExternalUsers": { "externalTenants": { "@odata.type":"microsoft.graph.conditionalAccessAllExternalTenants" } } } } } ``` or ```http POST https://graph.microsoft.com/v1.0/identity/conditionalAccess/policies/ ``` _Note: Unrelated properties on entities are omitted for easier readability._ ```json { "id": "66d36273-fe4c-d478-dc22-e0179d856ce7", "conditions": { "users": { "includeGuestsOrExternalUsers": { "externalTenants": { "@odata.type":"microsoft.graph.conditionalAccessEnumeratedExternalTenants", "members": ["bd005e2a-876d-4bf0-92a1-ae9ff4276d54"] } } } } } ``` ### Filter when base type has the "kind" enum property ```http GET https://graph.microsoft.com/v1.0/identity/conditionalAccess/policies?$filter=conditions/users/includeGuestsOrExternalUsers/externalTenants/membershipKind eq 'all' 200 OK { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#conditionalAccessPolicy", "values": [ { "id": "66d36273-fe4c-d478-dc22-e0179d856ce7", "conditions": { "users": { "includeGuestsOrExternalUsers": { "externalTenants": { "@odata.type":"microsoft.graph.conditionalAccessAllExternalTenants", "membershipKind": "all" } } } } } ] } ``` ### Filter when base type lacks the "kind" enum property ```HTTP GET https://graph.microsoft.com/v1.0/identity/conditionalAccess/policies?$filter=isof(conditions/users/includeGuestsOrExternalUsers/externalTenants, microsoft.graph.conditionalAccessAllExternalTenants) 200 OK { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#conditionalAccessPolicy", "values": [ { "id": "66d36273-fe4c-d478-dc22-e0179d856ce7", "conditions": { "users": { "includeGuestsOrExternalUsers": { "externalTenants": { "@odata.type":"microsoft.graph.conditionalAccessAllExternalTenants", "membershipKind": "all" } } } } } ] } ``` ================================================ FILE: graph/patterns/subtypes.md ================================================ # Type hierarchy Microsoft Graph API Design Pattern *A frequent pattern in Microsoft Graph is to have a small type hierarchy, a base type with a few subtypes. This lets us model collections of resources that have slightly different properties and behavior.* ## Problem The API design requires that we model a set of resources based on a common concept that can be further grouped into *mutually exclusive variants* with specific properties and behaviors. The API design should be evolvable and allow the addition of new variants without breaking changes. ## Solution API designers might use a *type hierarchy*, where there is one base type (which might be abstract) with a few shared properties representing the common concept and one subtype for each variant of the resource. In the hierarchy, the interdependencies of properties, that is, which properties are relevant for which variants, is fully captured in the type system. ## When to use this pattern Use this pattern where each variant of a common concept has its own unique properties and behaviors, no combination of variants is anticipated, and it is acceptable that callers who need to query resources by variant are adequately served by filtering or partitioning using type casting. You can consider related patterns such as [facets](./facets.md) and [flat bag of properties](./flat-bag.md). ## Issues and considerations When introducing a new subtype to the hierarchy, developers need to ensure that the new subtype doesn't change the semantic of the type hierarchy or collections of the specified base type with implicit constraints. To reference properties specific to a derived type, an API request URL might need to include a segment casting to the derived type. If the type hierarchy is very deep, then the resulting URL might become very long and not easily readable. There are a few considerations to take into account when new subtypes are introduced: - *TODO add something about SDK dependencies and required actions* - *TODO* Client libraries for a strongly typed language might ignore some of the values in the @odata.type property without further configuration and need to be updated to be able to pick the right (client) type to deserialize into. - In the case of public APIs in GA versions, clients might develop their applications to support exclusively the current set of subtypes, and don’t expect new variations. To mitigate the risk of clients' disruption, when introducing a new subtype, allow ample time for communication and rollout. ## Example The directoryObject type is the main abstraction for many directory types such as users, organizational contacts, devices, service principals, and groups stored in Azure Active Directory. Because any directoryObject object is a unique entity, the directoryObject type itself is derived from the `graph.entity` base type. ```XML ``` Groups and users are derived types and modeled as follows: ```XML ... ... ``` An API request to get members of a group returns a heterogeneous collection of users and groups where each element can be a user or a group, and has an additional `@odata.type` property that specifies the subtype: ``` GET https://graph.microsoft.com/v1.0/groups/a94a666e-0367-412e-b96e-54d28b73b2db/members Response payload shortened for readability. The deletedDateTime property from the base type is a non-default property and is only returned if explicitly requested. { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#directoryObjects", "value": [ { "@odata.type": "#microsoft.graph.user", "id": "37ca648a-a007-4eef-81d7-1127d9be34e8", "jobTitle": "CEO", ... }, { "@odata.type": "#microsoft.graph.group", "id": "45f25951-d04f-4c44-b9b0-2a79e915658d", "description": "Microsoft Graph API Reviewers", ... }, ... ] } ``` Addressing a property of the subtype, for example, in `$filter` or `$select`, requires prefixing the property with the fully-qualified name of the subtype (or type derived from the subtype) on which it is defined. To filter on the `jobTitle` for the user type, you need to qualify the property with `microsoft.graph.user`. The following query returns all groups that are members of group a94a666e-0367-412e-b96e-54d28b73b2db, as well as users that are members and whose jobTitle is CEO. ``` GET https://graph.microsoft.com/v1.0/groups/a94a666e-0367-412e-b96e-54d28b73b2db/members?$filter=microsoft.graph.user/jobTitle eq 'CEO' Response payload shortened for readability: { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#directoryObjects", "value": [ { "@odata.type": "#microsoft.graph.user", "id": "37ca648a-a007-4eef-81d7-1127d9be34e8", "jobTitle": "CEO", ... }, { "@odata.type": "#microsoft.graph.group", "id": "45f25951-d04f-4c44-b9b0-2a79e915658d", "description": "Microsoft Graph API Reviewers", ... }, ... ] } ``` An entire collection can be cast to a particular subtype by appending the fully-qualified subtype name to the URL. Doing so filters the collection to members of (or derived from) that particular subtype, and makes the properties of that subtype available without casting. In this case, the `@odata.type` attribute is not returns for records of the specified subtype because the `@odata.context` indicates that the entire collection is consists of the particular subtype. Types derived from that subtype do still have the `@odata.type` attribute. The following query returns only users that are members of group a94a666e-0367-412e-b96e-54d28b73b2db and whose jobTitle is CEO. ``` GET https://graph.microsoft.com/v1.0/groups/a94a666e-0367-412e-b96e-54d28b73b2db/members/microsoft.graph.user?$filter=jobTitle eq 'CEO' Response payload shortened for readability: { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users", "value": [ { "id": "37ca648a-a007-4eef-81d7-1127d9be34e8", "jobTitle": "CEO", ... }, ... ] } ``` An API request to create a subtype object in a polymorphic collection requires "@odata.type" specified in the request body. ``` POST https://graph.microsoft.com/v1.0/directoryObjects { "@odata.type": "#microsoft.graph.group", "description": "Microsoft Graph API Reviewers", ... } ``` ================================================ FILE: graph/patterns/upsert.md ================================================ # Upsert Microsoft Graph API Design Pattern *The `Upsert` pattern is a non-destructive idempotent operation using a client-provided key, that ensures that system resources can be deployed in a reliable, repeatable, and controlled way, typically used in Infrastructure as Code (IaC) scenarios.* ## Problem Infrastructure as code (IaC) defines system resources and topologies in a declarative manner that allows teams to manage those resources as they would code. Practicing IaC helps teams deploy system resources in a reliable, repeatable, and controlled way. IaC also helps automate deployment and reduces the risk of human error, especially for complex large environments. Customers want to adopt IaC practices for many of the resources managed through Microsoft Graph. Most resources' creation operations in Microsoft Graph are not idempotent in nature. As a consequence, API consumers that want to offer IaC solutions, must create compensation layers that can mimic idempotent behavior. For example, when creating a resource, the compensation layer must check whether the resource first exists, before trying to create or update the resource. Additionally, IaC code scripts or templates usually employ client-provided names (or keys) to track resources in a predictable manner, whereas [Microsoft Graph guidelines](../GuidelinesGraph.md#behavior-modeling) suggests use of `POST` to create new entities with service-generated keys. ## Solution The solution is to use an `Upsert` pattern, to solve for the non-idempotent creation and client-provided naming problems. * `Upsert` uses `PATCH` with a client-provided key in the URL: * If there is a natural client-provided key that can serve as the primary key, then the service should support `Upsert` with that key. * If the primary key is service-generated, the client-provided key should use an [alternate key](./alternate-key.md) to support idempotent creation. * For a non-existent resource (specified by the client-provided key) the service must handle this as a "create" (aka insert). As part of creation, the service must still generate the primary key value, if appropriate. * For an existing resource (specified by the client-provided key) the service must handle this as an "update". * If using an alternate key, then * for IaC scenarios, the alternate key should be called `uniqueName`, if there isn't already a more natural existing property that could be used as an alternate key. * the service must also support `GET` using the alternate key pattern. * Services should always support `POST` to the collection URL. * For service-generated keys, this should return the server generated key. * For client-provided keys, the client can provide the key as part of the request payload. * If a service does not support `Upsert`, then a `PATCH` call against a non-existent resource must result in an HTTP "404 not found" error. This solution allows for existing resources that follow Microsoft Graph conventions for CRUD operations to add `Upsert` without impacting existing apps or functionality. Ideally, all new entity types should support an `Upsert` mechanism, especially where they support control-plane APIs, or are used in admin style or IaC scenarios. ## When to use this pattern This pattern should be adopted for resources that are managed through infrastructure as code or desired state configuration. ## Issues and considerations * Services with existing APIs that use a client-defined key that want to start supporting the `Upsert` pattern may have concerns about backwards compatibility. API producers can require clients to opt-in to the `Upsert` pattern, by using the `Prefer: create-if-missing` HTTP request header. * `Upsert` can also be supported against singletons, using a `PATCH` to the singleton's URL. * Services that support `Upsert` should allow clients to use the: * `If-Match=*` request header to explicitly treat an `Upsert` request as an update and not an insert. * `If-None-Match=*` request header to explicitly treat an `Upsert` request as an insert and not an update. * The client-provided alternate key must be immutable after being set. If its value is null then it should be settable as a way to backfill existing resources for use in IaC scenarios. * API producers could use `PUT` operations to create or update, but generally this approach is not recommended due to the destructive nature of `PUT`'s replace semantics. * API producers may annotate entity sets, singletons and collections to indicate that entities can be "upserted". The example below shows this annotation for the `groups` entity set. ```xml ``` ## Examples For these examples we'll use the `group` entity type, which defines both a primary (service-generated) key (`id`) and an alternate (client-provided) key (`uniqueName`). ```xml ``` ### Upserting a record (creation path) Create a new group, with a `uniqueName` of "Group157". In this case, this group does not exist. ```http PATCH /groups(uniqueName='Group157') Prefer: return=representation ``` ```json { "displayName": "My favorite group", "description": "All my favorite people in the world" } ``` Response: ```http 201 created Preference-Applied: return=representation ``` ```json { "id": "1a89ade6-9f59-4fea-a139-23f84e3aef66", "displayName": "My favorite group", "description": "All my favorite people in the world", "uniqueName": "Group157" } ``` ### Upserting a record (update path) Create a new group, with a `uniqueName` of "Group157", exactly like before. Except in this case, this group already exists. This is a common scenario in IaC, when a deployment template is re-run multiple times. ```http PATCH /groups(uniqueName='Group157') Prefer: return=representation ``` ```json { "displayName": "My favorite group", "description": "All my favorite people in the world" } ``` Response: ```http 200 ok Preference-Applied: return=representation ``` ```json { "id": "1a89ade6-9f59-4fea-a139-23f84e3aef66", "displayName": "My favorite group", "description": "All my favorite people in the world", "uniqueName": "Group157" } ``` Notice how this operation is idempotent in nature, rather than returning a 409 conflict error. ### Updating a record Update "Group157" group with a new description. ```http PATCH /groups(uniqueName='Group157') Prefer: return=representation ``` ```json { "description": "Some of my favorite people in the world." } ``` Response: ```http 200 ok Preference-Applied: return=representation ``` ```json { "id": "1a89ade6-9f59-4fea-a139-23f84e3aef66", "displayName": "My favorite group", "description": "Some of my favorite people in the world.", "uniqueName": "Group157" } ``` ### Upsert opt-in request In this case, the group API is a pre-existing API that supports `PATCH` with a client-provided alternate key. To enable `Upsert` behavior, the client must opt-in using an HTTP request header, to create a new group using `PATCH`. ```http PATCH /groups(uniqueName='Group157') Prefer: create-if-missing; return=representation ``` ```json { "displayName": "My favorite group", "description": "All my favorite people in the world" } ``` Response: ```http 201 created Preference-Applied: create-if-missing; return=representation ``` ```json { "id": "1a89ade6-9f59-4fea-a139-23f84e3aef66", "displayName": "My favorite group", "description": "All my favorite people in the world", "uniqueName": "Group157" } ``` ### Upsert (create) not supported Following on from the last example, the same request to create a new group, with a `uniqueName` of "Group157", without the opt-in header, results in a 404 HTTP response code. ```http PATCH /groups(uniqueName='Group157') Prefer: return=representation ``` ```json { "displayName": "My favorite group", "description": "All my favorite people in the world" } ``` Response: ```http 404 not found ``` ================================================ FILE: graph/patterns/viewpoint.md ================================================ # Viewpoint Microsoft Graph API Design Pattern *The viewpoint pattern provides the ability to manage properties of a shared object that have different values for different users.* ## Problem A shared resource, such as a website or a group message, may have different states for different users who access it at different times in an organizational context. For example, user1 may read and delete a message, while user2 may not have seen it yet. This usually happens when a shared item is presented in an individual context. ## Solution The viewpoint pattern provides a solution to how to model an individual user context on a shared resource using a `viewpoint` structural property on an API entity type. For example, the `viewpoint` property can indicate whether a message is read, deleted, or flagged for a given user. The consistent naming convention ensures that when a developer uses Graph APIs all `viewpoint` structural properties represent type specific user context across different M365 services and features. This pattern simplifies the API client logic by hiding the state transition details and providing state persistency on the server side. The server can manage the different viewpoints for the shared resource without exposing additional complexity to the client. To support queries for a user state the `viewpoint` property should support filtering. ## Issues and considerations - Because the `viewpoint` property reflects an individual user's context, it is null when accessed with application permissions. - Sometimes, the viewpoint can be computed on the server. In this case, an API producer should add OData annotations to the property to provide more information for downstream tools, such as SDKs and documentation generation. ``` ``` - An alternative to this design would be to store the user state on the client side. However, this may be problematic in some cases, because of the many devices that a user may have and the need to synchronize the state across them. - Often, updating the `viewpoint` property may cause a side effect, so you might consider an OData action to do the update. For some user scenarios, the `PATCH` method could be a better way to update a `viewpoint`. ## Examples ### Defining a viewpoint The following example demonstrates how to define the 'viewpoint' property for the `chat` entity, where a chat is a collection of chatMessages between one or more participants: ``` ... ``` ### Reading an entity with a viewpoint The following example shows reading a collection of chats for an identified user, with a viewpoint for each chat: ```http GET https://graph.microsoft.com/v1.0/users/8b081ef6-4792-4def-b2c9-c363a1bf41d5/chats ``` ```http HTTP/1.1 200 OK Content-type: application/json ``` ``` { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#chats", "@odata.count": 3, "value": [ { "id": "19:meeting_MjdhNjM4YzUtYzExZi00OTFkLTkzZTAtNTVlNmZmMDhkNGU2@thread.v2", "topic": "Meeting chat sample", "createdDateTime": "2020-12-08T23:53:05.801Z", "lastUpdatedDateTime": "2022-12-08T23:58:32.511Z", "chatType": "meeting", "viewpoint":{ "lastMessageReadDateTime": "2021-03-28T21:10:00.000Z" } }, { "id": "19:561082c0f3f847a58069deb8eb300807@thread.v2", "topic": "Group chat sample", "createdDateTime": "2020-12-03T19:41:07.054Z", "lastUpdatedDateTime": "2020-12-08T23:53:11.012Z", "chatType": "group", "viewpoint":{ "lastMessageReadDateTime": "0000-01-01T00:00:00.000Z" } } ] } ``` ### Updating a viewpoint using an action The following example shows marking a chat `viewpoint` as read for a user using an action: ```http POST https://graph.microsoft.com/beta/chats/19:7d898072-792c-4006-bb10-5ca9f2590649_8ea0e38b-efb3-4757-924a-5f94061cf8c2@unq.gbl.spaces/markChatReadForUser { "user": { "id" : "d864e79f-a516-4d0f-9fee-0eeb4d61fdc2", "tenantId": "2a690434-97d9-4eed-83a6-f5f13600199a" } } ``` The server responds with a success status code and no payload: ```http HTTP/1.1 204 No Content ``` ### Updating a viewpoint using `PATCH` method The following example shows how to mark a topic with the `viewpoint` label as reviewed for a user by using the `PATCH` method (this example does not represent an actual API, but only an illustration): ```http PATCH https://graph.microsoft.com/beta/sampleTopics/19:7d898072-792c-4006-bb10-5ca9f259 { "title": "Announcements: Changes to PowerPoint and Word to open files faster", ... "viewpoint": { "isReviewed" : "true" } } ``` The server responds with a success status code and no payload: ```http HTTP/1.1 204 No Content ``` ================================================ FILE: license.txt ================================================ This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.