Pull Request Review Request

Pull Request Review Request

APIs.ioEngineeringPlatform

Properties

Name Type Description
users array
teams array
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-pull-request-review-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pull-request-review-request",
  "title": "Pull Request Review Request",
  "description": "Pull Request Review Request",
  "type": "object",
  "properties": {
    "users": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/simple-user"
      }
    },
    "teams": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/team"
      }
    }
  },
  "required": [
    "users",
    "teams"
  ]
}