SMS_Collection

Represents a device or user collection in Configuration Manager used for targeting deployments and policies.

ComplianceConfiguration ManagementDevice ManagementEndpoint ManagementMobile Device ManagementPatch ManagementSoftware Deployment

Properties

Name Type Description
CollectionID string Unique collection identifier.
Name string Collection name.
Comment string Collection description/comment.
CollectionType integer Type of collection (1=User, 2=Device).
MemberCount integer Number of members in the collection.
LimitToCollectionID string The collection ID that limits membership.
LimitToCollectionName string Name of the limiting collection.
LastRefreshTime string Last time the collection membership was refreshed.
CurrentStatus integer Current evaluation status of the collection.
View JSON Schema on GitHub

JSON Schema

microsoft-endpoint-configuration-management-sms-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SMS_Collection",
  "title": "SMS_Collection",
  "type": "object",
  "description": "Represents a device or user collection in Configuration Manager used for targeting deployments and policies.",
  "properties": {
    "CollectionID": {
      "type": "string",
      "description": "Unique collection identifier."
    },
    "Name": {
      "type": "string",
      "description": "Collection name."
    },
    "Comment": {
      "type": "string",
      "description": "Collection description/comment."
    },
    "CollectionType": {
      "type": "integer",
      "description": "Type of collection (1=User, 2=Device)."
    },
    "MemberCount": {
      "type": "integer",
      "description": "Number of members in the collection."
    },
    "LimitToCollectionID": {
      "type": "string",
      "description": "The collection ID that limits membership."
    },
    "LimitToCollectionName": {
      "type": "string",
      "description": "Name of the limiting collection."
    },
    "LastRefreshTime": {
      "type": "string",
      "format": "date-time",
      "description": "Last time the collection membership was refreshed."
    },
    "CurrentStatus": {
      "type": "integer",
      "description": "Current evaluation status of the collection."
    }
  }
}