{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "File",
"type": "object",
"description": "Represents a report file generated by running a report.",
"properties": {
"id": {
"type": "string",
"description": "The unique ID of this report file."
},
"reportId": {
"type": "string",
"description": "The ID of the report this file was generated from."
},
"status": {
"type": "string",
"description": "The status of this report file."
},
"format": {
"type": "string",
"description": "The output format of this report file."
},
"fileName": {
"type": "string",
"description": "The filename of the file."
},
"lastModifiedTime": {
"type": "string",
"description": "The timestamp in milliseconds since epoch for when this file was last modified."
},
"urls": {
"type": "object",
"description": "The URLs where the completed report file can be downloaded."
},
"etag": {
"type": "string"
},
"kind": {
"type": "string"
}
}
}