SMS_Application

Represents an application in Configuration Manager with deployment types, requirements, and detection methods.

ComplianceConfiguration ManagementDevice ManagementEndpoint ManagementMobile Device ManagementPatch ManagementSoftware Deployment

Properties

Name Type Description
CI_ID integer Configuration item ID.
CI_UniqueID string Unique configuration item identifier.
LocalizedDisplayName string Display name of the application.
LocalizedDescription string Description of the application.
Manufacturer string Application manufacturer/publisher.
SoftwareVersion string Software version.
DateCreated string Date the application was created.
DateLastModified string Date the application was last modified.
IsDeployed boolean Whether the application is currently deployed.
IsSuperseded boolean Whether the application has been superseded.
IsLatest boolean Whether this is the latest version.
NumberOfDeploymentTypes integer Number of deployment types.
NumberOfDeployments integer Number of active deployments.
View JSON Schema on GitHub

JSON Schema

microsoft-endpoint-configuration-management-sms-application-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SMS_Application",
  "title": "SMS_Application",
  "type": "object",
  "description": "Represents an application in Configuration Manager with deployment types, requirements, and detection methods.",
  "properties": {
    "CI_ID": {
      "type": "integer",
      "description": "Configuration item ID."
    },
    "CI_UniqueID": {
      "type": "string",
      "description": "Unique configuration item identifier."
    },
    "LocalizedDisplayName": {
      "type": "string",
      "description": "Display name of the application."
    },
    "LocalizedDescription": {
      "type": "string",
      "description": "Description of the application."
    },
    "Manufacturer": {
      "type": "string",
      "description": "Application manufacturer/publisher."
    },
    "SoftwareVersion": {
      "type": "string",
      "description": "Software version."
    },
    "DateCreated": {
      "type": "string",
      "format": "date-time",
      "description": "Date the application was created."
    },
    "DateLastModified": {
      "type": "string",
      "format": "date-time",
      "description": "Date the application was last modified."
    },
    "IsDeployed": {
      "type": "boolean",
      "description": "Whether the application is currently deployed."
    },
    "IsSuperseded": {
      "type": "boolean",
      "description": "Whether the application has been superseded."
    },
    "IsLatest": {
      "type": "boolean",
      "description": "Whether this is the latest version."
    },
    "NumberOfDeploymentTypes": {
      "type": "integer",
      "description": "Number of deployment types."
    },
    "NumberOfDeployments": {
      "type": "integer",
      "description": "Number of active deployments."
    }
  }
}