openapi: 3.0.0 info: title: Tec de Monterrey Dataverse Native REST Access Roles API version: 1.0.0 description: OpenAPI 3.0 description served live by the Tecnológico de Monterrey research open-data repository (datahub.tec.mx), running Dataverse 5.9. Retrieved from https://datahub.tec.mx/openapi. Internal deployment server URLs in the source document were replaced with the public base URL; paths and schemas are unmodified. servers: - url: https://datahub.tec.mx description: Tecnológico de Monterrey Dataverse (datahub.tec.mx) public Native REST API tags: - name: Roles paths: /api/v1/roles: post: operationId: createNewRole parameters: - name: dvo in: query schema: type: string requestBody: content: '*/*': schema: $ref: '#/components/schemas/RoleDTO' responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Roles /api/v1/roles/{id}: get: operationId: viewRole parameters: - name: id in: path required: true schema: type: string responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Roles delete: operationId: deleteRole parameters: - name: id in: path required: true schema: type: string responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Roles components: schemas: RoleDTO: type: object properties: alias: type: string name: type: string description: type: string ownerId: type: string permissions: type: string