1234567891011121314151617181920212223242526272829 |
- {
- "ServiceHook": {
- "type": "object",
- "required": ["dateCreated", "events", "id", "secret", "status", "url"],
- "properties": {
- "dateCreated": {
- "type": "string"
- },
- "events": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "id": {
- "type": "string"
- },
- "secret": {
- "type": "string"
- },
- "status": {
- "type": "string"
- },
- "url": {
- "type": "string"
- }
- }
- }
- }
|