The example for applicationCategory in properties_description.csv suggests that multiple categories are possible:
https://github.com/codemeta/codemeta/blob/64e0682c8f783e9a3fdc3e13b84d8dc6c6d2621f/properties_description.csv?plain=1#L7-L8
However, the generated code will take the entire entered value as one string value for the field:
{
"@context": "https://w3id.org/codemeta/3.0",
"type": "SoftwareSourceCode",
"applicationCategory": "Game, Multimedia",
"name": "Test"
}
Not sure if this is what intended. Or do we more preferred to have it as a list:
"applicationCategory": [
"Game",
"Multimedia"
]