
| Property Name | Type | Description |
|---|---|---|
| type | string | type |
| url | string | A String value |
| Additional Properties | Type | Description |
| Any Property | Any | All values are valid, no restrictions. |
"repository": {
"type": "object",
"description": "The repository in which the source code can be found.",
"properties": {
"type": {
"type": "string",
"enum": [
"git"
]
},
"url": {
"type": "string",
"format": "uri"
}
}
}