TOIP Trust Registry Protocol

Added on Feb. 18, 2026Managed by lisa+toip

Recognition Request

{
  "$id": "trqp-recognition-request",
  "title": "RecognitionRequest",
  "type": "object",
  "required": [
    "entity_id",
    "action",
    "resource",
    "authority_id"
  ],
  "properties": {
    "entity_id": {
      "type": "string",
      "description": "The identifier for the entity that is being tested for recognition."
    },
    "authority_id": {
        "type": "string",
        "description": "The identifier for the authority (e.g. ecosystem governing authority) being queried to recognize the entity (`entity_id`)."
    },
    "action": {
      "type": "string",
      "description": "The action that the query is checking Recognition for."
    },
    "resource": {
      "type": "string",
      "description": "The resource that the query is is checking Recognition for."
    },
    "context": {
      "type": "object",
      "properties": {
        "time": {
          "type": "string",
          "format": "date-time",
          "description": "Time for query to use. If blank, uses current server time. RFC3339 required, using only Z (+00:00) offset."
        }
      },
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}

View source