Properties
| Name | Type | Description |
|---|---|---|
| version | string | Unique identifier of the profile version. |
| author | string | Unique identifier of the user who created the profile. |
| creationDate | string | Date when the profile was created in ISO 8601 format. |
| lastUpdate | string | Date when the profile was last updated in ISO 8601 format. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProfileMeta",
"title": "Profile metadata",
"type": "object",
"description": "Profile metadata.",
"required": [
"version",
"author",
"creationDate",
"lastUpdate"
],
"properties": {
"version": {
"type": "string",
"description": "Unique identifier of the profile version.",
"example": "27112371-a71b-45d6-b3bc-93436a3a0b4f"
},
"author": {
"type": "string",
"description": "Unique identifier of the user who created the profile.",
"example": "82a2b53d-39be-4f49-bb7c-8971b58cb7dc"
},
"creationDate": {
"type": "string",
"description": "Date when the profile was created in ISO 8601 format.",
"example": "2022-01-05T15:41:37.5009471+00:00"
},
"lastUpdate": {
"type": "string",
"description": "Date when the profile was last updated in ISO 8601 format.",
"example": "2022-01-05T15:41:37.5009471+00:00"
}
}
}