debian-mirror-gitlab/config/events/schema.json

112 lines
1.7 KiB
JSON
Raw Normal View History

2021-06-08 01:23:25 +05:30
{
"type": "object",
"required": [],
"properties": {
"description": {
"type": "string"
},
"category": {
"type": "string"
},
"action": {
"type": "string"
},
"label_description": {
2023-03-04 22:38:38 +05:30
"type": [
"string",
"null"
]
2021-06-08 01:23:25 +05:30
},
"property_description": {
2023-03-04 22:38:38 +05:30
"type": [
"string",
"null"
]
2021-06-08 01:23:25 +05:30
},
"value_description": {
2023-03-04 22:38:38 +05:30
"type": [
"string",
"null"
]
2021-06-08 01:23:25 +05:30
},
"extra_properties": {
2023-03-04 22:38:38 +05:30
"type": [
"object",
"null"
]
2021-06-08 01:23:25 +05:30
},
"identifiers": {
2023-03-04 22:38:38 +05:30
"type": [
"array",
"null"
],
2021-06-08 01:23:25 +05:30
"items": {
"type": "string",
2023-03-04 22:38:38 +05:30
"enum": [
"project",
"user",
"namespace"
]
2021-06-08 01:23:25 +05:30
}
},
"iglu_schema_url": {
2023-03-04 22:38:38 +05:30
"type": [
"string",
"null"
]
2021-06-08 01:23:25 +05:30
},
"product_section": {
"type": "string"
},
"product_stage": {
2023-03-04 22:38:38 +05:30
"type": [
"string",
"null"
]
2021-06-08 01:23:25 +05:30
},
"product_group": {
"type": "string"
},
"product_category": {
2023-03-04 22:38:38 +05:30
"type": [
"string",
"null"
]
2021-06-08 01:23:25 +05:30
},
"introduced_by_url": {
2023-03-04 22:38:38 +05:30
"type": [
"string",
"null"
],
"format": "uri"
2021-06-08 01:23:25 +05:30
},
"milestone": {
2023-03-04 22:38:38 +05:30
"type": [
"string",
"null"
],
2021-06-08 01:23:25 +05:30
"pattern": "^[0-9]+\\.[0-9]+$"
},
"distributions": {
"type": "array",
"items": {
"type": "string",
2023-03-04 22:38:38 +05:30
"enum": [
"ee",
"ce"
]
2021-06-08 01:23:25 +05:30
}
},
"tiers": {
"type": "array",
"items": {
"type": "string",
2023-03-04 22:38:38 +05:30
"enum": [
"free",
"premium",
"ultimate"
]
2021-06-08 01:23:25 +05:30
}
}
}
2023-03-04 22:38:38 +05:30
}