Properties
| Name | Type | Description |
|---|---|---|
| Description | object | |
| AllowedPublishers | object | |
| CodeSigningPolicies | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateCodeSigningConfigRequest",
"title": "CreateCodeSigningConfigRequest",
"type": "object",
"required": [
"AllowedPublishers"
],
"properties": {
"Description": {
"allOf": [
{
"$ref": "#/components/schemas/Description"
},
{
"description": "Descriptive name for this code signing configuration."
}
]
},
"AllowedPublishers": {
"allOf": [
{
"$ref": "#/components/schemas/AllowedPublishers"
},
{
"description": "Signing profiles for this code signing configuration."
}
]
},
"CodeSigningPolicies": {
"allOf": [
{
"$ref": "#/components/schemas/CodeSigningPolicies"
},
{
"description": "The code signing policies define the actions to take if the validation checks fail. "
}
]
}
}
}