Atlassian · Schema

CustomFieldContextDefaultValueURL

The default value for a URL custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contextId string The ID of the context.
type string
url string The default URL.
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextdefaultvalueurl-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueURL",
  "title": "CustomFieldContextDefaultValueURL",
  "description": "The default value for a URL custom field.",
  "properties": {
    "contextId": {
      "description": "The ID of the context.",
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "url": {
      "description": "The default URL.",
      "type": "string"
    }
  },
  "required": [
    "contextId",
    "type",
    "url"
  ],
  "type": "object"
}