Sybase · Schema

Configuration

Server configuration parameters organized by group, equivalent to sp_configure output.

DatabaseEnterpriseSAPSQL

Properties

Name Type Description
groups array Configuration parameter groups.
View JSON Schema on GitHub

JSON Schema

sybase-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Configuration",
  "title": "Configuration",
  "type": "object",
  "description": "Server configuration parameters organized by group, equivalent to sp_configure output.",
  "properties": {
    "groups": {
      "type": "array",
      "description": "Configuration parameter groups.",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "The configuration group name."
          },
          "parameters": {
            "type": "array",
            "description": "Parameters within this group.",
            "items": {
              "$ref": "#/components/schemas/ConfigParameter"
            }
          }
        }
      }
    }
  }
}