Skip to content

Instantly share code, notes, and snippets.

@thepalbi
Created June 25, 2021 21:56
Show Gist options
  • Select an option

  • Save thepalbi/198c37d54b6ffd48662635d6a155a8dc to your computer and use it in GitHub Desktop.

Select an option

Save thepalbi/198c37d54b6ffd48662635d6a155a8dc to your computer and use it in GitHub Desktop.
Parcial 3 Json Schema
{
"$schema":"http://json-schema.org/draft/2019-09/schema#",
"Alquiler":{
"type":"object",
"properties":{
"idAlquiler":{
"type":"integer"
},
"fechaDesde":{
"type":"string",
"format":"date-time"
},
"fechaHasta":{
"type":"string",
"format":"date-time"
},
"Cliente":{
"type":"array",
"items":{
"type":"object",
"properties":{
"idCliente":{
"type":"integer"
},
"nombre":{
"type":"string"
},
"apellido":{
"type":"string"
},
"documento":{
"type":"string"
},
"email":{
"type":"string"
}
}
}
},
"Automovil":{
"type":"array",
"items":{
"type":"object",
"properties":{
"Patente":{
"type":"string"
},
"precioDiario":{
"type":"number"
},
"Modelo":{
"type":"object",
"properties":{
"idModelo":{
"type":"integer"
},
"nombre":{
"type":"string"
},
"Marca":{
"type":"object",
"properties":{
"idMarca":{
"type":"integer"
},
"nombre":{
"type":"string"
}
}
}
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment