## Example The following JSON is an example for this standardized configuration component: ```json { "DemoUserName": "john.doe" , "DemoUserPassword": "secret" } ``` ## Definition ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "DemoConfigModel.schema.json", "title": "DemoConfigModel", "description": "Demo mode configuration.", "type": "object", "additionalProperties": false, "properties": { "DemoUserName": { "type": [ "string", "null" ], "default": "test", "description": "User name for demo mode." }, "DemoUserPassword": { "type": [ "string", "null" ], "default": "secret", "description": "Password for demo mode." } } } ```