debian-mirror-gitlab/spec/fixtures/api/schemas/entities/trigger.json

46 lines
766 B
JSON
Raw Normal View History

2021-01-03 14:25:43 +05:30
{
"type": "object",
"required": [
"description",
"owner",
"last_used",
"has_token_exposed",
"token",
"can_access_project"
],
"properties": {
"description": {
2023-03-04 22:38:38 +05:30
"type": [
"string",
"null"
]
2021-01-03 14:25:43 +05:30
},
"owner": {
"type": "object",
"$ref": "user.json"
},
"last_used": {
2023-03-04 22:38:38 +05:30
"type": [
"string",
"null"
],
"format": "date-time"
2021-01-03 14:25:43 +05:30
},
"token": {
"type": "string"
},
"has_token_exposed": {
"type": "boolean"
},
"can_access_project": {
"type": "boolean"
},
"edit_project_trigger_path": {
"type": "string"
},
"project_trigger_path": {
"type": "string"
}
},
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}