README
No documentation yet.
Gene authors can add a README when publishing.Phenotype
Input
| Property | Type | Req |
|---|---|---|
| style | apa | mla | chicago | ✓ |
| sources | array | ✓ |
Output
| Property | Type | Req |
|---|---|---|
| style | string | ✓ |
| formatted | array | ✓ |
| sourceCount | number | ✓ |
| bibliography | string | ✓ |
Raw JSON Schema
inputSchema
{
"type": "object",
"required": [
"sources",
"style"
],
"properties": {
"style": {
"enum": [
"apa",
"mla",
"chicago"
],
"type": "string"
},
"sources": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"authors",
"title",
"year"
],
"properties": {
"doi": {
"type": "string"
},
"url": {
"type": "string"
},
"type": {
"enum": [
"book",
"article",
"website",
"conference"
],
"type": "string"
},
"year": {
"type": "number"
},
"issue": {
"type": "number"
},
"pages": {
"type": "string"
},
"title": {
"type": "string"
},
"volume": {
"type": "number"
},
"authors": {
"type": "array",
"items": {
"type": "string"
}
},
"journal": {
"type": "string"
},
"publisher": {
"type": "string"
},
"accessDate": {
"type": "string"
},
"conference": {
"type": "string"
}
}
}
}
}
}outputSchema
{
"type": "object",
"required": [
"formatted",
"bibliography",
"style",
"sourceCount"
],
"properties": {
"style": {
"type": "string"
},
"formatted": {
"type": "array",
"items": {
"type": "string"
}
},
"sourceCount": {
"type": "number"
},
"bibliography": {
"type": "string"
}
}
}