An open API service indexing awesome lists of open source software.

https://github.com/owasp/nest-schema

OWASP Schema
https://github.com/owasp/nest-schema

json-schema mkdocs owasp owasp-nest python schema yaml-schema

Last synced: 4 months ago
JSON representation

OWASP Schema

Awesome Lists containing this project

README

          

# OWASP Schema

A Python package providing JSON schemas for OWASP entities.

## Installation

```bash
pip install owasp-schema
```

## Usage

```python
from owasp_schema import get_schema, list_schemas, chapter_schema

# List all available schemas
print(list_schemas())
# Output: ['chapter', 'committee', 'project']

# Get a specific schema
chapter_schema = get_schema("chapter")

# Or use the pre-loaded schemas
print(chapter_schema["title"])
```

## Available Schemas

- `chapter`: Schema for OWASP chapters
- `committee`: Schema for OWASP committees
- `project`: Schema for OWASP projects

## Development

This package is automatically published to PyPI when schema files change in the main branch using OIDC authentication.

For development setup and contribution guidelines, see [CONTRIBUTING.md](CONTRIBUTING.md).

## License

MIT License - see LICENSE file for details.