{ "$id": "properties-directory/non-scalar/file-content", "$schema": "http://json-schema.org/draft-07/schema#", "title": "File content property schema", "type": "object", "allOf": [ { "$ref": "../../core/reusable/file_metadata.json" } ], "properties": { "name": { "enum": [ "file_content" ] }, "filetype": { "description": "What kind of file this is, e.g. image / text", "type": "string", "enum": [ "image", "text", "csv" ], "$comment": "isGenerative:true" }, "objectData": { "$ref": "../../core/reusable/object_storage_container_data.json" } }, "required": [ "name", "filetype", "objectData" ] }