Skip to content

Commit

Permalink
v1.0.0 - Amend QualifiedNameType property
Browse files Browse the repository at this point in the history
  • Loading branch information
M-casado committed Aug 9, 2024
1 parent 68bbbc3 commit a3e038b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions schemas/EGA.common.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"definitions": {
"NameType": {
"type": "object",
"additionalProperties": false,
"properties": {
"identifier": {
"type": "string"
Expand All @@ -21,14 +20,15 @@
"QualifiedNameType": {
"type": "object",
"required": [
"NameType",
"namespace"
],
"additionalProperties": false,
"properties": {
"NameType": {
"allOf": [
{
"$ref": "#/definitions/NameType"
},
}
],
"properties": {
"namespace": {
"type": "string",
"description": "A string value that constrains the domain of named identifiers (namespace)."
Expand Down

0 comments on commit a3e038b

Please sign in to comment.