{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/FloatAppConfigItem.json", "title": "FloatAppConfigItem", "allOf": [ { "$ref": "#/components/schemas/BaseAppConfigItem" }, { "properties": { "type": { "enum": [ "float" ], "example": "float", "type": "string" }, "value": { "example": 1.0, "format": "float", "nullable": true, "type": "number" } } } ], "type": "object" }