action monarchinitiative_post_annotation_score { label: "Get annotation score" provider: monarchinitiative method: POST path: "/sim/score" encoding: json input: { type: "object" properties: { features: { type: "array" description: "list of features" items: { type: "object" properties: { id: { type: "string" description: "curie formatted id" } isPresent: { type: "boolean" description: "is the feature present" } label: { type: "string" description: "curie formatted id" } type: { type: "string" description: "feature type (only phenotype supported)" } } } } id: { type: "string" description: "curie formatted id" } } } output: { type: "object" properties: { categorical_score: { type: "number" description: "categorical score" } scaled_score: { type: "number" description: "scaled score" } simple_score: { type: "number" description: "simple score" } } } }