{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConfigurablePropDb", "title": "ConfigurablePropDb", "allOf": [ { "$ref": "#/components/schemas/ConfigurablePropBase" }, { "type": "object", "description": "This prop is used to configure a database service.", "required": [ "type" ], "properties": { "type": { "type": "string", "enum": [ "$.service.db" ] } } } ] }