I cannot found UiBankLoanApplicationTDQ

I cannot found UiBankLoanApplicationTDQ.json schema for UiBankApplicationTesting - Exercise in Test Automation Engineer Training.

Can u explain more on this

Hi @jrdev2

Could you check this?

UiBankTestSuiteDemo/.variations/Loan Data Schema.json at main · UiPath-TAM-Team/UiBankTestSuiteDemo · GitHub

Is this what you were looking for?

1 Like

Hey @jrdev2,

Don’t worry if you can’t find it. You can use this template to build it yourself. This, by the way, also helps you learn how to build it on your own in different settings in the future.

{
“$schema”: “http://json-schema.org/draft-07/schema”,
“$id”: “http://example.com/example.json”,
“type”: “object”,
“title”: “The root schema”,
“description”: “The root schema comprises the entire JSON document.”,
“default”: {},
“examples”: [
{
“id”: 1,
“first_name”: “John”,
“last_name”: “doe”,
“email”: “john.doe@aol.com”,
“gender”: “male”,
“ip_address”: “148.38.201.83”,
“skills”: “UHV”
}
],
“required”: [
“id”,
“first_name”,
“last_name”,
“email”,
“gender”,
“ip_address”,
“skills”
],
“properties”: {
“id”: {
“$id”: “#/properties/id”,
“type”: “integer”,
“title”: “The id schema”,
“description”: “An explanation about the purpose of this instance.”,
“default”: 0,
“examples”: [
1
]
},
“first_name”: {
“$id”: “#/properties/first_name”,
“type”: “string”,
“title”: “The first_name schema”,
“description”: “An explanation about the purpose of this instance.”,
“default”: “”,
“examples”: [
“John”
]
},
“last_name”: {
“$id”: “#/properties/last_name”,
“type”: “string”,
“title”: “The last_name schema”,
“description”: “An explanation about the purpose of this instance.”,
“default”: “”,
“examples”: [
“doe”
]
},
“email”: {
“$id”: “#/properties/email”,
“type”: “string”,
“title”: “The email schema”,
“description”: “An explanation about the purpose of this instance.”,
“default”: “”,
“examples”: [
“john.doe@aol.com”
]
},
“gender”: {
“$id”: “#/properties/gender”,
“type”: “string”,
“title”: “The gender schema”,
“description”: “An explanation about the purpose of this instance.”,
“default”: “”,
“examples”: [
“male”
]
},
“ip_address”: {
“$id”: “#/properties/ip_address”,
“type”: “string”,
“title”: “The ip_address schema”,
“description”: “An explanation about the purpose of this instance.”,
“default”: “”,
“examples”: [
“148.38.201.83”
]
},
“skills”: {
“$id”: “#/properties/skills”,
“type”: “string”,
“title”: “The skills schema”,
“description”: “An explanation about the purpose of this instance.”,
“default”: “”,
“examples”: [
“UHV”
]
}
},
“additionalProperties”: true
}

2 Likes

Thanks @V_Roboto_V and @Julian_Muhlbauer !

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.