Skip to content

Commit

Permalink
Tried to fix JSON formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
darrelmiller committed Jul 27, 2022
1 parent 2bc1a19 commit fd5f461
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions specs/permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,22 +83,22 @@ A pathSet object identifies a set of paths that are accessible via the identifie
> Note: The design chosen was intentional to encourage permission creators to ensure support for methods and schemes is as consistent as possible. This produces a better developer experience for API consumers.
```json
      "pathSets": [
        {
          "schemes": ["DelegatedWork"],
          "methods": ["GET"],
          "paths": {
            "/print/settings": {}
          }
        },
        {
          "schemes": ["Application"],
          "methods": ["GET,POST"],
          "paths": {
            "/print/settings": {}
          }
        }
      ]
"pathSets": [
  {
    "schemes": ["DelegatedWork"],
    "methods": ["GET"],
    "paths": {
"/print/settings": {}
    }
  },
  {
    "schemes": ["Application"],
    "methods": ["GET,POST"],
    "paths": {
"/print/settings": {}
    }
  }
]
```

### schemes
Expand Down

0 comments on commit fd5f461

Please sign in to comment.