{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DynamicSkills", "title": "DynamicSkills", "type": "object", "properties": { "add": { "type": "array", "items": { "$ref": "#/components/schemas/UpdateDynamicSkillsDTO" }, "description": "The list of dynamic skills to add." }, "remove": { "type": "array", "items": { "type": "string", "description": "A dynamic skill identifier to remove." }, "description": "The list of dynamic skills to remove." } } }