Skip to content

Latest commit

 

History

History
92 lines (62 loc) · 5.51 KB

CONTRIBUTING.md

File metadata and controls

92 lines (62 loc) · 5.51 KB

Contributing

This file provides general guidance for developers that are creating or updating REST API definitions for Azure.

Table of Contents

Reporting problems

If you discover a problem with a REST API document in this repo, feel free to open an issue. But please do not report issues with service behavior / functionality in this repo.

When opening an issue, please clearly describe the problem including which REST API definition is in error and what elements of the definition are incorrect or missing.

Avoid Breaking Changes

The first rule for Azure REST APIs is to avoid breaking changes in Generally Available (GA'd) APIs. The Azure Breaking Changes Policy is a formal description of what changes are considered breaking changes. This rule trumps adherence to Design Guidelines, Coding Style, etc.

Design Guidelines

Azure REST APIs should conform to the Azure REST API Guidelines.

There is a YouTube video series by Jeffrey Richter that describes the guidelines in detail.

Another resource is the Considerations for Service Design, which is an introduction to REST API design mainly for services that are just getting started.

Exceptions for consistency within a service

There are situations where a service has GA'd their API with design patterns that do not follow our guidelines and it would be a breaking change to adopt the API design in the guidelines. Because the first rule is to avoid breaking changes and because we want APIs to be consistent within a service, these design patterns are considered the standard for that service and should be followed in all subsequent (non-breaking) versions of that service's REST API.

Coding Style

REST APIs for Azure should be defined using the OpenAPI v2 or Cadlformat.

The REST API should also adhere to the conventions documented in the Azure API Style Guide.

You can use the Spectral linter with our Spectral ruleset to check conformance with OpenAPI v2 and the Style Guide.

Directory Structure

See the README.md for a description of the directory structure to use when adding files to this repo.

Pull Requests

If you want to contribute to the repository, follow these steps:

  1. Fork the repository and create a new branch for your changes.
  2. If you are introducing a new api-version, create a new directory for that api-version and copy all the files from the previous version into the new directory. Make this the very first commit in your branch and then make your changes in subsequent commits.
  3. Use the linting tools to check your changes for compliance with the OpenAPI v2 standard, the Azure REST API Guidelines and that Azure API Style Guide.
  4. Push the changes to the branch in your fork until the branch is ready to be integrated.
  5. Rebase your branch if needed to incorporate any changes to main and submit a pull request to the main branch using either the "control plane" or "data plane" PR template -- the main PR template lets you select which one.
  6. Resolve any issues flagged by the Pull Request checks.
  7. Contact the ARM API Review board or Azure API Stewardship team to request PR review.

Microsoft employees can try out the experience at OpenAPI Hub for adding a new API version using OpenAPI Hub.

Pull Request checks

Every PR in this repo will go through a series of PR checks, including:

  • Breaking Changes - checks for incompatible changes in an existing api-version
  • Breaking Changes (Cross-Version) - checks for changes in a new api-version that are incompatible with prior versions
  • LintDiff - checks the new or changed portions of the API for compliance with the Azure REST API Guidelines and API Style Guide
  • Avocado - checks that new or changed files comply with the directory structure convention for this repo.
  • Model Validation -
  • Semantic Validation -
  • LintRPaaS -
  • ApiReadiness -
  • PoliCheck -
  • CredScan -
  • SpellCheck -
  • PrettierCheck -
  • SDK Breaking Change -

When any of these PR checks fails it will post a comment to the PR with links to information on how to resolve the problem. There is also the CI Fix Guide that describes how to fix common PR check failures.