Atlassian · Schema

VersionUsageInCustomField

List of custom fields using the version.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
customFieldId integer The ID of the custom field.
fieldName string The name of the custom field.
issueCountWithVersionInCustomField integer Count of the issues where the custom field contains the version.
View JSON Schema on GitHub

JSON Schema

atlassian-versionusageincustomfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VersionUsageInCustomField",
  "title": "VersionUsageInCustomField",
  "additionalProperties": false,
  "description": "List of custom fields using the version.",
  "properties": {
    "customFieldId": {
      "description": "The ID of the custom field.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "fieldName": {
      "description": "The name of the custom field.",
      "readOnly": true,
      "type": "string"
    },
    "issueCountWithVersionInCustomField": {
      "description": "Count of the issues where the custom field contains the version.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    }
  },
  "type": "object"
}