Atlassian · Schema

LabeledContent

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contentType object
contentId integer
title string Title of the content.
View JSON Schema on GitHub

JSON Schema

atlassian-labeledcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LabeledContent",
  "title": "LabeledContent",
  "required": [
    "contentId",
    "contentType",
    "title"
  ],
  "type": "object",
  "properties": {
    "contentType": {
      "$ref": "#/components/schemas/LabeledContentType"
    },
    "contentId": {
      "type": "integer",
      "format": "int64"
    },
    "title": {
      "type": "string",
      "description": "Title of the content."
    }
  }
}