Atlassian · Schema

BulkContentStateSetInput

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
ids array maximum number of ids you can pass in is 300
contentState object
View JSON Schema on GitHub

JSON Schema

atlassian-bulkcontentstatesetinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkContentStateSetInput",
  "title": "BulkContentStateSetInput",
  "type": "object",
  "required": [
    "ids",
    "contentState"
  ],
  "properties": {
    "ids": {
      "description": "maximum number of ids you can pass in is 300",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ContentId"
      }
    },
    "contentState": {
      "$ref": "#/components/schemas/ContentStateInput"
    }
  }
}