{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProjectIds", "title": "ProjectIds", "additionalProperties": false, "description": "A list of project IDs.", "properties": { "projectIds": { "description": "The IDs of projects.", "items": { "type": "string", "writeOnly": true }, "type": "array", "writeOnly": true } }, "required": [ "projectIds" ], "type": "object" }