{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/content-submodule", "title": "Submodule Content", "description": "An object describing a submodule", "type": "object", "properties": { "type": { "type": "string", "enum": [ "submodule" ] }, "submodule_git_url": { "type": "string", "format": "uri" }, "size": { "type": "integer" }, "name": { "type": "string" }, "path": { "type": "string" }, "sha": { "type": "string" }, "url": { "type": "string", "format": "uri" }, "git_url": { "type": "string", "format": "uri", "nullable": true }, "html_url": { "type": "string", "format": "uri", "nullable": true }, "download_url": { "type": "string", "format": "uri", "nullable": true }, "_links": { "type": "object", "properties": { "git": { "type": "string", "format": "uri", "nullable": true }, "html": { "type": "string", "format": "uri", "nullable": true }, "self": { "type": "string", "format": "uri" } }, "required": [ "git", "html", "self" ] } }, "required": [ "_links", "git_url", "html_url", "download_url", "name", "path", "sha", "size", "type", "url", "submodule_git_url" ] }