Atlassian · Schema

EntityProperty

An entity property, for more information see [Entity properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/).

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
key string The key of the property. Required on create and update.
value object The value of the property. Required on create and update.
View JSON Schema on GitHub

JSON Schema

atlassian-entityproperty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntityProperty",
  "title": "EntityProperty",
  "additionalProperties": false,
  "description": "An entity property, for more information see [Entity properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/).",
  "properties": {
    "key": {
      "description": "The key of the property. Required on create and update.",
      "type": "string"
    },
    "value": {
      "description": "The value of the property. Required on create and update."
    }
  },
  "type": "object"
}