Jira · Schema

EntityProperty

An entity property (key-value pair).

AgileIssue TrackingITSMProject ManagementService Management

Properties

Name Type Description
key string The property key.
value string The property value (any JSON value).
View JSON Schema on GitHub

JSON Schema

jira-cloud-platform-rest-entity-property-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EntityProperty",
  "type": "object",
  "description": "An entity property (key-value pair).",
  "properties": {
    "key": {
      "type": "string",
      "description": "The property key."
    },
    "value": {
      "type": "string",
      "description": "The property value (any JSON value)."
    }
  }
}