Censys · JSON Structure

Platform Organizationmember Structure

OrganizationMember schema from Censys Platform API

Type: object Properties: 8 Required: 5
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

OrganizationMember is a JSON Structure definition published by Censys, describing 8 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

created_at email first_login_time first_name last_name latest_login_time roles uid

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-organizationmember-structure.json",
  "name": "OrganizationMember",
  "description": "OrganizationMember schema from Censys Platform API",
  "type": "object",
  "required": [
    "roles",
    "email",
    "first_name",
    "last_name",
    "uid"
  ],
  "additionalProperties": false,
  "properties": {
    "created_at": {
      "type": "datetime",
      "description": "The date and time the user was created."
    },
    "email": {
      "type": "string",
      "description": "The email of the user."
    },
    "first_login_time": {
      "type": "datetime",
      "description": "The date and time the user first logged in."
    },
    "first_name": {
      "type": "string",
      "description": "The first name of the user."
    },
    "last_name": {
      "type": "string",
      "description": "The last name of the user."
    },
    "latest_login_time": {
      "type": "datetime",
      "description": "The date and time the user last logged in."
    },
    "roles": {
      "type": [
        "array",
        "null"
      ],
      "description": "The roles this member has in the organization.",
      "items": {
        "type": "string"
      }
    },
    "uid": {
      "type": "uuid",
      "description": "The ID of a Censys user."
    }
  }
}