Skip to content

Commit

Permalink
made corrections to pr made title and id and schema well described
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanda Ayeni authored and Amanda Ayeni committed Oct 18, 2023
1 parent 0505bfc commit de70424
Show file tree
Hide file tree
Showing 20 changed files with 458 additions and 1,817 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "http://example.com/example.json",
"$id": "applicationSchema.json",
"type": "object",
"default": {},
"title": "Root Schema",
"title": "Application Schema",
"required": [
"organizationId",
"name",
Expand All @@ -21,32 +21,32 @@
"properties": {
"organizationId": {
"type": "string",
"default": "",
"title": "The organizationId Schema",
"default": "Organization Identifier (general attribute)",
"title": "",
"examples": [
""
]
},
"name": {
"type": "string",
"default": "",
"title": "The name Schema",
"title": "Organization Name Identifier (general attribute)",
"examples": [
""
]
},
"applicationType": {
"type": "integer",
"default": 0,
"title": "The applicationType Schema",
"title": "ApplicationType Identifier (general attribute)",
"examples": [
0
]
},
"applicationStatus": {
"type": "array",
"default": [],
"title": "The applicationStatus Schema",
"title": "ApplicationStatus Identifier (general attribute)",
"items": {
"type": "string",
"title": "A Schema",
Expand All @@ -66,47 +66,47 @@
"publishedApplicationDSL": {
"type": "object",
"default": {},
"title": "The publishedApplicationDSL Schema",
"title": "PublishedApplicationDSL Identifier (general attribute)",
"required": [],
"properties": {},
"examples": [{}]
},
"publicToAll": {
"type": "boolean",
"default": false,
"title": "The publicToAll Schema",
"title": "PublicToAll Identifier (general attribute)",
"examples": [
false
]
},
"editingQueries": {
"type": "object",
"default": {},
"title": "The editingQueries Schema",
"title": "EditingQueries Identifier (general attribute)",
"required": [],
"properties": {},
"examples": [{}]
},
"serialVersionUID": {
"type": "integer",
"default": 0,
"title": "The serialVersionUID Schema",
"title": "SerialVersionUID Identifier (internal attribute)",
"examples": [
0
]
},
"id": {
"type": "string",
"default": "",
"title": "The id Schema",
"title": "Id Identifier (internal attribute)",
"examples": [
""
]
},
"createdAt": {
"type": "object",
"default": {},
"title": "The createdAt Schema",
"title": "CreatedAt Identifier (internal attribute)",
"required": [
"MIN_SECOND",
"MAX_SECOND",
Expand All @@ -118,39 +118,39 @@
"MIN_SECOND": {
"type": "integer",
"default": 0,
"title": "The MIN_SECOND Schema",
"title": "MIN_SECOND Identifier (internal attribute)",
"examples": [
0
]
},
"MAX_SECOND": {
"type": "integer",
"default": 0,
"title": "The MAX_SECOND Schema",
"title": "MAX_SECOND Identifier (internal attribute)",
"examples": [
0
]
},
"serialVersionUID": {
"type": "integer",
"default": 0,
"title": "The serialVersionUID Schema",
"title": "SerialVersionUID Identifier (internal attribute)",
"examples": [
0
]
},
"seconds": {
"type": "integer",
"default": 0,
"title": "The seconds Schema",
"title": "Seconds Identifier (internal attribute)",
"examples": [
0
]
},
"nanos": {
"type": "integer",
"default": 0,
"title": "The nanos Schema",
"title": "Nanos Identifier (internal attribute)",
"examples": [
0
]
Expand All @@ -167,15 +167,15 @@
"createdBy": {
"type": "string",
"default": "",
"title": "The createdBy Schema",
"title": "CreatedBy Identifier (internal attribute)",
"examples": [
""
]
},
"modifiedBy": {
"type": "string",
"default": "",
"title": "The modifiedBy Schema",
"title": "ModifiedBy Identifier (internal attribute)",
"examples": [
""
]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "http://example.com/example.json",
"$id": "applicationhistorysnapshotSchema.json",
"type": "object",
"default": {},
"title": "Root Schema",
"title": "Applicationhistorysnapshot Schema",
"required": [
"applicationId",
"dsl",
Expand All @@ -17,39 +17,39 @@
"applicationId": {
"type": "string",
"default": "",
"title": "The applicationId Schema",
"title": "Application Identifier (general attribute)",
"examples": [
""
]
},
"dsl": {
"type": "object",
"default": {},
"title": "The dsl Schema",
"title": "dsl Identifier (general attribute)",
"required": [],
"properties": {},
"examples": [{}]
},
"serialVersionUID": {
"type": "integer",
"default": 0,
"title": "The serialVersionUID Schema",
"title": "SerialVersionUID Identifier (internal attribute)",
"examples": [
0
]
},
"id": {
"type": "string",
"default": "",
"title": "The id Schema",
"title": "Id Identifier (internal attribute)",
"examples": [
""
]
},
"createdAt": {
"type": "object",
"default": {},
"title": "The createdAt Schema",
"title": "CreatedAt Identifier (internal attribute)",
"required": [
"MIN_SECOND",
"MAX_SECOND",
Expand All @@ -61,39 +61,39 @@
"MIN_SECOND": {
"type": "integer",
"default": 0,
"title": "The MIN_SECOND Schema",
"title": "MIN_SECOND Identifier (internal attribute)",
"examples": [
0
]
},
"MAX_SECOND": {
"type": "integer",
"default": 0,
"title": "The MAX_SECOND Schema",
"title": "MAX_SECOND Identifier (internal attribute)",
"examples": [
0
]
},
"serialVersionUID": {
"type": "integer",
"default": 0,
"title": "The serialVersionUID Schema",
"title": "SerialVersionUID Identifier (internal attribute)",
"examples": [
0
]
},
"seconds": {
"type": "integer",
"default": 0,
"title": "The seconds Schema",
"title": "Seconds Identifier (internal attribute)",
"examples": [
0
]
},
"nanos": {
"type": "integer",
"default": 0,
"title": "The nanos Schema",
"title": "Nanos Identifier (internal attribute)",
"examples": [
0
]
Expand All @@ -110,15 +110,15 @@
"createdBy": {
"type": "string",
"default": "",
"title": "The createdBy Schema",
"title": "CreatedBy Identifier (internal attribute)",
"examples": [
""
]
},
"modifiedBy": {
"type": "string",
"default": "",
"title": "The modifiedBy Schema",
"title": "ModifiedBy Identifier (internal attribute)",
"examples": [
""
]
Expand Down
Loading

0 comments on commit de70424

Please sign in to comment.