Atlassian · Schema

ProjectFeatureState

Details of the feature state.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
state string The feature state.
View JSON Schema on GitHub

JSON Schema

atlassian-projectfeaturestate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectFeatureState",
  "title": "ProjectFeatureState",
  "additionalProperties": false,
  "description": "Details of the feature state.",
  "properties": {
    "state": {
      "description": "The feature state.",
      "enum": [
        "ENABLED",
        "DISABLED",
        "COMING_SOON"
      ],
      "type": "string"
    }
  },
  "type": "object"
}