Atlassian · Schema

CustomFieldContextDefaultValueProject

The default value for a project custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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