{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ai-habitat/refs/heads/main/json-schema/ai-habitat-agent-observation-schema.json", "title": "AgentObservation", "description": "Full observation dict returned to an agent after each step", "type": "object", "properties": { "rgb": { "type": "object", "description": "RGB camera observation" }, "depth": { "type": "object", "description": "Depth camera observation" }, "pointgoal_with_gps_compass": { "type": "object", "description": "Point goal with GPS/compass sensor" }, "objectgoal": { "type": "string", "description": "Object category name for ObjectNav tasks", "example": "chair" } } }