Atlassian · Schema

EntityPropertyDetails

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
entityId number The entity property ID.
key string The entity property key.
value string The new value of the entity property.
View JSON Schema on GitHub

JSON Schema

atlassian-entitypropertydetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntityPropertyDetails",
  "title": "EntityPropertyDetails",
  "properties": {
    "entityId": {
      "description": "The entity property ID.",
      "example": 123,
      "type": "number"
    },
    "key": {
      "description": "The entity property key.",
      "example": "mykey",
      "type": "string"
    },
    "value": {
      "description": "The new value of the entity property.",
      "example": "newValue",
      "type": "string"
    }
  },
  "required": [
    "entityId",
    "key",
    "value"
  ],
  "type": "object"
}