TypeSchema examples

Simple model

A simple model with some scalar properties.
{
  "definitions": {
    "Student": {
      "description": "A simple student struct",
      "type": "struct",
      "properties": {
        "firstName": {
          "type": "string"
        },
        "lastName": {
          "type": "string"
        },
        "age": {
          "type": "integer"
        }
      }
    }
  },
  "root": "Student"
}

Output

{
    "definitions": {
        "Student": {
            "description": "A simple student struct",
            "type": "struct",
            "properties": {
                "firstName": {
                    "type": "string"
                },
                "lastName": {
                    "type": "string"
                },
                "age": {
                    "type": "integer"
                }
            }
        }
    },
    "root": "Student"
}

Model with inheritance

A student struct which extends from a different struct.
{
  "definitions": {
    "Human": {
      "type": "struct",
      "properties": {
        "firstName": {
          "type": "string"
        },
        "lastName": {
          "type": "string"
        },
        "age": {
          "type": "integer"
        }
      }
    },
    "Student": {
      "parent": {
        "type": "reference",
        "target": "Human"
      },
      "type": "struct",
      "properties": {
        "studentId": {
          "type": "string"
        }
      }
    }
  },
  "root": "Student"
}

Output

{
    "definitions": {
        "Human": {
            "type": "struct",
            "properties": {
                "firstName": {
                    "type": "string"
                },
                "lastName": {
                    "type": "string"
                },
                "age": {
                    "type": "integer"
                }
            }
        },
        "Student": {
            "type": "struct",
            "parent": {
                "type": "reference",
                "target": "Human"
            },
            "properties": {
                "studentId": {
                    "type": "string"
                }
            }
        }
    },
    "root": "Student"
}

Model with reference

A student struct which reference a faculty struct.
{
  "definitions": {
    "Student": {
      "description": "A student struct with an assigned faculty",
      "type": "struct",
      "properties": {
        "firstName": {
          "type": "string"
        },
        "lastName": {
          "type": "string"
        },
        "age": {
          "type": "integer"
        },
        "faculty": {
          "type": "reference",
          "target": "Faculty"
        }
      }
    },
    "Faculty": {
      "type": "struct",
      "properties": {
        "name": {
          "type": "string"
        }
      }
    }
  },
  "root": "Student"
}

Output

{
    "definitions": {
        "Faculty": {
            "type": "struct",
            "properties": {
                "name": {
                    "type": "string"
                }
            }
        },
        "Student": {
            "description": "A student struct with an assigned faculty",
            "type": "struct",
            "properties": {
                "firstName": {
                    "type": "string"
                },
                "lastName": {
                    "type": "string"
                },
                "age": {
                    "type": "integer"
                },
                "faculty": {
                    "type": "reference",
                    "target": "Faculty"
                }
            }
        }
    },
    "root": "Student"
}

Map with string values

A student struct which contains a map with arbitrary string values.
{
  "definitions": {
    "Student": {
      "type": "struct",
      "properties": {
        "firstName": {
          "type": "string"
        },
        "lastName": {
          "type": "string"
        },
        "age": {
          "type": "integer"
        },
        "properties": {
          "type": "map",
          "schema": {
            "type": "string"
          }
        }
      }
    }
  },
  "root": "Student"
}

Output

{
    "definitions": {
        "Student": {
            "type": "struct",
            "properties": {
                "firstName": {
                    "type": "string"
                },
                "lastName": {
                    "type": "string"
                },
                "age": {
                    "type": "integer"
                },
                "properties": {
                    "type": "map",
                    "schema": {
                        "type": "string"
                    }
                }
            }
        }
    },
    "root": "Student"
}

Model with discriminator

A struct which uses a discriminator mapping.
{
  "definitions": {
    "Human": {
      "type": "struct",
      "properties": {
        "firstName": {
          "type": "string"
        },
        "lastName": {
          "type": "string"
        },
        "location": {
          "type": "reference",
          "target": "Location"
        }
      }
    },
    "Location": {
      "type": "struct",
      "base": true,
      "properties": {
        "type": {
          "type": "string"
        }
      },
      "discriminator": "type",
      "mapping": {
        "Web": "web",
        "World": "world"
      }
    },
    "Web": {
      "parent": {
        "type": "reference",
        "target": "Location"
      },
      "type": "struct",
      "properties": {
        "url": {
          "type": "string"
        }
      }
    },
    "World": {
      "parent": {
        "type": "reference",
        "target": "Location"
      },
      "type": "struct",
      "properties": {
        "lat": {
          "type": "string"
        },
        "long": {
          "type": "string"
        }
      }
    }
  },
  "root": "Human"
}

