syntax = "proto3";

package yandex.cloud.organizationmanager.v1;

import "google/protobuf/timestamp.proto";

option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/organizationmanager/v1;organizationmanager";
option java_package = "yandex.cloud.api.organizationmanager.v1";

// An Organization resource. For more information, see [Organization](/docs/organization/enable-org).
message Organization {
    // ID of the organization.
    string id = 1;

    // Creation timestamp.
    google.protobuf.Timestamp created_at = 2;

    // Name of the organization. 3-63 characters long.
    string name = 3;

    // Description of the organization. 0-256 characters long.
    string description = 4;

    // Display name of the organization. 0-256 characters long.
    string title = 6;
}
