{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-identity-center/refs/heads/main/json-schema/sso-admin-permission-set-provisioning-status-schema.json", "title": "PermissionSetProvisioningStatus", "description": "A structure that is used to provide the status of the provisioning operation for a specified permission set.", "type": "object", "properties": { "Status": { "allOf": [ { "$ref": "#/components/schemas/StatusValues" }, { "description": "The status of the permission set provisioning process." } ] }, "RequestId": { "allOf": [ { "$ref": "#/components/schemas/UUId" }, { "description": "The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow." } ] }, "AccountId": { "allOf": [ { "$ref": "#/components/schemas/AccountId" }, { "description": "The identifier of the AWS account from which to list the assignments." } ] }, "PermissionSetArn": { "allOf": [ { "$ref": "#/components/schemas/PermissionSetArn" }, { "description": "The ARN of the permission set that is being provisioned. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference." } ] }, "FailureReason": { "allOf": [ { "$ref": "#/components/schemas/Reason" }, { "description": "The message that contains an error or exception in case of an operation failure." } ] }, "CreatedDate": { "allOf": [ { "$ref": "#/components/schemas/Date" }, { "description": "The date that the permission set was created." } ] } } }