-
Notifications
You must be signed in to change notification settings - Fork 13
/
propertiesSchema.yaml
86 lines (86 loc) · 2.33 KB
/
propertiesSchema.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
description: Attributes of the features or rangetypes of a coverage. Defined by
a subset of the JSON Schema for the properties of a feature
type: object
required:
- type
- properties
properties:
type:
type: string
enum:
- object
required:
description: "Implements 'multiplicity' by citing property 'name' defined as 'additionalProperties'"
type: array
minItems: 1
items:
type: string
properties:
type: object
default: {}
additionalProperties:
description: "No property names are defined but any property name they should be described by JSON Schema. So 'additionalProperties' implements 'name'."
type: object
properties:
title:
type: string
description:
description: "Implements 'description'"
type: string
type:
type: string
enum:
- array
- boolean
- integer
- 'null'
- number
- object
- string
enum:
description: "Implements 'acceptedValues'"
type: array
minItems: 1
items: {}
uniqueItems: true
format:
description: "Complements implementation of 'type'"
type: string
contentMediaType:
description: "Implements 'mediaType'"
type: string
maximum:
description: "Implements 'range'"
type: number
exclusiveMaximum:
description: "Implements 'range'"
type: number
minimum:
description: "Implements 'range'"
type: number
exclusiveMinimum:
description: "Implements 'range'"
type: number
pattern:
type: string
format: regex
maxItems:
description: "Implements 'upperMultiplicity'"
type: integer
minimum: 0
minItems:
description: "Implements 'lowerMultiplicity'"
type: integer
default: 0
minimum: 0
x-ogc-definition:
type: string
format: uri
x-ogc-unit:
type: string
x-ogc-unitLang:
type: string
format: uri
x-ogc-propertySeq:
type: integer
minimum: 0