Last active
October 9, 2023 22:50
-
-
Save dussab/7dc1aec4f74b66b6805ee994c731b081 to your computer and use it in GitHub Desktop.
metadata
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": { | |
| "title": "Full Name", | |
| "type": "string", | |
| "githubKey": "name" | |
| }, | |
| "eMail": { | |
| "title": "E-Mail", | |
| "type": "string", | |
| "githubKey": "email", | |
| "required": true | |
| }, | |
| "age": { | |
| "title": "Age", | |
| "description": "Age in years", | |
| "type": "number", | |
| "minimum": 18 | |
| }, | |
| "agreement": { | |
| "type": "boolean", | |
| "title": "I have the right to assign copyright for contributions to this project" | |
| }, | |
| "category": { | |
| "title": "How do you sign?", | |
| "type": { | |
| "enum": [ | |
| "I am signing on behalf of myself.", | |
| "I am signing on behalf of my employer." | |
| ] | |
| }, | |
| "required": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment