{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConfigurablePropDataStore", "title": "ConfigurablePropDataStore", "allOf": [ { "$ref": "#/components/schemas/ConfigurablePropBase" }, { "type": "object", "description": "This prop is used to configure a data store for key-value storage.", "required": [ "type" ], "properties": { "type": { "type": "string", "enum": [ "data_store" ] } } } ] }