Properties
| Name | Type | Description |
|---|---|---|
| created | object | |
| expire | string | Timestamp of when the record expired. |
| guid | string | Identifier for the activation record. |
| type | string | Type of record. |
| updated | object | |
| user_guid | string | GUID of the user the activation record is for. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Activation",
"title": "Activation",
"type": "object",
"properties": {
"created": {
"$ref": "#/components/schemas/DefaultFields/properties/created"
},
"expire": {
"type": "string",
"description": "Timestamp of when the record expired.",
"example": "example_value"
},
"guid": {
"type": "string",
"description": "Identifier for the activation record.",
"example": "example_value"
},
"type": {
"type": "string",
"description": "Type of record.",
"example": "example_value"
},
"updated": {
"$ref": "#/components/schemas/DefaultFields/properties/created"
},
"user_guid": {
"type": "string",
"description": "GUID of the user the activation record is for.",
"example": "example_value"
}
}
}