{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/GeneBaseRequest.json", "title": "GeneBaseRequest", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "item": { "type": "object", "properties": { "title": { "type": "string", "description": "The name of the gene" }, "alternative_name": { "type": "string", "description": "Alternative gene name." }, "expression_location": { "type": "string", "description": "Location of gene expression." }, "pathway": { "type": "string", "description": "Involved metabolic pathway." }, "sequence": { "type": "string", "description": "Gene sequence.", "example": "ACTGACGACATGGTTCTGACCTGA" }, "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 gene was obtained." }, "description": { "type": "string", "description": "Detailed gene information." } } } } }