-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SYSMOAS_-8: Record#alias and Record#name #124
Conversation
@@ -14,6 +14,12 @@ | |||
"type": "string", | |||
"const": "Project" | |||
}, | |||
"alias": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attribute alias
added to Project
@@ -91,6 +104,12 @@ | |||
"type": "string", | |||
"const": "Branch" | |||
}, | |||
"alias": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attribute alias
added to Branch
@@ -172,6 +198,12 @@ | |||
"type": "string", | |||
"const": "Tag" | |||
}, | |||
"alias": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attribute alias
added to Tag
@@ -239,6 +278,12 @@ | |||
"type": "string", | |||
"const": "Commit" | |||
}, | |||
"alias": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attribute alias
added to Commit
@@ -253,6 +298,16 @@ | |||
} | |||
] | |||
}, | |||
"name": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attribute name
added to Commit
@@ -417,11 +524,29 @@ | |||
"@type": { | |||
"type": "string", | |||
"const": "DataIdentity" | |||
}, | |||
"alias": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attribute alias
added to DataIdentity
"type": "string" | ||
} | ||
}, | ||
"name": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attribute name
added to DataIdentity
@@ -698,6 +839,15 @@ | |||
"type": "string", | |||
"const": "Query" | |||
}, | |||
"alias": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attribute alias
added to Query
"type": "string" | ||
} | ||
}, | ||
"name": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attribute name
added to Query
@@ -755,6 +916,7 @@ | |||
} | |||
}, | |||
"required": [ | |||
"name" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attribute name
is required for Query
No description provided.