Atlassian · Schema

UpdateIssueSecuritySchemeRequestBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the security scheme scheme.
name string The name of the security scheme scheme. Must be unique.
View JSON Schema on GitHub

JSON Schema

atlassian-updateissuesecurityschemerequestbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateIssueSecuritySchemeRequestBean",
  "title": "UpdateIssueSecuritySchemeRequestBean",
  "additionalProperties": false,
  "properties": {
    "description": {
      "description": "The description of the security scheme scheme.",
      "maxLength": 255,
      "type": "string",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the security scheme scheme. Must be unique.",
      "maxLength": 60,
      "type": "string",
      "writeOnly": true
    }
  },
  "type": "object"
}