Atlassian · Schema

UserContextVariable

A [user](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#user) specified as an Atlassian account ID.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
accountId string The account ID of the user.
type string Type of custom context variable.
View JSON Schema on GitHub

JSON Schema

atlassian-usercontextvariable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserContextVariable",
  "title": "UserContextVariable",
  "description": "A [user](https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference#user) specified as an Atlassian account ID.",
  "properties": {
    "accountId": {
      "description": "The account ID of the user.",
      "type": "string"
    },
    "type": {
      "description": "Type of custom context variable.",
      "type": "string"
    }
  },
  "required": [
    "accountId",
    "type"
  ],
  "type": "object"
}