aeternity / aesophia_http

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inline options object in requests

davidyuk opened this issue · comments

For example, /compile accepts a Contract that defined as:

    "Contract": {
      "properties": {
        "code": {
          "type": "string"
        },
        "options": {
          "$ref": "#/definitions/CompileOpts"
        }
      },
      "required": [
        "code",
        "options"
      ],
      "type": "object"
    },
    "CompileOpts": {
      "properties": {
        "backend": {
          "description": "Compiler backend; fate | aevm",
          "enum": [
            "fate",
            "aevm"
          ],
          "type": "string"
        },
        "file_system": {
          "description": "An explicit file system, mapping file names to file content",
          "properties": {
            
          },
          "type": "object"
        },
        "src_file": {
          "description": "Name of contract source file - only used in error messages",
          "type": "string"
        }
      },
      "type": "object"
    },

can we inline options to have Contract looking like below?

    "Contract": {
      "properties": {
        "code": {
          "type": "string"
        },
        "backend": {
          "description": "Compiler backend; fate | aevm",
          "enum": [
            "fate",
            "aevm"
          ],
          "type": "string"
        },
        "file_system": {
          "description": "An explicit file system, mapping file names to file content",
          "properties": {},
          "type": "object"
        },
        "src_file": {
          "description": "Name of contract source file - only used in error messages",
          "type": "string"
        }
      },
      "required": [
        "code"
      ],
      "type": "object"
    },