{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Person",
"description": "Schema for a person object",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The person's full name"
},
"age": {
"type": "integer",
"description": "The person's age in years",
"minimum": 0
},
"email": {
"type": "string",
"format": "email",
"description": "The person's email address"
},
"isStudent": {
"type": "boolean",
"description": "Whether the person is currently a student"
}
},
"required": ["name", "age"]
}
```
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Person",
"description": "Schema for a person object",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The person's full name"
},
"age": {
"type": "integer",
"description": "The person's age in years",
"minimum": 0
},
"email": {
"type": "string",
"format": "email",
"description": "The person's email address"
},
"isStudent": {
"type": "boolean",
"description": "Whether the person is currently a student"
}
},
"required": ["name", "age"]
}
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
便于为大语言模型生成数据提供接口