Add default template to README.md introducing status and comment optional fields

This commit is contained in:
Benjamin Loison 2023-02-01 01:20:48 +01:00
parent a563507bf3
commit 8f8056ded4
Signed by: Benjamin_Loison
SSH Key Fingerprint: SHA256:BtnEgYTlHdOg1u+RmYcDE0mnfz1rhv5dSbQ2gyxW8B8

View File

@ -9,3 +9,18 @@ Note that by repository state I mean the actual state of a repository at a given
The current trust level is defined as looking legitimate, I don't guarantee that to the best of my knowledge there isn't any security vulnerability. The current trust level is defined as looking legitimate, I don't guarantee that to the best of my knowledge there isn't any security vulnerability.
Meta-informations related to a git, such as dependencies (not the legitimate aspect but the verified one), issues, pull requests..., aren't verified yet but may be in the future, if so it would be precised as such. Meta-informations related to a git, such as dependencies (not the legitimate aspect but the verified one), issues, pull requests..., aren't verified yet but may be in the future, if so it would be precised as such.
Default template:
```json
{
// Mandatory: git state hash verified.
"commit": "0123456789abcdef0123456789abcdef01234567",
// Optional (default: "VERIFIED"): xor of following flags (written as `FLAG_0 | FLAG_1 | ... | FLAG_N`):
// - `CLOSED_SOURCE_DEPENDENCY`
// - `UNVERIFIED_INITIAL_COMMIT`
"status": "VERIFIED",
// Optional (default: ""): verifier comment concerning the git state verified
"comment": ""
}
```