TrueFoundry · Schema

FileObject

AI PlatformEnterprise AIKubernetesLLM GatewayMLOps

Properties

Name Type Description
id string
object string
bytes integer
created_at integer
filename string
purpose string
View JSON Schema on GitHub

JSON Schema

truefoundry-fileobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileObject",
  "title": "FileObject",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "object": {
      "type": "string",
      "enum": [
        "file"
      ]
    },
    "bytes": {
      "type": "integer"
    },
    "created_at": {
      "type": "integer"
    },
    "filename": {
      "type": "string"
    },
    "purpose": {
      "type": "string"
    }
  }
}