Dell Servers · Schema

ConfigTemplate

A server configuration template

HardwareInfrastructureManagementMonitoringServers

Properties

Name Type Description
Id integer Unique template identifier
Name string Template name
Description string Template description
ViewTypeId integer Template view type
TypeId integer Template type identifier
CreatedBy string User who created the template
CreatedDate string Timestamp when the template was created
LastUpdatedBy string User who last updated the template
LastUpdatedDate string Timestamp of the last update
View JSON Schema on GitHub

JSON Schema

dell-servers-configtemplate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfigTemplate",
  "title": "ConfigTemplate",
  "type": "object",
  "description": "A server configuration template",
  "properties": {
    "Id": {
      "type": "integer",
      "description": "Unique template identifier"
    },
    "Name": {
      "type": "string",
      "description": "Template name"
    },
    "Description": {
      "type": "string",
      "description": "Template description"
    },
    "ViewTypeId": {
      "type": "integer",
      "description": "Template view type"
    },
    "TypeId": {
      "type": "integer",
      "description": "Template type identifier"
    },
    "CreatedBy": {
      "type": "string",
      "description": "User who created the template"
    },
    "CreatedDate": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the template was created"
    },
    "LastUpdatedBy": {
      "type": "string",
      "description": "User who last updated the template"
    },
    "LastUpdatedDate": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the last update"
    }
  }
}