---
title: "Action"
url: "https://dev.developer-internal.sanofi.com/apis/plta-permissions-api-cbz/versions/88cdfef8-3b56-44ca-883d-5b15378e5a3a/schemas/Action"
---

> Full API specification: https://dev.developer-internal.sanofi.com/apis/plta-permissions-api-cbz/versions/88cdfef8-3b56-44ca-883d-5b15378e5a3a.md

# Action

A possible action that can be used on a resource

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Permission Administration API
  version: 1.5.0
servers:
  - url: https://dev.api.sanofi.com/permissions
components:
  schemas:
    Action:
      description: A possible action that can be used on a resource
      properties:
        actionName:
          description: The name of the action
          examples:
            - read_narrative
            - send_email
            - write_compound
          type: string
        children:
          description: If this action has any children (such as read_narrative being the
            child of write_narrative), it will be included here.
          items:
            description: the name of the action children
            type: string
          readOnly: true
          type: array
      required:
        - actionName
      type: object
```
