{
  "$id": "http://static-metadata-publisher:8080/metadata/forms/health_linked_child_support_form/schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Form used to start the health-linked child support review.",
  "properties": {
    "applicantNationalId": {
      "maxItems": 1,
      "minItems": 1,
      "title": "Applicant national ID",
      "type": "string",
      "x-concept-uri": "https://demo.example.gov/concepts/national-id",
      "x-supports-requirement": "child_identity_requirement"
    },
    "children": {
      "items": {
        "additionalProperties": false,
        "minProperties": 1,
        "properties": {
          "childNationalId": {
            "maxItems": 1,
            "minItems": 1,
            "title": "Child national ID",
            "type": "string",
            "x-concept-uri": "https://demo.example.gov/concepts/national-id",
            "x-supports-requirement": "child_identity_requirement"
          }
        },
        "required": [
          "childNationalId"
        ],
        "type": "object"
      },
      "minItems": 1,
      "type": "array"
    },
    "healthDistrict": {
      "title": "Health district",
      "type": "string",
      "x-concept-uri": "https://demo.example.gov/concepts/health-district",
      "x-supports-requirement": "health_linked_support_requirement"
    },
    "supportType": {
      "title": "Support type",
      "type": "string",
      "x-concept-uri": "https://demo.example.gov/concepts/support-type"
    }
  },
  "required": [
    "supportType",
    "applicantNationalId",
    "children",
    "healthDistrict"
  ],
  "schema_version": "registry-manifest-form-json-schema/v1",
  "title": "Health-linked child support application form",
  "type": "object"
}