mirror of
https://github.com/apple/device-management.git
synced 2026-07-16 15:37:18 +02:00
Release_iOS-15_macOS-12
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
title: Credential:User Name and Password
|
||||
description: A reference to data describing a credential representing a user name
|
||||
and password. Note that this should always be considered as security sensitive data.
|
||||
payload:
|
||||
declarationtype: com.apple.asset.credential.userpassword
|
||||
supportedOS:
|
||||
iOS:
|
||||
introduced: '15.0'
|
||||
payloadkeys:
|
||||
- key: Reference
|
||||
type: <dictionary>
|
||||
presence: required
|
||||
content: The reference to the credential.
|
||||
subkeys:
|
||||
- key: DataURL
|
||||
type: <string>
|
||||
presence: required
|
||||
content: The URL that hosts the credential data. The URL must start with 'https://'.
|
||||
- key: ContentType
|
||||
type: <string>
|
||||
presence: required
|
||||
content: The media type that describes the data.
|
||||
- key: Size
|
||||
type: <integer>
|
||||
presence: required
|
||||
content: The size of the data at the 'DataURL'. Use this value to verify that
|
||||
the returned data is the expected data. Use this value to detect when the data
|
||||
changes.
|
||||
- key: Hash-SHA-256
|
||||
type: <string>
|
||||
presence: required
|
||||
content: |-
|
||||
A SHA-256 hash of the data at the 'DataURL'. Use this value to verify that the returned data is the expected data. Use this value to detect when the data changes.
|
||||
If 'Size' is '0', clients need to ignore this value or set it to an empty string.
|
||||
@@ -0,0 +1,16 @@
|
||||
title: User Name and Password Credentials
|
||||
description: Data describing a credential representing a user name and password.
|
||||
payload:
|
||||
credentialtype: com.apple.credential.usernameandpassword
|
||||
supportedOS:
|
||||
iOS:
|
||||
introduced: '15.0'
|
||||
payloadkeys:
|
||||
- key: UserName
|
||||
type: <string>
|
||||
presence: required
|
||||
content: The user's user name for the credential.
|
||||
- key: Password
|
||||
type: <string>
|
||||
presence: optional
|
||||
content: The user's password for the credential.
|
||||
@@ -0,0 +1,18 @@
|
||||
title: User Identity
|
||||
description: User identity data.
|
||||
payload:
|
||||
declarationtype: com.apple.asset.useridentity
|
||||
supportedOS:
|
||||
iOS:
|
||||
introduced: '15.0'
|
||||
payloadkeys:
|
||||
- key: FullName
|
||||
title: Full Name
|
||||
type: <string>
|
||||
presence: optional
|
||||
content: The user's full name.
|
||||
- key: EmailAddress
|
||||
title: Email Address
|
||||
type: <string>
|
||||
presence: optional
|
||||
content: The user's email address.
|
||||
Reference in New Issue
Block a user