Details of an entity property.

interface JqlQueryFieldEntityProperty {
    entity: string;
    key: string;
    path: string;
    type?:
        | "string"
        | "number"
        | "text"
        | "user"
        | "date";
}

Hierarchy

  • Record<string, unknown>
    • JqlQueryFieldEntityProperty

Properties

Properties

entity: string

The object on which the property is set.

issue
key: string

The key of the property.

stats
path: string

The path in the property value to query.

comments.count
type?:
    | "string"
    | "number"
    | "text"
    | "user"
    | "date"

The type of the property value extraction. Not available if the extraction for the property is not registered on the instance with the Entity property module.

number