{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/FeatureCreate.json", "title": "FeatureCreate", "additionalProperties": false, "allOf": [ { "$ref": "#/components/schemas/FeatureBase" }, { "properties": { "matchType": { "description": "The match type of the feature. Used to determine how auto-annotate matches are made.", "enum": [ "nucleotide", "protein" ], "type": "string" } } }, { "required": [ "name", "featureType", "pattern", "matchType", "featureLibraryId" ] } ], "description": "Inputs for a new feature", "type": "object" }