Back to GeonicDB

Card snapshot

geonicdb.geolonia.com · 2026-05-18 15:35:53 UTC · 45427de22167cb5823b36185d2b07a424881673dd07b9cd9e41979f73f9f3a93

This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.

{
  "name": "GeonicDB",
  "description": "GeonicDB is a FIWARE Orion-compatible Context Broker. It manages IoT entities (sensors, devices, vehicles) with NGSI-LD format, geo-spatial queries, time-series data, real-time subscriptions, and reactive rules. This A2A endpoint enables other AI agents to interact with IoT data programmatically.",
  "url": "https://geonicdb.geolonia.com/a2a",
  "version": "0.8.0",
  "protocolVersion": "0.2.2",
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": true
  },
  "skills": [
    {
      "id": "entities",
      "name": "Entity Management",
      "description": "CRUD operations on IoT entities, entity types, and attributes. Supports list, get, create, update, delete, and geo-spatial/attribute search.",
      "tags": [
        "iot",
        "entities",
        "ngsi-ld",
        "geospatial"
      ],
      "examples": [
        "List all entities of type Sensor",
        "Get entity urn:ngsi-ld:Sensor:001",
        "Create a new Temperature sensor entity",
        "Search entities near latitude 35.68, longitude 139.76"
      ]
    },
    {
      "id": "batch",
      "name": "Batch Operations",
      "description": "Bulk create, upsert, update, merge, delete, and query operations on multiple entities at once.",
      "tags": [
        "batch",
        "bulk",
        "entities"
      ],
      "examples": [
        "Create 10 sensor entities in batch",
        "Delete all entities of type OldSensor"
      ]
    },
    {
      "id": "temporal",
      "name": "Temporal Data",
      "description": "Time-series data management for entity attributes. Query historical values, create temporal entities, manage attribute instances.",
      "tags": [
        "temporal",
        "timeseries",
        "history"
      ],
      "examples": [
        "Query temperature history for the last 24 hours",
        "Get temporal data for entity urn:ngsi-ld:WeatherStation:001"
      ]
    },
    {
      "id": "config",
      "name": "Configuration",
      "description": "Manage reactive rules, JSON-LD contexts, and Smart Data Models.",
      "tags": [
        "config",
        "rules",
        "jsonld",
        "data-models"
      ],
      "examples": [
        "List all reactive rules",
        "Get available JSON-LD contexts"
      ]
    },
    {
      "id": "admin",
      "name": "Administration",
      "description": "User, tenant, and XACML policy management. Requires tenant_admin or super_admin role.",
      "tags": [
        "admin",
        "users",
        "tenants",
        "policies"
      ],
      "examples": [
        "List all users in the current tenant",
        "Get tenant information"
      ]
    }
  ],
  "provider": {
    "organization": "Geolonia Inc.",
    "url": "https://github.com/geolonia/geonicdb"
  },
  "securitySchemes": {
    "BearerAuth": {
      "type": "http",
      "scheme": "bearer",
      "bearerFormat": "JWT"
    },
    "ApiKeyAuth": {
      "type": "apiKey",
      "in": "header",
      "name": "X-Api-Key"
    },
    "OAuth2": {
      "type": "oauth2",
      "flows": {
        "clientCredentials": {
          "tokenUrl": "/oauth/token",
          "scopes": {
            "read:entities": "Read entities and their attributes",
            "write:entities": "Create, update, and delete entities"
          }
        }
      }
    },
    "DPoPAuth": {
      "type": "http",
      "scheme": "dpop",
      "bearerFormat": "DPoP"
    }
  },
  "security": [
    {
      "BearerAuth": []
    },
    {
      "ApiKeyAuth": []
    },
    {
      "OAuth2": [
        "read:entities",
        "write:entities"
      ]
    },
    {
      "DPoPAuth": []
    }
  ],
  "defaultInputModes": [
    "application/json"
  ],
  "defaultOutputModes": [
    "application/json"
  ]
}