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-contentstate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentState",
  "title": "ContentState",
  "required": [
    "id",
    "name",
    "color"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "identifier of content state. If 0, 1, or 2, this is a default space state",
      "format": "int64",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "description": "name of content state.",
      "example": "Example Title"
    },
    "color": {
      "type": "string",
      "description": "hex string representing color of state",
      "example": "example_value"
    }
  }
}