Specification

Git Source

Specification of the computing task. However, it doesn't define the running environment, etc. You need to define it in Dockerfile along with the source code of the computing task.

struct Specification {
    string version;
    string name;
    string description;
    string repository;
    string repoTag;
    string license;
    Requirement requirement;
    uint256 royalty;
    string apiABIs;
    Arch arch;
    ExecMode execMode;
}