{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/scaleway.iam.v1alpha1.GracePeriod", "title": "scaleway.iam.v1alpha1.GracePeriod", "type": "object", "properties": { "type": { "type": "string", "description": "Type of grace period.", "enum": [ "unknown_grace_period_type", "update_password", "set_mfa" ], "x-enum-descriptions": { "values": { "unknown_grace_period_type": "Unknown grace period type", "update_password": "Password should be updated", "set_mfa": "MFA should be configured" } }, "default": "unknown_grace_period_type" }, "created_at": { "type": "string", "description": "Date and time the grace period was created. (RFC 3339 format)", "format": "date-time", "example": "2022-03-22T12:34:56.123456Z", "nullable": true }, "expires_at": { "type": "string", "description": "Date and time the grace period expires. (RFC 3339 format)", "format": "date-time", "example": "2022-03-22T12:34:56.123456Z", "nullable": true } }, "x-properties-order": [ "type", "created_at", "expires_at" ] }