# gitignore-template

From **GitHub v3 REST API**.

Gitignore Template

- Type: `object`

## Properties

### `name`

- Required: true
- Type: `string`
- Example: `C`

### `source`

- Required: true
- Type: `string`
- Example: `# Object files
*.o

# Libraries
*.lib
*.a

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app`

## JSON Schema

```json
{"description":"Gitignore Template","properties":{"name":{"example":"C","type":"string"},"source":{"example":"# Object files\n*.o\n\n# Libraries\n*.lib\n*.a\n\n# Shared objects (inc. Windows DLLs)\n*.dll\n*.so\n*.so.*\n*.dylib\n\n# Executables\n*.exe\n*.out\n*.app\n","type":"string"}},"required":["name","source"],"title":"Gitignore Template","type":"object"}
```
