Atlassian · Schema

EmbeddedContent

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
entityId integer
entityType string
entity object
View JSON Schema on GitHub

JSON Schema

atlassian-embeddedcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmbeddedContent",
  "title": "EmbeddedContent",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "entityId": {
      "type": "integer",
      "format": "int64",
      "example": "500123"
    },
    "entityType": {
      "type": "string",
      "example": "example_value"
    },
    "entity": {
      "$ref": "#/components/schemas/Embeddable"
    }
  }
}