This repository has been archived by the owner on Feb 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(schema): schema format changes
- Loading branch information
Jaroslav Sevcik
committed
Jun 24, 2021
1 parent
376c2e0
commit 14dc725
Showing
5 changed files
with
275 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,61 @@ | ||
type: object | ||
--- | ||
additionalProperties: false | ||
properties: | ||
apiVersion: | ||
apiVersion: | ||
type: string | ||
kind: | ||
enum: | ||
- component | ||
type: string | ||
metadata: | ||
properties: | ||
description: | ||
nullable: true | ||
type: string | ||
kind: "component" | ||
metadata: | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
owner: | ||
type: string | ||
description: | ||
type: ["string", "null"] | ||
tags: | ||
type: [array, null] | ||
items: | ||
type: string | ||
links: | ||
type: ["array", "null"] | ||
items: | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
url: | ||
type: string | ||
icon: | ||
type: ["string", "null"] | ||
group: | ||
type: object | ||
properties: | ||
product_owner: | ||
type: ["string", "null"] | ||
project_owner: | ||
type: ["string", "null"] | ||
maintainers: | ||
type: ["array", "null"] | ||
items: | ||
type: string | ||
spec: | ||
type: object | ||
group: | ||
properties: | ||
maintainers: | ||
items: | ||
type: string | ||
type: array | ||
product_owner: | ||
nullable: true | ||
type: string | ||
enum: [] | ||
additionalProperties: false | ||
project_owner: | ||
nullable: true | ||
type: string | ||
type: object | ||
links: | ||
items: | ||
properties: | ||
icon: | ||
nullable: true | ||
type: string | ||
name: | ||
type: string | ||
url: | ||
type: string | ||
type: object | ||
type: array | ||
name: | ||
type: string | ||
owner: | ||
type: string | ||
tags: | ||
items: | ||
type: string | ||
type: array | ||
type: object | ||
spec: | ||
properties: | ||
type: | ||
enum: | ||
- database | ||
type: string | ||
type: object | ||
required: | ||
- kind | ||
- name | ||
- owner | ||
- type | ||
- kind | ||
- name | ||
- owner | ||
- type | ||
type: object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,89 @@ | ||
type: object | ||
--- | ||
additionalProperties: false | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: "component" | ||
metadata: | ||
type: object | ||
apiVersion: | ||
type: string | ||
kind: component | ||
metadata: | ||
properties: | ||
description: | ||
type: | ||
- string | ||
nullable: true | ||
group: | ||
properties: | ||
maintainers: | ||
items: | ||
type: string | ||
type: array | ||
product_owner: | ||
type: string | ||
project_owner: | ||
type: string | ||
type: object | ||
links: | ||
items: | ||
properties: | ||
icon: | ||
type: | ||
- string | ||
nullable: true | ||
name: | ||
type: string | ||
url: | ||
type: string | ||
type: object | ||
type: | ||
- array | ||
name: | ||
type: string | ||
owner: | ||
type: string | ||
tags: | ||
items: | ||
type: string | ||
type: | ||
- array | ||
type: object | ||
spec: | ||
properties: | ||
analysis: | ||
items: | ||
properties: | ||
exclusions: | ||
items: | ||
type: string | ||
owner: | ||
type: string | ||
description: | ||
type: ["string", "null"] | ||
tags: | ||
type: [array, null] | ||
items: | ||
type: string | ||
links: | ||
type: ["array", "null"] | ||
items: | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
url: | ||
type: string | ||
icon: | ||
type: ["string", "null"] | ||
group: | ||
type: object | ||
properties: | ||
product_owner: | ||
type: string | ||
project_owner: | ||
type: string | ||
maintainers: | ||
type: array | ||
items: | ||
type: string | ||
spec: | ||
type: array | ||
type: object | ||
type: | ||
- array | ||
impact: | ||
enum: | ||
- profit | ||
- customers | ||
- employees | ||
type: string | ||
integrations: | ||
items: | ||
properties: | ||
slack_channel: | ||
type: string | ||
sonarqube_project: | ||
type: string | ||
type: object | ||
type: object | ||
properties: | ||
type: "library" | ||
lifecycle: | ||
type: string | ||
enum: [ "beta", "production", "deprecated", "discontinued" ] | ||
impact: | ||
type: string | ||
enum: [ "profit", "customers", "employees" ] | ||
analysis: | ||
type: [ "array", "null" ] | ||
items: | ||
type: object | ||
properties: | ||
exclusions: | ||
type: array | ||
items: | ||
type: string | ||
integrations: | ||
type: object | ||
items: | ||
type: object | ||
properties: | ||
sonarqube_project: | ||
type: string | ||
slack_channel: | ||
type: string | ||
additionalProperties: false | ||
lifecycle: | ||
enum: | ||
- beta | ||
- production | ||
- deprecated | ||
- discontinued | ||
type: string | ||
type: library | ||
type: object | ||
required: | ||
- kind | ||
- name | ||
- owner | ||
- type | ||
- kind | ||
- name | ||
- owner | ||
- type | ||
type: object |
Oops, something went wrong.