{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateLegalHoldProjectRequest", "title": "CreateLegalHoldProjectRequest", "type": "object", "required": [ "name", "ownerEmailAddress" ], "properties": { "name": { "type": "string", "description": "The name of the legal hold project." }, "ownerEmailAddress": { "type": "string", "format": "email", "description": "Email address of the project owner." }, "description": { "type": "string", "description": "Optional description of the project." }, "status": { "type": "string", "enum": [ "Active", "Draft" ], "default": "Active" } } }