Atlassian · Schema

ScreenableField

A screen tab field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the screen tab field.
name string The name of the screen tab field. Required on create and update. The maximum length is 255 characters.
View JSON Schema on GitHub

JSON Schema

atlassian-screenablefield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScreenableField",
  "title": "ScreenableField",
  "additionalProperties": false,
  "description": "A screen tab field.",
  "properties": {
    "id": {
      "description": "The ID of the screen tab field.",
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "description": "The name of the screen tab field. Required on create and update. The maximum length is 255 characters.",
      "type": "string"
    }
  },
  "type": "object"
}