mirror of
https://github.com/apple/device-management.git
synced 2026-08-15 04:50:21 +02:00
31 lines
786 B
YAML
31 lines
786 B
YAML
title: User Name and Password Credential
|
|
description: Data that describes a credential that represents a user name and password.
|
|
payload:
|
|
credentialtype: com.apple.credential.usernameandpassword
|
|
supportedOS:
|
|
iOS:
|
|
introduced: '15.0'
|
|
macOS:
|
|
introduced: '13.0'
|
|
tvOS:
|
|
introduced: '16.0'
|
|
visionOS:
|
|
introduced: '1.1'
|
|
watchOS:
|
|
introduced: '10.0'
|
|
payloadkeys:
|
|
- key: UserName
|
|
title: User name
|
|
type: <string>
|
|
presence: required
|
|
content: The user name for this credential.
|
|
- key: Password
|
|
title: Password
|
|
type: <string>
|
|
presence: optional
|
|
content: The password for this credential.
|
|
examples:
|
|
- title: Credential example
|
|
files:
|
|
- file: examples/declarative/declarations/assets/credentials/usernameandpassword/example1.json
|