{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ModuleMetadata",
"title": "ModuleMetadata",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "The ID of the module",
"readOnly": true
},
"name": {
"type": "string",
"description": "The name of the module",
"readOnly": true
},
"description": {
"type": "string",
"description": "The description of the module",
"readOnly": true
}
}
}