You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openai-cookbook/.github/authors_schema.json

26 lines
528 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"patternProperties": {
"^.*$": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"website": {
"type": "string",
"format": "uri"
},
"avatar": {
"type": "string",
"format": "uri"
}
},
"required": ["name", "website", "avatar"],
"additionalProperties": false
}
},
"additionalProperties": false
}