Software / code / prosody-modules
Comparison
mod_muc_http_defaults/README.markdown @ 4505:e11abf578df5
mod_muc_http_defaults/README: Fix schema
I had apparently invented a more compact and convenient schema format,
but why would you have nice things?
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Tue, 09 Mar 2021 12:55:42 +0100 |
| parent | 4475:017ad6ed96ae |
comparison
equal
deleted
inserted
replaced
| 4504:0136c98f574c | 4505:e11abf578df5 |
|---|---|
| 82 type: object | 82 type: object |
| 83 properties: | 83 properties: |
| 84 config: | 84 config: |
| 85 type: object | 85 type: object |
| 86 properties: | 86 properties: |
| 87 name: string | 87 name: |
| 88 description: string | 88 type: string |
| 89 language: string | 89 description: |
| 90 persistent: boolean | 90 type: string |
| 91 public: boolean | 91 language: |
| 92 members_only: boolean | 92 type: string |
| 93 allow_member_invites: boolean | 93 persistent: |
| 94 public_jids: boolean | 94 type: boolean |
| 95 subject: string | 95 public: |
| 96 changesubject: boolean | 96 type: boolean |
| 97 historylength: integer | 97 members_only: |
| 98 moderated: boolean | 98 type: boolean |
| 99 archiving: boolean | 99 allow_member_invites: |
| 100 type: boolean | |
| 101 public_jids: | |
| 102 type: boolean | |
| 103 subject: | |
| 104 type: string | |
| 105 changesubject: | |
| 106 type: boolean | |
| 107 historylength: | |
| 108 type: integer | |
| 109 moderated: | |
| 110 type: boolean | |
| 111 archiving: | |
| 112 type: boolean | |
| 100 affiliations: | 113 affiliations: |
| 101 oneOf: | 114 oneOf: |
| 102 - type: array | 115 - type: array |
| 103 items: | 116 items: |
| 104 type: object | 117 type: object |
| 109 jid: | 122 jid: |
| 110 type: string | 123 type: string |
| 111 pattern: ^[^@/]+@[^/]+$ | 124 pattern: ^[^@/]+@[^/]+$ |
| 112 affiliation: | 125 affiliation: |
| 113 $ref: '#/definitions/affiliation' | 126 $ref: '#/definitions/affiliation' |
| 114 nick: string | 127 nick: |
| 128 type: string | |
| 115 - type: object | 129 - type: object |
| 116 additionalProperties: | 130 additionalProperties: |
| 117 $ref: '#/definitions/affiliation' | 131 $ref: '#/definitions/affiliation' |
| 118 definitions: | 132 definitions: |
| 119 affiliation: | 133 affiliation: |