Add Member with Policies

APIs.ioEngineeringPlatform

Properties

Name Type Description
email object
policies array Array of policies associated with this member.
status object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-iam-create-member-with-policies-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/iam_create-member-with-policies",
  "title": "Add Member with Policies",
  "properties": {
    "email": {
      "$ref": "#/components/schemas/iam_email"
    },
    "policies": {
      "description": "Array of policies associated with this member.",
      "items": {
        "$ref": "#/components/schemas/iam_create_member_policy"
      },
      "type": "array"
    },
    "status": {
      "default": "pending",
      "enum": [
        "accepted",
        "pending"
      ]
    }
  },
  "required": [
    "email",
    "policies"
  ],
  "type": "object"
}