Atlassian · Schema

ApplicationProperty

Details of an application property.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
allowedValues array The allowed values, if applicable.
defaultValue string The default value of the application property.
desc string The description of the application property.
example string
id string The ID of the application property. The ID and key are the same.
key string The key of the application property. The ID and key are the same.
name string The name of the application property.
type string The data type of the application property.
value string The new value.
View JSON Schema on GitHub

JSON Schema

atlassian-applicationproperty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationProperty",
  "title": "ApplicationProperty",
  "additionalProperties": false,
  "description": "Details of an application property.",
  "properties": {
    "allowedValues": {
      "description": "The allowed values, if applicable.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "defaultValue": {
      "description": "The default value of the application property.",
      "type": "string"
    },
    "desc": {
      "description": "The description of the application property.",
      "type": "string"
    },
    "example": {
      "type": "string"
    },
    "id": {
      "description": "The ID of the application property. The ID and key are the same.",
      "type": "string"
    },
    "key": {
      "description": "The key of the application property. The ID and key are the same.",
      "type": "string"
    },
    "name": {
      "description": "The name of the application property.",
      "type": "string"
    },
    "type": {
      "description": "The data type of the application property.",
      "type": "string"
    },
    "value": {
      "description": "The new value.",
      "type": "string"
    }
  },
  "type": "object"
}