{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SdkConfigurationProperty", "title": "SdkConfigurationProperty", "type": "object", "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The name of a an SdkType configuration property." } ] }, "friendlyName": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The user-friendly name of an SdkType configuration property." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The description of an SdkType configuration property." } ] }, "required": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "A boolean flag of an SdkType configuration property to indicate if the associated SDK configuration property is required (true) or not (false)." } ] }, "defaultValue": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The default value of an SdkType configuration property." } ] } }, "description": "A configuration property of an SDK type." }