{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/FungusBaseRequest.json", "title": "FungusBaseRequest", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "item": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the fungus" }, "species": { "type": "string", "description": "Biological species." }, "phenotype": { "type": "string", "description": "Observable traits." }, "genotype": { "type": "string", "description": "Genetic composition." }, "host": { "type": "string", "description": "Associated host organism." }, "virulent": { "type": "string", "description": "Virulence factor." }, "sporulate": { "type": "string", "description": "Ability to form spores." }, "mycelia": { "type": "string", "description": "Mycelial growth." }, "fruiting_bodies": { "type": "string", "description": "Presence of sporocarps." }, "owner_id": { "type": "integer", "description": "id of the owner - by default it's your member id" }, "source": { "type": "string", "description": "The origin or source from which the fungus was obtained." }, "description": { "type": "string", "description": "Description of the fungus" } } } } }