{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SimpleSchema", "title": "SimpleSchema", "type": "object", "properties": { "type": { "type": "string", "enum": [ "simple" ] }, "definition": { "type": "object", "additionalProperties": { "type": "string", "enum": [ "string", "number", "boolean" ], "x-speakeasy-unknown-values": "allow" } } }, "required": [ "type", "definition" ] }