A collection of embedded files forming a multi-file code snap.
Properties
files
array
of ref#file
Required
Ordered list of files defining display and traversal order.
maxLength: 4 itemsminLength: 1 itemsprimaryId
string
Required
Identifier of the primary file. Must match the `id` of one of the items.
maxLength: 64 bytesView raw schema
{
"type": "object",
"required": [
"files",
"primaryId"
],
"properties": {
"files": {
"type": "array",
"items": {
"ref": "#file",
"type": "ref"
},
"maxLength": 4,
"minLength": 1,
"description": "Ordered list of files defining display and traversal order."
},
"primaryId": {
"type": "string",
"maxLength": 64,
"description": "Identifier of the primary file. Must match the `id` of one of the items."
}
},
"description": "A collection of embedded files forming a multi-file code snap."
}