/** * Permit.io API * Authorization as a service * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ProjectCreate */ export interface ProjectCreate { /** * A URL-friendly name of the project (i.e: slug). You will be able to query later using this key instead of the id (UUID) of the project. * @type {string} * @memberof ProjectCreate */ key: string; /** * Optional namespace for URNs. If empty, URNs will be generated from project key. * @type {string} * @memberof ProjectCreate */ urn_namespace?: string; /** * The name of the project * @type {string} * @memberof ProjectCreate */ name: string; /** * a longer description outlining the project objectives * @type {string} * @memberof ProjectCreate */ description?: string; /** * the settings for this project * @type {object} * @memberof ProjectCreate */ settings?: object; /** * the id of the policy repo to use for this project * @type {string} * @memberof ProjectCreate */ active_policy_repo_id?: string; }