Atlassian · Schema

Default Reviewer and Type

Object containing a user that is a default reviewer and the type of reviewer

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
reviewer_type string
user object
View JSON Schema on GitHub

JSON Schema

atlassian-default-reviewer-and-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/default_reviewer_and_type",
  "title": "Default Reviewer and Type",
  "type": "object",
  "description": "Object containing a user that is a default reviewer and the type of reviewer",
  "properties": {
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "reviewer_type": {
      "type": "string",
      "example": "example_value"
    },
    "user": {
      "$ref": "#/components/schemas/user"
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": true
}