fileType property
This field provides information about the type of file identified Possible string values are:
- "FILE_TYPE_UNSPECIFIED" : Unspecified
- "SOURCE" : The file is human readable source code (.c, .html, etc.)
- "BINARY" : The file is a compiled object, target image or binary executable (.o, .a, etc.)
- "ARCHIVE" : The file represents an archive (.tar, .jar, etc.)
- "APPLICATION" : The file is associated with a specific application type (MIME type of application / * )
- "AUDIO" : The file is associated with an audio file (MIME type of audio / * , e.g. .mp3)
- "IMAGE" : The file is associated with an picture image file (MIME type of image / * , e.g., .jpg, .gif)
- "TEXT" : The file is human readable text file (MIME type of text / * )
- "VIDEO" : The file is associated with a video file type (MIME type of video / * )
- "DOCUMENTATION" : The file serves as documentation
- "SPDX" : The file is an SPDX document
- "OTHER" : The file doesn't fit into the above categories (generated artifacts, data files, etc.)
Implementation
core.String? fileType;