Atlassian · Schema

SecuritySchemeLevelMemberBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
parameter string The value corresponding to the specified member type.
type string The issue security level member type, e.g `reporter`, `group`, `user`.
View JSON Schema on GitHub

JSON Schema

atlassian-securityschemelevelmemberbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecuritySchemeLevelMemberBean",
  "title": "SecuritySchemeLevelMemberBean",
  "additionalProperties": false,
  "properties": {
    "parameter": {
      "description": "The value corresponding to the specified member type.",
      "type": "string",
      "writeOnly": true
    },
    "type": {
      "description": "The issue security level member type, e.g `reporter`, `group`, `user`.",
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "type"
  ],
  "type": "object",
  "writeOnly": true
}