ProjectConfig

  • Earth Engine projects are managed through a cloud-based configuration system represented in JSON format.

  • Each project is uniquely identified by a required "name" field and includes a read-only "registrationState" indicating its commercial or non-commercial status.

  • The "registrationState" field helps classify project usage as either unspecified, not registered, commercially registered, or non-commercially registered.

Information about a Cloud-based Earth Engine project. https://developers.google.com/earth-engine/cloud/projects.

JSON representation
{
  "name": string,
  "registrationState": enum (RegistrationState)
}
Fields
name

string

Required. The project config name, of the format "projects/*/config".

registrationState

enum (RegistrationState)

Output only. The project registration state.

RegistrationState

Registration state.

Enums
REGISTRATION_STATE_UNSPECIFIED Unspecified.
NOT_REGISTERED Project is not registered.
REGISTERED_COMMERCIALLY Project is registered for commercial use.
REGISTERED_NOT_COMMERCIALLY Project is registered for non-commercial use.