Factor out common definition of `Tag` type (#1793)

... and remove spurious `additionalProperties: true`
pull/1797/head
Richard van der Hoff 2 weeks ago committed by GitHub
parent e82829d4a2
commit 2b5f990f60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1 @@
Factor out common definition of `Tag` type.

@ -0,0 +1,24 @@
# Copyright 2020-2024 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
title: Tag
type: object
properties:
order:
type: number
format: float
description: |-
A number in a range `[0,1]` describing a relative
position of the room under the given tag.
example: 0.25

@ -53,16 +53,7 @@ paths:
tags:
type: object
additionalProperties:
title: Tag
type: object
properties:
order:
type: number
format: float
description: |-
A number in a range `[0,1]` describing a relative
position of the room under the given tag.
additionalProperties: true
$ref: definitions/tag.yaml
examples:
response:
value: {
@ -114,18 +105,7 @@ paths:
content:
application/json:
schema:
type: object
properties:
order:
type: number
format: float
description: |-
A number in a range `[0,1]` describing a relative
position of the room under the given tag.
additionalProperties: true
example: {
"order": 0.25
}
$ref: definitions/tag.yaml
description: Extra data for the tag, e.g. ordering.
required: true
responses:

@ -17,16 +17,7 @@
"type": "object",
"description": "The tags on the room and their contents.",
"additionalProperties": {
"title": "Tag",
"type": "object",
"properties": {
"order": {
"type": "number",
"format": "float",
"description":
"A number in a range `[0,1]` describing a relative position of the room under the given tag."
}
}
"$ref": "../../api/client-server/definitions/tag.yaml"
}
}
}

Loading…
Cancel
Save