Sybase · Schema

Sybase ASE Server

Schema for a SAP Adaptive Server Enterprise (ASE) instance

DatabaseEnterpriseSAPSQL

Properties

Name Type Description
id string Unique server identifier
name string SAP ASE server name
version string SAP ASE version string
status string Current operational status
host string Hostname of the server
port integer Network port the server listens on
pageSize integer Logical page size in bytes
startTime string Last server start timestamp
platformDescription string Operating system platform description
View JSON Schema on GitHub

JSON Schema

sybase-server-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/sybase/refs/heads/main/json-schema/sybase-server-schema.json",
  "title": "Sybase ASE Server",
  "description": "Schema for a SAP Adaptive Server Enterprise (ASE) instance",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique server identifier"
    },
    "name": {
      "type": "string",
      "description": "SAP ASE server name"
    },
    "version": {
      "type": "string",
      "description": "SAP ASE version string"
    },
    "status": {
      "type": "string",
      "enum": ["running", "stopped", "starting", "shutting_down", "maintenance"],
      "description": "Current operational status"
    },
    "host": {
      "type": "string",
      "description": "Hostname of the server"
    },
    "port": {
      "type": "integer",
      "description": "Network port the server listens on"
    },
    "pageSize": {
      "type": "integer",
      "enum": [2048, 4096, 8192, 16384],
      "description": "Logical page size in bytes"
    },
    "startTime": {
      "type": "string",
      "format": "date-time",
      "description": "Last server start timestamp"
    },
    "platformDescription": {
      "type": "string",
      "description": "Operating system platform description"
    }
  },
  "required": ["id", "name", "status"]
}