debian-mirror-gitlab/spec/fixtures/api/schemas/public_api/v4/metadata.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
739 B
JSON
Raw Normal View History

2022-08-13 15:12:31 +05:30
{
"type": "object",
"required": [
"version",
"revision",
2023-01-13 00:05:48 +05:30
"kas",
"enterprise"
2022-08-13 15:12:31 +05:30
],
"properties": {
2023-01-13 00:05:48 +05:30
"version": {
"type": "string"
},
"revision": {
"type": "string"
},
2022-08-13 15:12:31 +05:30
"kas": {
"type": "object",
"required": [
"enabled",
"externalUrl",
"version"
],
"properties": {
2023-01-13 00:05:48 +05:30
"enabled": {
"type": "boolean"
},
"externalUrl": {
"type": [
"string",
"null"
]
},
"version": {
"type": [
"string",
"null"
]
}
2022-08-13 15:12:31 +05:30
}
2023-01-13 00:05:48 +05:30
},
"enterprise": {
"type": "boolean"
2022-08-13 15:12:31 +05:30
}
},
"additionalProperties": false
2023-01-13 00:05:48 +05:30
}