File tree 1 file changed +31
-0
lines changed
payload-schemas/schemas/common
1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " http://json-schema.org/draft-07/schema" ,
3
+ "$id" : " common/enterprise.schema.json" ,
4
+ "type" : " object" ,
5
+ "required" : [
6
+ " id" ,
7
+ " slug" ,
8
+ " name" ,
9
+ " node_id" ,
10
+ " avatar_url" ,
11
+ " description" ,
12
+ " website_url" ,
13
+ " html_url" ,
14
+ " created_at" ,
15
+ " updated_at"
16
+ ],
17
+ "properties" : {
18
+ "id" : { "type" : " integer" },
19
+ "slug" : { "type" : " string" },
20
+ "name" : { "type" : " string" },
21
+ "node_id" : { "type" : " string" },
22
+ "avatar_url" : { "type" : " string" , "format" : " uri" },
23
+ "description" : { "type" : " string" },
24
+ "website_url" : { "type" : " string" },
25
+ "html_url" : { "type" : " string" },
26
+ "created_at" : { "type" : " string" , "format" : " date-time" },
27
+ "updated_at" : { "type" : " string" , "format" : " date-time" }
28
+ },
29
+ "additionalProperties" : false ,
30
+ "title" : " Enterprise"
31
+ }
You can’t perform that action at this time.
0 commit comments