Atlassian · Schema

ContentState

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id integer identifier of content state. If 0, 1, or 2, this is a default space state
name string name of content state.
color string hex string representing color of state
View JSON Schema on GitHub

JSON Schema

atlassian-confluence-content-content-state-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ContentState",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "identifier of content state. If 0, 1, or 2, this is a default space state"
    },
    "name": {
      "type": "string",
      "description": "name of content state."
    },
    "color": {
      "type": "string",
      "description": "hex string representing color of state"
    }
  }
}