Создание массива со многими элементами не работает.
Пример кода:
JSchema array = new JSchema { Type = JSchemaType.Array };
array.Items.Add(new JSchema { Type = JSchemaType.Integer });
array.Items.Add(new JSchema { Type = JSchemaType.String }); // doesn't exists in JSON Schema
new JSchema
{
Type = JSchemaType.Object,
Properties = {
{ "Array", array }
}
};