Censys · Schema

Ollama_Model

Ollama_Model schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
digest string
expires_at string
family string
model string
name string
parent_model string
size integer
size_vram integer
View JSON Schema on GitHub

JSON Schema

asset-graph-ollama-model-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-ollama-model-schema.json",
  "title": "Ollama_Model",
  "description": "Ollama_Model schema from Asset Graph API",
  "type": "object",
  "properties": {
    "digest": {
      "type": "string"
    },
    "expires_at": {
      "type": "string"
    },
    "family": {
      "type": "string"
    },
    "model": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "parent_model": {
      "type": "string"
    },
    "size": {
      "format": "int64",
      "minimum": 0,
      "type": "integer"
    },
    "size_vram": {
      "format": "int64",
      "minimum": 0,
      "type": "integer"
    }
  },
  "additionalProperties": false
}