Output

{
    "definitions": {
        "Human": {
            "type": "struct",
            "properties": {
                "firstName": {
                    "type": "string"
                },
                "lastName": {
                    "type": "string"
                },
                "location": {
                    "type": "reference",
                    "target": "Location"
                }
            }
        },
        "Location": {
            "type": "struct",
            "base": true,
            "properties": {
                "type": {
                    "type": "string"
                }
            },
            "discriminator": "type",
            "mapping": {
                "Web": "web",
                "World": "world"
            }
        },
        "Web": {
            "type": "struct",
            "parent": {
                "type": "reference",
                "target": "Location"
            },
            "properties": {
                "url": {
                    "type": "string"
                }
            }
        },
        "World": {
            "type": "struct",
            "parent": {
                "type": "reference",
                "target": "Location"
            },
            "properties": {
                "lat": {
                    "type": "string"
                },
                "long": {
                    "type": "string"
                }
            }
        }
    },
    "root": "Human"
}

Model with generics

A struct which uses generics.
{
  "definitions": {
    "Student": {
      "type": "object",
      "properties": {
        "matricleNumber": {
          "type": "integer"
        }
      }
    },
    "StudentMap": {
      "type": "struct",
      "parent": {
        "type": "reference",
        "target": "Map",
        "template": {
          "T": "Student"
        }
      }
    },
    "Map": {
      "type": "object",
      "properties": {
        "totalResults": {
          "type": "integer"
        },
        "entries": {
          "type": "array",
          "schema": {
            "type": "generic",
            "name": "T"
          }
        }
      }
    }
  },
  "root": "StudentMap"
}

Output

{
    "definitions": {
        "Map": {
            "type": "struct",
            "properties": {
                "totalResults": {
                    "type": "integer"
                },
                "entries": {
                    "type": "array",
                    "schema": {
                        "type": "generic",
                        "name": "T"
                    }
                }
            }
        },
        "Student": {
            "type": "struct",
            "properties": {
                "matricleNumber": {
                    "type": "integer"
                }
            }
        },
        "StudentMap": {
            "type": "struct",
            "parent": {
                "type": "reference",
                "target": "Map",
                "template": {
                    "T": "Student"
                }
            }
        }
    },
    "root": "StudentMap"
}

Import other TypeSchema specification

A struct which references an external TypeSchema.
{
  "import": {
    "my_ns": "file:///generic.json"
  },
  "definitions": {
    "Faculty": {
      "type": "object",
      "properties": {
        "description": {
          "type": "string"
        },
        "students": {
          "type": "array",
          "schema": {
            "type": "reference",
            "target": "my_ns:StudentMap"
          }
        }
      }
    }
  },
  "root": "Faculty"
}

Output

{
    "definitions": {
        "my_ns:Map": {
            "type": "struct",
            "properties": {
                "totalResults": {
                    "type": "integer"
                },
                "entries": {
                    "type": "array",
                    "schema": {
                        "type": "generic",
                        "name": "T"
                    }
                }
            }
        },
        "my_ns:Student": {
            "type": "struct",
            "properties": {
                "matricleNumber": {
                    "type": "integer"
                }
            }
        },
        "my_ns:StudentMap": {
            "type": "struct",
            "parent": {
                "type": "reference",
                "target": "my_ns:Map",
                "template": {
                    "T": "my_ns:Student"
                }
            }
        },
        "Faculty": {
            "type": "struct",
            "properties": {
                "description": {
                    "type": "string"
                },
                "students": {
                    "type": "array",
                    "schema": {
                        "type": "reference",
                        "target": "my_ns:StudentMap"
                    }
                }
            }
        }
    },
    "root": "Faculty"
}

Edit this page