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