Workday Security · Schema

SecurityGroupRef

Reference to a security group

Access ControlAuditAuthenticationComplianceEnterpriseIdentity ManagementPrivacySAMLSecuritySSO

Properties

Name Type Description
id string Unique identifier of the security group
descriptor string Display name of the security group
href string API URL for the security group resource
View JSON Schema on GitHub

JSON Schema

workday-security-securitygroupref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecurityGroupRef",
  "title": "SecurityGroupRef",
  "type": "object",
  "description": "Reference to a security group",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the security group"
    },
    "descriptor": {
      "type": "string",
      "description": "Display name of the security group"
    },
    "href": {
      "type": "string",
      "format": "uri",
      "description": "API URL for the security group resource"
    }
  }
}