Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'config/events/schema.json')
-rw-r--r--config/events/schema.json70
1 files changed, 56 insertions, 14 deletions
diff --git a/config/events/schema.json b/config/events/schema.json
index 3a0616e706b..6ce93e1a40e 100644
--- a/config/events/schema.json
+++ b/config/events/schema.json
@@ -12,59 +12,101 @@
"type": "string"
},
"label_description": {
- "type": ["string", "null"]
+ "type": [
+ "string",
+ "null"
+ ]
},
"property_description": {
- "type": ["string", "null"]
+ "type": [
+ "string",
+ "null"
+ ]
},
"value_description": {
- "type": ["string", "null"]
+ "type": [
+ "string",
+ "null"
+ ]
},
"extra_properties": {
- "type": ["object", "null"]
+ "type": [
+ "object",
+ "null"
+ ]
},
"identifiers": {
- "type": ["array", "null"],
+ "type": [
+ "array",
+ "null"
+ ],
"items": {
"type": "string",
- "enum": ["project", "user", "namespace"]
+ "enum": [
+ "project",
+ "user",
+ "namespace"
+ ]
}
},
"iglu_schema_url": {
- "type": ["string", "null"]
+ "type": [
+ "string",
+ "null"
+ ]
},
"product_section": {
"type": "string"
},
"product_stage": {
- "type": ["string", "null"]
+ "type": [
+ "string",
+ "null"
+ ]
},
"product_group": {
"type": "string"
},
"product_category": {
- "type": ["string", "null"]
+ "type": [
+ "string",
+ "null"
+ ]
},
"introduced_by_url": {
- "type": ["uri", "null"]
+ "type": [
+ "string",
+ "null"
+ ],
+ "format": "uri"
},
"milestone": {
- "type": ["string", "null"],
+ "type": [
+ "string",
+ "null"
+ ],
"pattern": "^[0-9]+\\.[0-9]+$"
},
"distributions": {
"type": "array",
"items": {
"type": "string",
- "enum": ["ee", "ce"]
+ "enum": [
+ "ee",
+ "ce"
+ ]
}
},
"tiers": {
"type": "array",
"items": {
"type": "string",
- "enum": ["free", "premium", "ultimate"]
+ "enum": [
+ "free",
+ "premium",
+ "ultimate"
+ ]
}
}
}
-}
+} \ No newline at end of file