@forge/manifest

13.0.013.1.0-next.0
out/schema/manifest-schema.json
~out/schema/manifest-schema.jsonModified
+79
Index: package/out/schema/manifest-schema.json
===================================================================
--- package/out/schema/manifest-schema.json
+++ package/out/schema/manifest-schema.json
@@ -6900,8 +6900,87 @@
                         }
                     },
                     "minItems": 1
                 },
+                "jira:entityPropertySet": {
+                    "type": "array",
+                    "items": {
+                        "type": "object",
+                        "properties": {
+                            "key": {
+                                "$ref": "#/definitions/ModuleKeySchema"
+                            },
+                            "resource": {
+                                "type": "string",
+                                "description": "Path to sidecar YAML file containing entity property definitions"
+                            },
+                            "properties": {
+                                "type": "array",
+                                "description": "List of entity property definitions (populated from sidecar YAML by XLS at deploy time)",
+                                "items": {
+                                    "type": "object",
+                                    "properties": {
+                                        "propertyKey": {
+                                            "minLength": 1,
+                                            "maxLength": 255,
+                                            "type": "string"
+                                        },
+                                        "entityType": {
+                                            "default": "issue",
+                                            "enum": [
+                                                "issue",
+                                                "project",
+                                                "user"
+                                            ],
+                                            "type": "string"
+                                        },
+                                        "values": {
+                                            "type": "array",
+                                            "minItems": 1,
+                                            "items": {
+                                                "type": "object",
+                                                "properties": {
+                                                    "path": {
+                                                        "minLength": 1,
+                                                        "maxLength": 255,
+                                                        "type": "string"
+                                                    },
+                                                    "type": {
+                                                        "type": "string",
+                                                        "enum": [
+                                                            "number",
+                                                            "string",
+                                                            "text",
+                                                            "user",
+                                                            "date"
+                                                        ]
+                                                    },
+                                                    "searchAlias": {
+                                                        "minLength": 1,
+                                                        "maxLength": 255,
+                                                        "pattern": "^[a-zA-Z0-9._-]+$",
+                                                        "type": "string"
+                                                    }
+                                                },
+                                                "required": [
+                                                    "path",
+                                                    "type"
+                                                ]
+                                            }
+                                        }
+                                    },
+                                    "required": [
+                                        "propertyKey",
+                                        "values"
+                                    ]
+                                }
+                            }
+                        },
+                        "required": [
+                            "key"
+                        ]
+                    }
+                },
                 "jira:entityProperty": {
                     "type": "array",
                     "items": {
                         "type": "object",