CommunityPriorResponse
Properties
| Property | Type | Required | Description |
alpha |
number |
Yes |
|
beta |
number |
Yes |
|
last_updated |
string,null |
No |
|
sample_size |
integer |
Yes |
|
sufficient_population |
boolean |
Yes |
|
View JSON Schema
{
"type": "object",
"required": [
"alpha",
"beta",
"sample_size",
"sufficient_population"
],
"properties": {
"alpha": {
"type": "number",
"format": "double"
},
"beta": {
"type": "number",
"format": "double"
},
"last_updated": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"sample_size": {
"type": "integer",
"format": "int64"
},
"sufficient_population": {
"type": "boolean"
}
}
}