{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StreamClone", "title": "StreamClone", "type": "object", "properties": { "name": { "type": "string", "pattern": "^\"([^\"]|\"\")+\"|[a-zA-Z_][a-zA-Z0-9_$]*$", "description": "Name of the stream", "example": "Example Title" }, "comment": { "type": "string", "description": "user comment associated to an object in the dictionary", "example": "example_value" } }, "required": [ "name" ] }