GitLab · Schema
API_Entities_ApplicationWithSecret
API_Entities_ApplicationWithSecret model
CodePlatformSoftware DevelopmentSource Control
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| application_id | string | |
| application_name | string | |
| callback_url | string | |
| confidential | boolean | |
| secret | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/gitlab/refs/heads/main/json-schema/gitlab-api-v4-applications-api_entities_application-with-secret-schema.json",
"title": "API_Entities_ApplicationWithSecret",
"description": "API_Entities_ApplicationWithSecret model",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "123456"
},
"application_id": {
"type": "string",
"example": "5832fc6e14300a0d962240a8144466eef4ee93ef0d218477e55f11cf12fc3737"
},
"application_name": {
"type": "string",
"example": "MyApplication"
},
"callback_url": {
"type": "string",
"example": "https://redirect.uri"
},
"confidential": {
"type": "boolean",
"example": true
},
"secret": {
"type": "string",
"example": "ee1dd64b6adc89cf7e2c23099301ccc2c61b441064e9324d963c46902a85ec34"
}
}
}