mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-13 04:45:19 +00:00
24 lines
No EOL
581 B
JSON
24 lines
No EOL
581 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"title": "GitConnectionConfig",
|
|
"properties": {
|
|
"type": {
|
|
"const": "git",
|
|
"description": "Git Configuration"
|
|
},
|
|
"url": {
|
|
"type": "string",
|
|
"format": "url",
|
|
"description": "The URL to the git repository."
|
|
},
|
|
"revisions": {
|
|
"$ref": "./shared.json#/definitions/GitRevisions"
|
|
}
|
|
},
|
|
"required": [
|
|
"type",
|
|
"url"
|
|
],
|
|
"additionalProperties": false
|
|
} |