diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-02-05 15:50:45 +0000 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-02-05 15:50:45 +0000 |
| commit | 4cffe6c23abb2f6580dcdcfb7ad886b34dd5d61a (patch) | |
| tree | 92b19bad978c00743f3da1f92fd63d24873073d8 /gitinfo.schema.json | |
| parent | 7398f77f772c86a12dc62358460f9315f7ea1fb5 (diff) | |
| download | gitinfo-4cffe6c23abb2f6580dcdcfb7ad886b34dd5d61a.tar gitinfo-4cffe6c23abb2f6580dcdcfb7ad886b34dd5d61a.tar.gz gitinfo-4cffe6c23abb2f6580dcdcfb7ad886b34dd5d61a.tar.bz2 gitinfo-4cffe6c23abb2f6580dcdcfb7ad886b34dd5d61a.tar.xz gitinfo-4cffe6c23abb2f6580dcdcfb7ad886b34dd5d61a.zip | |
add homepage, funding, and version fields to schema
Diffstat (limited to 'gitinfo.schema.json')
| -rw-r--r-- | gitinfo.schema.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gitinfo.schema.json b/gitinfo.schema.json index c2ab95c..fb841fc 100644 --- a/gitinfo.schema.json +++ b/gitinfo.schema.json @@ -68,6 +68,23 @@ "license": { "type": "string", "description": "The license under which the repository is distributed. Use the short identifier from SPDX License List for consistency." + }, + "homepage": { + "type": "string", + "format": "uri", + "description": "The URL of the project's homepage or documentation site, if separate from the repository." + }, + "funding": { + "type": "array", + "items": { + "type": "string", + "format": "uri" + }, + "description": "A list of URLs for sponsorship or funding platforms (e.g., GitHub Sponsors, Open Collective, Patreon)." + }, + "version": { + "type": "string", + "description": "The version of the .gitinfo schema being used. Can be a semver string or a git commit hash." } }, "additionalProperties": false |
