{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/aimlapi/refs/heads/main/json-structure/aimlapi-model-info-structure.json", "name": "ModelInfo", "description": "Information about an available AI model", "type": "object", "properties": { "id": { "type": "string", "description": "Model identifier", "example": "gpt-4o" }, "object": { "type": "string", "description": "Object type", "example": "model" }, "created": { "type": "int32", "description": "Unix timestamp of model creation", "example": 1718153645 }, "owned_by": { "type": "string", "description": "Organization that owns/created the model", "example": "openai" } } }