openai-cookbook/.github/authors_schema.json
2023-11-07 16:20:01 -08:00

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
}