You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/custom_properties_write.snap
+27-2Lines changed: 27 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,18 @@
40
40
"type": "array"
41
41
},
42
42
"default_value": {
43
-
"description": "Organization and enterprise levels only: the value applied when a repository does not set the property. A string or an array of strings."
43
+
"description": "Organization and enterprise levels only: the value applied when a repository does not set the property. A string or an array of strings.",
44
+
"oneOf": [
45
+
{
46
+
"type": "string"
47
+
},
48
+
{
49
+
"items": {
50
+
"type": "string"
51
+
},
52
+
"type": "array"
53
+
}
54
+
]
44
55
},
45
56
"description": {
46
57
"description": "Organization and enterprise levels only: a short description of the property.",
@@ -55,7 +66,21 @@
55
66
"type": "boolean"
56
67
},
57
68
"value": {
58
-
"description": "Repository level only: the value to assign. A string, an array of strings, or null to clear the value."
69
+
"description": "Repository level only: the value to assign. A string, an array of strings, or null to clear the value.",
70
+
"oneOf": [
71
+
{
72
+
"type": "string"
73
+
},
74
+
{
75
+
"items": {
76
+
"type": "string"
77
+
},
78
+
"type": "array"
79
+
},
80
+
{
81
+
"type": "null"
82
+
}
83
+
]
59
84
},
60
85
"value_type": {
61
86
"description": "Organization and enterprise levels only: the data type of the property. Required when defining a property.",
Description: "Organization and enterprise levels only: the value applied when a repository does not set the property. A string or an array of strings.",
0 commit comments